* {
    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: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

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

.ad-disclosure {
    background: #fff8dc;
    color: #856404;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #f5e5b8;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a73e8;
}

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

.nav-right a {
    font-size: 16px;
    color: #5f6368;
    font-weight: 500;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background: #f8f9fa;
}

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.7;
    color: #5f6368;
    margin-bottom: 32px;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background: #1a73e8;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.cta-primary:hover {
    background: #1557b0;
    opacity: 1;
}

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

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.intro-text p {
    font-size: 18px;
    color: #5f6368;
    line-height: 1.8;
}

.intro-visual {
    flex: 1;
    background: #f1f3f4;
    border-radius: 8px;
    overflow: hidden;
}

.features-alternating {
    padding: 80px 40px;
    background: #f8f9fa;
}

.feature-block {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 80px auto;
    gap: 60px;
    align-items: center;
}

.feature-block.reverse {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background: #e8eaed;
}

.feature-text {
    flex: 1;
}

.feature-text h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.feature-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #5f6368;
}

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

.services-intro {
    max-width: 800px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.services-intro h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-intro p {
    font-size: 18px;
    color: #5f6368;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.service-card {
    flex: 1 1 300px;
    max-width: 350px;
    padding: 32px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
}

.service-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    color: #5f6368;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #1a73e8;
    margin-bottom: 20px;
    display: block;
}

.btn-select {
    padding: 12px 24px;
    background: #34a853;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-select:hover {
    background: #2d8e47;
}

.cta-inline {
    text-align: center;
    margin-top: 40px;
}

.cta-inline a {
    color: #1a73e8;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 2px solid #1a73e8;
    padding-bottom: 4px;
}

.form-section {
    padding: 80px 40px;
    background: #f1f3f4;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 28px;
    margin-bottom: 32px;
    color: #1a1a1a;
    text-align: center;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #dadce0;
    border-radius: 4px;
    background: #ffffff;
}

.form-group input[readonly] {
    background: #f1f3f4;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: #1a73e8;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #1557b0;
}

.trust-section {
    padding: 80px 60px;
    background: #1a1a1a;
    color: #ffffff;
}

.trust-content {
    max-width: 1000px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
}

.trust-points {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.trust-item {
    flex: 1 1 250px;
}

.trust-item p {
    font-size: 18px;
    line-height: 1.7;
}

.testimonials-asymmetric {
    padding: 100px 60px;
    background: #f8f9fa;
}

.testimonial-block {
    max-width: 700px;
    margin: 0 auto 60px auto;
    padding: 40px;
    background: #ffffff;
    border-left: 4px solid #1a73e8;
}

.testimonial-block.offset {
    margin-left: auto;
    margin-right: 80px;
    border-left: none;
    border-right: 4px solid #34a853;
}

.testimonial-block blockquote p {
    font-size: 20px;
    line-height: 1.7;
    color: #3c4043;
    margin-bottom: 16px;
}

.testimonial-block cite {
    font-style: normal;
    font-size: 16px;
    color: #5f6368;
}

.footer-split {
    background: #2c3e50;
    color: #ffffff;
    padding: 60px 40px 20px 40px;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 40px auto;
}

.footer-col {
    flex: 1 1 250px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-col p,
.footer-col a {
    font-size: 14px;
    color: #bdc3c7;
    line-height: 1.8;
}

.footer-col a {
    display: block;
    margin-bottom: 8px;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 20px 40px;
    display: none;
    z-index: 1000;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: #3c4043;
}

.cookie-content a {
    color: #1a73e8;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-accept {
    background: #34a853;
    color: #ffffff;
}

.btn-accept:hover {
    background: #2d8e47;
}

.btn-reject {
    background: #dadce0;
    color: #3c4043;
}

.btn-reject:hover {
    background: #bdc1c6;
}

.page-hero {
    padding: 80px 60px 60px 60px;
    background: #f8f9fa;
    text-align: center;
}

.page-hero h1 {
    font-size: 44px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.page-hero p {
    font-size: 20px;
    color: #5f6368;
}

.about-split {
    display: flex;
    padding: 80px 60px;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background: #e8eaed;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.values-section {
    padding: 80px 60px;
    background: #f8f9fa;
}

.values-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    flex: 1 1 250px;
    padding: 32px;
    background: #ffffff;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5f6368;
}

.team-approach {
    padding: 80px 60px;
    background: #ffffff;
}

.approach-content {
    max-width: 800px;
    margin: 0 auto;
}

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.approach-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #5f6368;
    margin-bottom: 20px;
}

.timeline-section {
    padding: 80px 60px;
    background: #f8f9fa;
}

.timeline-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.timeline-item {
    padding: 32px 40px;
    background: #ffffff;
    border-left: 4px solid #1a73e8;
    margin-bottom: 24px;
}

.timeline-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.timeline-item p {
    font-size: 16px;
    color: #5f6368;
}

.cta-about {
    padding: 80px 60px;
    background: #1a73e8;
    text-align: center;
    color: #ffffff;
}

.cta-about h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-about p {
    font-size: 20px;
    margin-bottom: 32px;
}

.cta-about .cta-primary {
    background: #ffffff;
    color: #1a73e8;
}

.cta-about .cta-primary:hover {
    background: #f1f3f4;
}

.services-detailed {
    padding: 60px 40px;
}

.service-detail {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 80px auto;
    gap: 60px;
    align-items: flex-start;
}

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

.service-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background: #e8eaed;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #1a73e8;
    margin-bottom: 20px;
}

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

