* {
    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: #2d3748;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f7fafc;
    color: #4a5568;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #e2e8f0;
}

.nav-main {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: #1a202c;
}

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

.nav-links a {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #2d3748;
}

.hero-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 600px;
}

.hero-content {
    flex: 1;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f7fafc;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    color: #1a202c;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-cta {
    margin-top: 16px;
}

.hero-image {
    flex: 1;
    background-color: #cbd5e0;
    overflow: hidden;
}

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

.intro-split {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
}

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

.intro-image {
    flex: 1;
    background-color: #e2e8f0;
    overflow: hidden;
}

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

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

.intro-content h2 {
    font-size: 32px;
    color: #1a202c;
    margin-bottom: 24px;
    font-weight: 700;
}

.intro-content p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
}

.services-preview {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 36px;
    color: #1a202c;
    margin-bottom: 12px;
    font-weight: 700;
}

.section-header p {
    font-size: 18px;
    color: #718096;
}

.services-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 220px;
    background-color: #edf2f7;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 22px;
    color: #1a202c;
    margin: 24px 24px 12px;
    font-weight: 700;
}

.service-card p {
    font-size: 16px;
    color: #4a5568;
    margin: 0 24px 16px;
    flex-grow: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2d3748;
    margin: 0 24px 20px;
}

.service-card .btn-secondary {
    margin: 0 24px 24px;
}

.process-split {
    display: flex;
    max-width: 1200px;
    margin: 100px auto;
}

.process-content {
    flex: 1;
    padding: 60px 48px;
    background-color: #f7fafc;
}

.process-content h2 {
    font-size: 34px;
    color: #1a202c;
    margin-bottom: 40px;
    font-weight: 700;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step {
    display: flex;
    gap: 24px;
}

.step-number {
    font-size: 32px;
    font-weight: 700;
    color: #cbd5e0;
    min-width: 60px;
}

.step-text h4 {
    font-size: 20px;
    color: #1a202c;
    margin-bottom: 8px;
    font-weight: 600;
}

.step-text p {
    font-size: 16px;
    color: #4a5568;
}

.process-image {
    flex: 1;
    background-color: #e2e8f0;
    overflow: hidden;
}

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

.testimonials {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 24px;
}

.testimonials h2 {
    font-size: 36px;
    color: #1a202c;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.testimonial {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background-color: #f7fafc;
    border-left: 4px solid #4a5568;
}

.testimonial p {
    font-size: 17px;
    color: #2d3748;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    color: #718096;
    font-weight: 600;
}

.form-section {
    background-color: #f7fafc;
    padding: 80px 0;
}

.form-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
}

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

.form-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-visual-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: #ffffff;
}

.form-visual-overlay h3 {
    font-size: 28px;
    margin-bottom: 8px;
    font-weight: 700;
}

.form-visual-overlay p {
    font-size: 16px;
}

.form-container {
    flex: 1;
    padding: 60px 48px;
    background-color: #ffffff;
}

.form-container h2 {
    font-size: 32px;
    color: #1a202c;
    margin-bottom: 12px;
    font-weight: 700;
}

.form-container > p {
    font-size: 16px;
    color: #718096;
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #cbd5e0;
    background-color: #ffffff;
    color: #2d3748;
    font-family: inherit;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2d3748;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    text-align: center;
}

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

.btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    background-color: #edf2f7;
    color: #2d3748;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    text-align: center;
}

.btn-secondary:hover {
    background-color: #e2e8f0;
}

.btn-outline {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #ffffff;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.btn-outline:hover {
    background-color: #ffffff;
    color: #2d3748;
}

.cta-banner {
    background-color: #2d3748;
    color: #ffffff;
    padding: 80px 24px;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #e2e8f0;
}

