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

:root {
    --primary: #2C3E50;
    --secondary: #7F8C8D;
    --accent: #C69963;
    --light: #F8F9FA;
    --dark: #1A252F;
    --text: #333333;
    --border: #E0E0E0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: #ffffff;
}

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

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

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

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.5px;
}

nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
    font-weight: 500;
}

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

.ad-notice {
    font-size: 12px;
    color: var(--accent);
    padding: 6px 12px;
    border: 1px solid var(--accent);
    border-radius: 4px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
}

.hero-split {
    display: flex;
    min-height: 650px;
    align-items: stretch;
}

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

.hero-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-visual::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44,62,80,0.3), rgba(198,153,99,0.2));
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 28px;
    color: var(--dark);
    font-weight: 700;
}

.hero-content p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 38px;
    color: var(--secondary);
    max-width: 560px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 42px;
    background: var(--accent);
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: #b38854;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(198,153,99,0.3);
}

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

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-text {
    flex: 1;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

.split-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
}

.split-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44,62,80,0.05);
}

.split-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--dark);
    line-height: 1.3;
}

.split-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--secondary);
    margin-bottom: 18px;
}

.split-text ul {
    list-style: none;
    margin: 28px 0;
}

.split-text ul li {
    padding: 12px 0;
    font-size: 16px;
    color: var(--text);
    position: relative;
    padding-left: 28px;
}

.split-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 18px;
}

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

.service-card {
    flex: 1;
    min-width: 380px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

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

.service-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: var(--light);
}

.service-content {
    padding: 32px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--dark);
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--secondary);
    margin-bottom: 22px;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    margin: 20px 0;
}

.price-note {
    font-size: 14px;
    color: var(--secondary);
    font-style: italic;
}

.select-service-btn {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 18px;
}

.select-service-btn:hover {
    background: var(--dark);
}

.select-service-btn.selected {
    background: var(--accent);
}

.form-section {
    background: var(--light);
    padding: 90px 20px;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.form-container h2 {
    font-size: 34px;
    margin-bottom: 32px;
    color: var(--dark);
    text-align: center;
}

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

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

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

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

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

.selected-service-display {
    background: var(--accent);
    color: #ffffff;
    padding: 18px;
    border-radius: 5px;
    margin-bottom: 26px;
    font-weight: 600;
    text-align: center;
    font-size: 16px;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--accent);
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #b38854;
    transform: translateY(-2px);
}

.submit-btn:disabled {
    background: var(--secondary);
    cursor: not-allowed;
    transform: none;
}

.about-intro {
    padding: 90px 20px;
    background: #ffffff;
}

.about-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-intro-content h1 {
    font-size: 46px;
    margin-bottom: 28px;
    color: var(--dark);
}

.about-intro-content p {
    font-size: 18px;
    line-height: 1.9;
    color: var(--secondary);
    margin-bottom: 20px;
}

.contact-split {
    display: flex;
    min-height: 600px;
}

.contact-info {
    flex: 1;
    padding: 70px 60px;
    background: var(--dark);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-map {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
}

.contact-info h1 {
    font-size: 42px;
    margin-bottom: 35px;
}

.contact-detail {
    margin-bottom: 32px;
}

.contact-detail h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.contact-detail p {
    font-size: 18px;
    line-height: 1.7;
    color: #ffffff;
}

footer {
    background: var(--dark);
    color: #ffffff;
    padding: 60px 20px 30px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-column p,
.footer-column a {
    font-size: 15px;
    line-height: 1.8;
    color: #cccccc;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

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

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

.legal-page {
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 35px;
    color: var(--dark);
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary);
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text);
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: var(--secondary);
}

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

.legal-page ul li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--secondary);
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: var(--light);
}

.thanks-box {
    max-width: 700px;
    background: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: center;
}

.thanks-box h1 {
    font-size: 44px;
    margin-bottom: 24px;
    color: var(--accent);
}

.thanks-box p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--secondary);
}

.thanks-box .cta-primary {
    margin-top: 30px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: #ffffff;
    padding: 25px 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
}

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

.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: 15px;
    line-height: 1.6;
}

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

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

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

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

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

.cookie-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.cookie-reject:hover {
    background: rgba(255,255,255,0.1);
}

.disclaimer-box {
    background: #FFF8E1;
    border-left: 4px solid #FFA000;
    padding: 25px;
    margin: 40px 0;
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

.disclaimer-box strong {
    color: #333;
}

@media (max-width: 968px) {
    .mobile-menu-toggle {
        display: block;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark);
        flex-direction: column;
        padding: 20px;
        display: none;
        gap: 15px;
    }

    nav.active {
        display: flex;
    }

    .hero-split,
    .split-section,
    .contact-split {
        flex-direction: column;
    }

    .split-section.reverse {
        flex-direction: column;
    }

    .hero-visual,
    .split-image,
    .contact-map {
        min-height: 350px;
    }

    .hero-content,
    .split-text,
    .contact-info {
        padding: 50px 30px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .service-card {
        min-width: 100%;
    }

    .form-container {
        padding: 35px 25px;
    }

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

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .split-text h2 {
        font-size: 28px;
    }

    .about-intro-content h1 {
        font-size: 34px;
    }

    .contact-info h1 {
        font-size: 32px;
    }
}