.service-info h4 {
    font-size: 20px;
    margin: 24px 0 12px 0;
    color: #1a1a1a;
}

.service-info ul {
    list-style-position: inside;
    margin-bottom: 24px;
}

.service-info li {
    font-size: 16px;
    line-height: 1.8;
    color: #5f6368;
    margin-bottom: 8px;
}

.services-note {
    padding: 60px 40px;
    background: #f8f9fa;
}

.note-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 8px;
}

.note-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.note-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #5f6368;
    margin-bottom: 16px;
}

.services-disclaimer {
    padding: 40px 60px;
    background: #fff8dc;
    border-top: 1px solid #f5e5b8;
    border-bottom: 1px solid #f5e5b8;
}

.services-disclaimer p {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.7;
    color: #856404;
    text-align: center;
}

.contact-layout {
    display: flex;
    padding: 60px 40px;
    gap: 60px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-main {
    flex: 1;
}

.contact-main h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-main > p {
    font-size: 17px;
    line-height: 1.7;
    color: #5f6368;
    margin-bottom: 40px;
}

.contact-blocks {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #5f6368;
}

.email-display {
    color: #3c4043;
    font-weight: 500;
}

.contact-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background: #e8eaed;
}

.contact-note {
    padding: 60px 40px;
    background: #f8f9fa;
}

.note-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 8px;
}

.note-wrapper h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.note-wrapper p {
    font-size: 16px;
    line-height: 1.8;
    color: #5f6368;
    margin-bottom: 16px;
}

.thanks-section {
    min-height: 500px;
    padding: 100px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 800px;
    text-align: center;
}

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

.thanks-content > p {
    font-size: 20px;
    line-height: 1.7;
    color: #5f6368;
    margin-bottom: 40px;
}

.service-confirmation {
    padding: 24px;
    background: #e8f5e9;
    border-radius: 8px;
    margin-bottom: 40px;
}

.service-confirmation p {
    font-size: 18px;
    color: #2d8e47;
}

.next-steps {
    margin-bottom: 40px;
    padding: 32px;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: left;
}

.next-steps h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.next-steps p {
    font-size: 17px;
    line-height: 1.7;
    color: #5f6368;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-primary {
    background: #1a73e8;
    color: #ffffff;
}

.btn-primary:hover {
    background: #1557b0;
    opacity: 1;
}

.btn-secondary {
    background: #f1f3f4;
    color: #3c4043;
}

.btn-secondary:hover {
    background: #dadce0;
    opacity: 1;
}

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

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

.legal-page > p:first-of-type {
    font-size: 14px;
    color: #5f6368;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin: 40px 0 16px 0;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 22px;
    margin: 28px 0 12px 0;
    color: #1a1a1a;
}

.legal-page h4 {
    font-size: 18px;
    margin: 20px 0 8px 0;
    color: #1a1a1a;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #3c4043;
    margin-bottom: 16px;
}

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

.legal-page li {
    font-size: 16px;
    line-height: 1.8;
    color: #3c4043;
    margin-bottom: 8px;
}

.legal-page a {
    color: #1a73e8;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-offset,
    .feature-block,
    .about-split,
    .service-detail,
    .contact-layout {
        flex-direction: column;
    }

    .hero-content,
    .intro-text,
    .feature-text,
    .about-text,
    .service-info,
    .contact-main {
        padding: 40px 20px;
    }

    .header-split {
        flex-direction: column;
        gap: 20px;
    }

    .testimonial-block.offset {
        margin-right: auto;
    }

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

    .thanks-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}