.footer {
    background-color: #1a202c;
    color: #cbd5e0;
    padding: 60px 24px 24px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

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

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

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 32px;
    padding: 20px;
    background-color: #2d3748;
    font-size: 14px;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #2d3748;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 24px;
    z-index: 1000;
    display: none;
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

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

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

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

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

.page-header {
    background-color: #f7fafc;
    padding: 80px 24px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 44px;
    color: #1a202c;
    margin-bottom: 12px;
    font-weight: 700;
}

.page-header p {
    font-size: 18px;
    color: #718096;
}

.service-detail-split {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
}

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

.service-detail-content {
    flex: 1;
    padding: 60px 48px;
}

.service-detail-content h2 {
    font-size: 32px;
    color: #1a202c;
    margin-bottom: 24px;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
}

.service-detail-image {
    flex: 1;
    background-color: #edf2f7;
    overflow: hidden;
}

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

.service-price-box {
    margin-top: 40px;
    padding: 32px;
    background-color: #f7fafc;
    border-left: 4px solid #2d3748;
}

.price-label {
    font-size: 14px;
    color: #718096;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.price-value {
    font-size: 36px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
}

.price-note {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.5;
}

.about-split {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
}

.about-content {
    flex: 1;
    padding: 60px 48px;
    background-color: #ffffff;
}

.about-content h2 {
    font-size: 32px;
    color: #1a202c;
    margin-bottom: 24px;
    font-weight: 700;
}

.about-content p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    background-color: #edf2f7;
    overflow: hidden;
}

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

.values-split {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
}

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

.values-content {
    flex: 1;
    padding: 60px 48px;
    background-color: #f7fafc;
}

.values-content h2 {
    font-size: 32px;
    color: #1a202c;
    margin-bottom: 24px;
    font-weight: 700;
}

.values-content p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
}

.values-image {
    flex: 1;
    background-color: #e2e8f0;
    overflow: hidden;
}

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

.team-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 24px;
}

.team-section h2 {
    font-size: 36px;
    color: #1a202c;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.team-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background-color: #f7fafc;
}

.team-member h3 {
    font-size: 22px;
    color: #1a202c;
    margin-bottom: 8px;
    font-weight: 700;
}

.team-role {
    font-size: 15px;
    color: #718096;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.team-member p {
    font-size: 16px;
    color: #4a5568;
}

.why-us {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 24px;
}

.why-us h2 {
    font-size: 36px;
    color: #1a202c;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.benefits-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.benefit {
    flex: 1;
    min-width: 240px;
    padding: 32px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
}

.benefit h3 {
    font-size: 20px;
    color: #1a202c;
    margin-bottom: 12px;
    font-weight: 700;
}

.benefit p {
    font-size: 16px;
    color: #4a5568;
}

.contact-split {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
}

.contact-info {
    flex: 1;
    padding: 60px 48px;
    background-color: #ffffff;
}

.contact-info h2 {
    font-size: 32px;
    color: #1a202c;
    margin-bottom: 40px;
    font-weight: 700;
}

.contact-block {
    margin-bottom: 36px;
}

.contact-block h3 {
    font-size: 18px;
    color: #2d3748;
    margin-bottom: 12px;
    font-weight: 700;
}

.contact-block p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

.contact-image {
    flex: 1;
    background-color: #edf2f7;
    overflow: hidden;
}

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

.location-info {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 24px;
}

.location-info h2 {
    font-size: 28px;
    color: #1a202c;
    margin-bottom: 20px;
    font-weight: 700;
}

.location-info p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 16px;
    max-width: 800px;
}

.thanks-container {
    max-width: 1200px;
    margin: 80px auto;
    display: flex;
}

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

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

.thanks-content p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 20px;
}

.thanks-actions {
    margin-top: 32px;
    display: flex;
    gap: 16px;
}

.thanks-image {
    flex: 1;
    background-color: #edf2f7;
    overflow: hidden;
}

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

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

.legal-page h1 {
    font-size: 38px;
    color: #1a202c;
    margin-bottom: 12px;
    font-weight: 700;
}

.legal-updated {
    font-size: 15px;
    color: #718096;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 26px;
    color: #1a202c;
    margin-top: 48px;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-page p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-page ul {
    margin: 16px 0 16px 24px;
}

.legal-page ul li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-page a {
    color: #2d3748;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .process-split,
    .form-split,
    .service-detail-split,
    .about-split,
    .values-split,
    .contact-split,
    .thanks-container {
        flex-direction: column;
    }

    .intro-split.reverse,
    .service-detail-split.reverse,
    .values-split.reverse {
        flex-direction: column;
    }

    .nav-links {
        gap: 16px;
    }

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

    .cookie-content {
        flex-direction: column;
    }
}