* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #c9a961;
    --light-bg: #f5f5f5;
    --white: #ffffff;
    --text-dark: #2d2d2d;
    --text-light: #6b6b6b;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

img {
    object-fit: cover;
}

header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.top-bar {
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.ad-disclosure {
    color: var(--accent-color);
    font-weight: 500;
}

.top-contact span {
    margin-left: 25px;
    color: #e0e0e0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.cta-nav {
    background: var(--accent-color);
    padding: 12px 30px;
    border-radius: 5px;
    color: var(--white);
}

.cta-nav:hover {
    background: #b39651;
    color: var(--white);
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: var(--primary-color);
    color: var(--white);
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: #d0d0d0;
    max-width: 500px;
    line-height: 1.7;
}

.hero-cta {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
    align-self: flex-start;
}

.hero-cta:hover {
    background: #b39651;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.3);
}

.hero-image {
    flex: 1;
    background-color: #2a2a3e;
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.split-section {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
}

.split-image {
    flex: 1;
    background-color: #e8e8e8;
    position: relative;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.section-label {
    color: var(--accent-color);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.split-content h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    line-height: 1.2;
}

.split-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.split-content ul {
    list-style: none;
    margin: 25px 0;
}

.split-content li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.split-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(50% - 0px);
    min-width: 300px;
    display: flex;
    background: var(--white);
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.service-image {
    width: 45%;
    background-color: #e8e8e8;
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-info p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.price {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.price-note {
    font-size: 0.85rem;
    color: var(--text-light);
}

.service-btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.service-btn:hover {
    background: var(--accent-color);
}

.form-section {
    background: var(--light-bg);
    padding: 100px 40px;
}

.form-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.form-visual {
    flex: 1;
    background-color: #d0d0d0;
    position: relative;
    overflow: hidden;
}

.form-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.form-content {
    flex: 1;
    padding: 60px;
}

.form-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.form-content p {
    color: var(--text-light);
    margin-bottom: 35px;
    font-size: 1.05rem;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: border 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: var(--accent-color);
    color: var(--white);
    padding: 16px 50px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background: #b39651;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.3);
}

.testimonials-section {
    padding: 100px 40px;
    background: var(--white);
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-header h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background: var(--light-bg);
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

.testimonial-role {
    color: var(--text-light);
    font-size: 0.9rem;
}

footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-section p,
.footer-section li {
    color: #d0d0d0;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    padding: 5px 0;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

.disclaimer {
    background: #f9f4ec;
    border-left: 4px solid var(--accent-color);
    padding: 30px;
    margin: 40px 0;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 25px 40px;
    z-index: 9999;
    display: none;
    animation: slideUp 0.4s ease-out;
}

.cookie-banner.show {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.cookie-text a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background: var(--accent-color);
    color: var(--white);
}

.cookie-accept:hover {
    background: #b39651;
}

.cookie-reject {
    background: var(--border-color);
    color: var(--text-dark);
}

.cookie-reject:hover {
    background: #d0d0d0;
}

.page-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 80px 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    color: #d0d0d0;
}

.page-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 40px;
}

.page-content h2 {
    font-size: 2rem;
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.page-content h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: var(--primary-color);
}

.page-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-dark);
}

.page-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.page-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.contact-grid {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.info-item {
    margin-bottom: 30px;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--accent-color);
    font-weight: 600;
}

.info-item p {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 1.05rem;
}

.contact-visual {
    flex: 1;
    background-color: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    min-height: 500px;
    position: relative;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 80px 40px;
    text-align: center;
    background: var(--light-bg);
    border-radius: 8px;
}

.thanks-container h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-container p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.thanks-container .hero-cta {
    display: inline-block;
    margin-top: 20px;
}

@media (max-width: 968px) {
    .hero-split,
    .split-section,
    .form-container,
    .contact-grid {
        flex-direction: column;
    }

    .hero-content,
    .split-content,
    .form-content {
        padding: 50px 30px;
    }

    .hero-image,
    .split-image,
    .form-visual,
    .contact-visual {
        min-height: 400px;
    }

    .service-card {
        flex-direction: column;
    }

    .service-image {
        width: 100%;
        min-height: 250px;
    }

    .nav-links {
        gap: 20px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}
