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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-right {
    display: flex;
    gap: 32px;
}

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

.nav-right a:hover {
    color: #2c3e50;
}

.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-color: #f8f9fa;
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 28px;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 40px;
    max-width: 520px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #1a252f;
}

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

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-offset {
    display: flex;
    padding: 100px 60px;
    gap: 80px;
    align-items: center;
    background-color: #ffffff;
}

.intro-narrow {
    flex: 1.2;
}

.intro-narrow h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 32px;
    font-weight: 700;
}

.intro-narrow p {
    font-size: 18px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 24px;
}

.intro-visual {
    flex: 0.8;
    background-color: #dee2e6;
}

.intro-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.services-alternating {
    padding: 120px 60px;
    background-color: #f8f9fa;
}

.services-alternating > h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 80px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-row {
    display: flex;
    margin-bottom: 60px;
    gap: 60px;
    align-items: center;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background-color: #dee2e6;
    min-height: 400px;
    overflow: hidden;
}

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

.service-info {
    flex: 1;
    padding: 40px;
    background-color: #ffffff;
}

.service-info h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-info p {
    font-size: 17px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 28px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 24px;
}

.btn-select {
    padding: 14px 32px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select:hover {
    background-color: #1a252f;
}

.form-section {
    padding: 100px 60px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
}

.form-container {
    max-width: 700px;
    width: 100%;
}

.form-container h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.form-container > p {
    font-size: 17px;
    color: #495057;
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ced4da;
    font-size: 16px;
    font-family: inherit;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c3e50;
}

.btn-submit {
    padding: 16px 48px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 12px;
}

.btn-submit:hover {
    background-color: #1a252f;
}

.closing-statement {
    padding: 100px 60px;
    background-color: #2c3e50;
}

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

.statement-content h2 {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 28px;
    font-weight: 700;
}

.statement-content p {
    font-size: 19px;
    line-height: 1.8;
    color: #e9ecef;
}

.footer {
    background-color: #1a1a1a;
    color: #adb5bd;
    padding: 60px 60px 30px;
}

.footer-main {
    display: flex;
    gap: 80px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    color: #adb5bd;
}

.footer-col a {
    display: block;
    color: #adb5bd;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    border-top: 1px solid #343a40;
    padding-top: 30px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #6c757d;
    max-width: 1000px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #343a40;
}

.footer-bottom p {
    font-size: 14px;
    color: #6c757d;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #dee2e6;
    padding: 24px;
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: #495057;
    line-height: 1.5;
}

.cookie-content a {
    color: #2c3e50;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: #2c3e50;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #1a252f;
}

.btn-reject {
    background-color: #e9ecef;
    color: #495057;
}

.btn-reject:hover {
    background-color: #ced4da;
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    text-align: center;
    background-color: #f8f9fa;
}

.thanks-content {
    max-width: 700px;
}

.thanks-content h1 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 700;
}

.thanks-content p {
    font-size: 19px;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 20px;
}

.thanks-content .service-selected {
    font-weight: 600;
    color: #2c3e50;
}

.about-hero {
    padding: 100px 60px;
    background-color: #f8f9fa;
}

.about-hero h1 {
    font-size: 56px;
    color: #1a1a1a;
    margin-bottom: 28px;
    font-weight: 700;
    max-width: 800px;
}

.about-hero p {
    font-size: 20px;
    line-height: 1.7;
    color: #495057;
    max-width: 700px;
}

.about-content {
    display: flex;
    padding: 80px 60px;
    gap: 80px;
    background-color: #ffffff;
}

.about-text {
    flex: 1.3;
}

.about-text h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 28px;
    font-weight: 700;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 24px;
}

.about-image {
    flex: 0.7;
    background-color: #dee2e6;
    min-height: 500px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-page-hero {
    padding: 100px 60px;
    background-color: #2c3e50;
    text-align: center;
}

.services-page-hero h1 {
    font-size: 52px;
    color: #ffffff;
    margin-bottom: 24px;
    font-weight: 700;
}

.services-page-hero p {
    font-size: 19px;
    color: #e9ecef;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-grid {
    padding: 100px 60px;
    background-color: #ffffff;
}

.service-card {
    background-color: #f8f9fa;
    padding: 50px;
    margin-bottom: 40px;
}

.service-card h3 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 28px;
}

.contact-page {
    padding: 100px 60px;
    background-color: #f8f9fa;
}

.contact-split {
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 32px;
    font-weight: 700;
}

.contact-details {
    margin-top: 40px;
}

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

.contact-item h3 {
    font-size: 16px;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-item p {
    font-size: 18px;
    color: #2c3e50;
    line-height: 1.6;
}

.contact-map {
    flex: 1;
    background-color: #dee2e6;
    min-height: 500px;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.legal-page {
    padding: 80px 60px;
    background-color: #ffffff;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 700;
}

.legal-content .last-updated {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-top: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 600;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .nav-split {
        padding: 16px 20px;
    }

    .nav-right {
        gap: 16px;
    }

    .hero-split {
        flex-direction: column;
    }

    .hero-content {
        padding: 60px 20px;
    }

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

    .intro-offset {
        flex-direction: column;
        padding: 60px 20px;
        gap: 40px;
    }

    .services-alternating {
        padding: 60px 20px;
    }

    .service-row,
    .service-row.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .form-section {
        padding: 60px 20px;
    }

    .footer-main {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-content,
    .contact-split {
        flex-direction: column;
        padding: 60px 20px;
    }
}