* {
    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: #ffffff;
    display: flex;
    min-height: 100vh;
}

.ad-notice {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #f7fafc;
    color: #4a5568;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #e2e8f0;
    z-index: 1000;
}

.nav-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 240px;
    height: 100vh;
    background: #1a202c;
    color: #ffffff;
    padding: 60px 24px 24px;
    display: flex;
    flex-direction: column;
    z-index: 999;
}

.nav-brand {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 48px;
    color: #ffffff;
}

.nav-links {
    list-style: none;
    flex-grow: 1;
}

.nav-links li {
    margin-bottom: 12px;
}

.nav-links a {
    color: #cbd5e0;
    text-decoration: none;
    display: block;
    padding: 12px 16px;
    border-radius: 6px;
    transition: all 0.2s;
}

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

.nav-footer {
    border-top: 1px solid #2d3748;
    padding-top: 16px;
    margin-top: auto;
}

.nav-footer a {
    color: #718096;
    text-decoration: none;
    font-size: 13px;
    display: block;
    margin-bottom: 8px;
}

.nav-footer a:hover {
    color: #cbd5e0;
}

.main-content {
    margin-left: 240px;
    padding-top: 36px;
    width: calc(100% - 240px);
}

.hero-card {
    display: flex;
    align-items: stretch;
    min-height: 520px;
    margin: 0 48px 64px;
    background: #f7fafc;
    border-radius: 12px;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    padding: 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.cta-primary {
    display: inline-block;
    background: #2b6cb0;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #2c5282;
}

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

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

.intro-cards {
    margin: 0 48px 80px;
}

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

.info-card {
    flex: 1;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 36px;
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a202c;
}

.info-card p {
    color: #4a5568;
    font-size: 15px;
}

.services-section {
    margin: 0 48px 80px;
}

.services-section h2 {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.service-card {
    display: flex;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    width: 380px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

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

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

.service-content h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #1a202c;
}

.service-content > p {
    color: #4a5568;
    margin-bottom: 24px;
    font-size: 15px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.service-features span {
    background: #edf2f7;
    color: #2d3748;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
}

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

.select-service {
    background: #2b6cb0;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.select-service:hover {
    background: #2c5282;
}

.select-service.selected {
    background: #38a169;
}

.form-section {
    background: #f7fafc;
    padding: 80px 48px;
    margin: 0 48px 80px;
    border-radius: 12px;
}

.form-container {
    max-width: 640px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 16px;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: #4a5568;
    margin-bottom: 40px;
}

.selected-service-display {
    background: #edf2f7;
    padding: 16px 24px;
    border-radius: 8px;
    margin-bottom: 24px;
    border-left: 4px solid #2b6cb0;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
}

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

.submit-btn {
    width: 100%;
    background: #2b6cb0;
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.submit-btn:hover {
    background: #2c5282;
}

.why-us {
    margin: 0 48px 80px;
}

.why-us h2 {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
}

.reasons-grid {
    display: flex;
    gap: 40px;
}

.reason-item {
    flex: 1;
}

.reason-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a202c;
}

.reason-item p {
    color: #4a5568;
    font-size: 15px;
}

.disclaimer-section {
    margin: 0 48px 80px;
    padding: 32px;
    background: #fffbeb;
    border-left: 4px solid #f59e0b;
    border-radius: 8px;
}

.disclaimer-text {
    color: #78350f;
    font-size: 14px;
    line-height: 1.6;
}

.footer {
    background: #1a202c;
    color: #cbd5e0;
    padding: 64px 48px 32px;
    margin-left: 240px;
    width: calc(100% - 240px);
}

.footer-grid {
    display: flex;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-col {
    flex: 1;
}

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

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

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

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

.footer-col ul a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 14px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid #2d3748;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 240px;
    right: 0;
    background: #2d3748;
    color: #ffffff;
    padding: 24px 48px;
    z-index: 1000;
    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: 32px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
}

.cookie-content a {
    color: #90cdf4;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.cookie-accept {
    background: #38a169;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #2f855a;
}

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

.cookie-reject:hover {
    background: #4a5568;
}

.about-hero {
    padding: 64px 48px;
    margin: 0 48px 64px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: #ffffff;
}

.about-content h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.about-content p {
    font-size: 20px;
    opacity: 0.95;
}

.story-section {
    margin: 0 48px 80px;
}

.story-card {
    display: flex;
    align-items: center;
    gap: 64px;
    margin-bottom: 80px;
}

.story-card.reverse {
    flex-direction: row-reverse;
}

.story-image {
    width: 480px;
    height: 360px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

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

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

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

.values-section {
    margin: 0 48px 80px;
    padding: 64px;
    background: #f7fafc;
    border-radius: 12px;
}

.values-section h2 {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
}

.values-grid {
    display: flex;
    gap: 48px;
}

.value-card {
    flex: 1;
}

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

.value-card p {
    color: #4a5568;
    font-size: 15px;
}

.team-section {
    margin: 0 48px 80px;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    text-align: center;
}

.team-intro {
    text-align: center;
    color: #4a5568;
    max-width: 720px;
    margin: 0 auto 48px;
}

.team-image {
    width: 100%;
    height: 440px;
    border-radius: 12px;
    overflow: hidden;
}

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

.cta-about {
    margin: 0 48px 80px;
    padding: 64px;
    background: #2b6cb0;
    color: #ffffff;
    border-radius: 12px;
    text-align: center;
}

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

.cta-about p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-btn {
    display: inline-block;
    background: #ffffff;
    color: #2b6cb0;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

.cta-btn:hover {
    background: #f7fafc;
}

.services-header {
    padding: 64px 48px;
    margin: 0 48px 64px;
    text-align: center;
}

.services-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.services-lead {
    font-size: 18px;
    color: #4a5568;
    max-width: 760px;
    margin: 0 auto;
}

.services-detailed {
    margin: 0 48px 80px;
}

.service-detail-card {
    display: flex;
    gap: 64px;
    align-items: flex-start;
    margin-bottom: 80px;
}

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

.service-detail-image {
    width: 480px;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.service-detail-content {
    flex: 1;
}

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

.service-detail-content > p {
    color: #4a5568;
    margin-bottom: 32px;
    font-size: 16px;
}

.service-detail-content h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #1a202c;
}

.service-detail-content ul {
    margin-bottom: 32px;
    padding-left: 24px;
}

.service-detail-content li {
    color: #4a5568;
    margin-bottom: 10px;
    font-size: 15px;
}

.pricing-detail {
    background: #f7fafc;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.price-main {
    font-size: 32px;
    font-weight: 700;
    color: #2b6cb0;
    margin-bottom: 8px;
}

.price-note {
    color: #4a5568;
    font-size: 14px;
}

.service-cta {
    display: inline-block;
    background: #2b6cb0;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

.service-cta:hover {
    background: #2c5282;
}

.services-comparison {
    margin: 0 48px 80px;
    padding: 64px;
    background: #f7fafc;
    border-radius: 12px;
}

.services-comparison h2 {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
}

.comparison-cards {
    display: flex;
    gap: 40px;
}

.comparison-card {
    flex: 1;
}

.comparison-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a202c;
}

.comparison-card p {
    color: #4a5568;
    font-size: 15px;
}

.cta-services {
    margin: 0 48px 80px;
    padding: 64px;
    background: #2b6cb0;
    color: #ffffff;
    border-radius: 12px;
    text-align: center;
}

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

.cta-services p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.contact-header {
    padding: 64px 48px;
    margin: 0 48px 64px;
    text-align: center;
}

.contact-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.contact-header p {
    font-size: 18px;
    color: #4a5568;
}

.contact-content {
    margin: 0 48px 80px;
    display: flex;
    gap: 64px;
}

.contact-info-card {
    flex: 1;
}

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

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

.contact-item p {
    color: #4a5568;
    font-size: 15px;
    line-height: 1.8;
}

.contact-note {
    margin-top: 12px;
    font-size: 14px;
    font-style: italic;
}

.contact-map {
    width: 480px;
    height: 520px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.faq-section {
    margin: 0 48px 80px;
    padding: 64px;
    background: #f7fafc;
    border-radius: 12px;
}

.faq-section h2 {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.faq-item {
    flex: 1 1 calc(50% - 20px);
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #1a202c;
}

.faq-item p {
    color: #4a5568;
    font-size: 15px;
}

.cta-contact {
    margin: 0 48px 80px;
    padding: 64px;
    background: #2b6cb0;
    color: #ffffff;
    border-radius: 12px;
    text-align: center;
}

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

.cta-contact p {
    font-size: 18px;
    margin-bottom: 24px;
    opacity: 0.95;
}

.email-display {
    font-size: 24px;
    font-weight: 600;
}

.thanks-section {
    margin: 0 48px 80px;
    padding: 64px;
}

.thanks-container {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #38a169;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 32px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a202c;
}

.thanks-message {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 40px;
}

.service-confirmation {
    background: #edf2f7;
    padding: 16px 24px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-next {
    margin-bottom: 48px;
}

.thanks-next h2 {
    font-size: 28px;
    margin-bottom: 32px;
}

.next-steps {
    display: flex;
    gap: 32px;
    text-align: left;
}

.step-item {
    flex: 1;
    display: flex;
    gap: 16px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #2b6cb0;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a202c;
}

.step-content p {
    color: #4a5568;
    font-size: 14px;
}

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

.btn-primary {
    background: #2b6cb0;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: #2c5282;
}

.btn-secondary {
    background: transparent;
    color: #2b6cb0;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #2b6cb0;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: #2b6cb0;
    color: #ffffff;
}

.thanks-contact {
    margin: 0 48px 80px;
    padding: 48px;
    background: #f7fafc;
    border-radius: 12px;
    text-align: center;
}

.thanks-contact h2 {
    font-size: 28px;
    margin-bottom: 12px;
}

.thanks-contact p {
    color: #4a5568;
    margin-bottom: 16px;
}

.legal-content {
    max-width: 880px;
    margin: 0 auto;
    padding: 64px 48px 80px;
}

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

.legal-date {
    color: #718096;
    margin-bottom: 48px;
    font-size: 14px;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a202c;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2d3748;
}

.legal-content p {
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 24px;
    padding-left: 32px;
}

.legal-content li {
    color: #4a5568;
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-content a {
    color: #2b6cb0;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .nav-sidebar {
        width: 200px;
    }

    .main-content {
        margin-left: 200px;
        width: calc(100% - 200px);
    }

    .footer {
        margin-left: 200px;
        width: calc(100% - 200px);
    }

    .cookie-banner {
        left: 200px;
    }

    .card-grid,
    .reasons-grid,
    .values-grid,
    .comparison-cards {
        flex-direction: column;
    }

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

    .service-card:nth-child(even) {
        flex-direction: column;
    }

    .service-image,
    .story-image,
    .service-detail-image {
        width: 100%;
        height: 320px;
    }
}

@media (max-width: 768px) {
    .nav-sidebar {
        display: none;
    }

    .main-content {
        margin-left: 0;
        width: 100%;
    }

    .footer {
        margin-left: 0;
        width: 100%;
    }

    .cookie-banner {
        left: 0;
    }

    .hero-card {
        flex-direction: column;
        margin: 0 24px 48px;
    }

    .hero-content {
        padding: 40px 32px;
    }

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

    .hero-image {
        height: 280px;
    }

    .service-detail-card,
    .story-card,
    .contact-content {
        flex-direction: column;
    }

    .next-steps {
        flex-direction: column;
    }

    .footer-grid {
        flex-direction: column;
        gap: 32px;
    }

    .faq-item {
        flex: 1 1 100%;
    }
}