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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #f8f9fa;
}

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

.main-header {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    flex-wrap: wrap;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #2563eb;
}

.ad-notice {
    font-size: 11px;
    color: #6b7280;
    background: #f3f4f6;
    padding: 6px 12px;
    border-radius: 4px;
}

.hero-section {
    padding: 0;
    margin-bottom: 60px;
}

.hero-grid {
    display: flex;
    flex-direction: column;
}

.hero-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 600px;
    background: #1e293b;
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    color: #ffffff;
}

.hero-overlay h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 24px;
    max-width: 900px;
}

.hero-overlay p {
    font-size: 22px;
    margin-bottom: 32px;
    max-width: 700px;
    opacity: 0.95;
}

.btn-primary {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37,99,235,0.3);
}

.btn-secondary {
    display: inline-block;
    background: #ffffff;
    color: #2563eb;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    border: 2px solid #2563eb;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #eff6ff;
}

.btn-large {
    padding: 18px 48px;
    font-size: 18px;
}

.intro-section {
    padding: 80px 0;
    background: #ffffff;
}

.card-grid-2 {
    display: flex;
    gap: 40px;
    align-items: center;
}

.content-card {
    flex: 1;
}

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

.content-card p {
    font-size: 18px;
    margin-bottom: 16px;
    line-height: 1.7;
    color: #4b5563;
}

.image-card {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    background: #e5e7eb;
}

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

.value-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.value-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1e293b;
}

.card-grid-3 {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.feature-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

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

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

.feature-card p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

.services-preview {
    padding: 80px 0;
    background: #ffffff;
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 16px;
    color: #1e293b;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 60px;
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    background: #f8f9fa;
    padding: 36px;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card.featured {
    background: #eff6ff;
    border-color: #2563eb;
}

.service-card:hover {
    border-color: #2563eb;
    box-shadow: 0 8px 24px rgba(37,99,235,0.15);
}

.badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: #2563eb;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1e293b;
}

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

.service-includes {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.service-includes span {
    font-size: 14px;
    color: #6b7280;
    padding-left: 20px;
    position: relative;
}

.service-includes span:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.price-tag {
    font-size: 32px;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 20px;
}

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

.process-section {
    padding: 80px 0;
    background: #1e293b;
    color: #ffffff;
}

.process-section h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
}

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

.step-card {
    background: rgba(255,255,255,0.08);
    padding: 28px;
    border-radius: 10px;
    border-left: 4px solid #2563eb;
}

.step-number {
    font-size: 14px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 8px;
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.6;
}

.testimonials-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1e293b;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    font-size: 16px;
    color: #1e293b;
}

.testimonial-author span {
    font-size: 14px;
    color: #6b7280;
}

.contact-form-section {
    padding: 80px 0;
    background: #ffffff;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 48px;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1e293b;
}

.form-intro p {
    font-size: 18px;
    color: #6b7280;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

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

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-notice {
    font-size: 13px;
    color: #6b7280;
    text-align: center;
    margin-top: 16px;
}

.form-notice a {
    color: #2563eb;
    text-decoration: none;
}

.form-notice a:hover {
    text-decoration: underline;
}

.cta-section {
    padding: 80px 0;
    background: #eff6ff;
}

.cta-card {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-card h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1e293b;
}

.cta-card p {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 32px;
}

.main-footer {
    background: #1e293b;
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

.footer-column p {
    font-size: 15px;
    opacity: 0.8;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

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

.disclaimer {
    font-size: 13px;
    opacity: 0.7;
    margin-bottom: 20px;
    line-height: 1.6;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
    padding: 24px;
    z-index: 10000;
    transition: transform 0.3s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

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

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

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

.btn-cookie:not(.secondary) {
    background: #2563eb;
    color: #ffffff;
}

.btn-cookie:not(.secondary):hover {
    background: #1d4ed8;
}

.btn-cookie.secondary {
    background: #f3f4f6;
    color: #4b5563;
}

.btn-cookie.secondary:hover {
    background: #e5e7eb;
}

.page-hero {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.95;
}

.about-intro {
    padding: 80px 0;
    background: #ffffff;
}

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

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

.team-section {
    padding: 80px 0;
    background: #ffffff;
}

.team-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1e293b;
}

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

.team-member {
    flex: 1;
    min-width: 280px;
}

.member-image {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    background: #e5e7eb;
    aspect-ratio: 1;
}

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

.team-member h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1e293b;
}

.team-member p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

.approach-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.approach-section h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: #1e293b;
}

.approach-section h3 {
    font-size: 24px;
    margin-bottom: 12px;
    margin-top: 28px;
    color: #1e293b;
}

.approach-section h3:first-child {
    margin-top: 0;
}

.services-page-section {
    padding: 80px 0;
    background: #ffffff;
}

.services-page-section h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: #1e293b;
}

.contact-page-section {
    padding: 80px 0;
    background: #ffffff;
}

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

.contact-info-card {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    padding: 32px;
    border-radius: 12px;
}

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

.contact-info-card p {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 12px;
    line-height: 1.6;
}

.contact-info-card .email-display {
    color: #4b5563;
    font-weight: 600;
}

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

.thanks-card {
    background: #ffffff;
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.thanks-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.thanks-card h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1e293b;
}

.thanks-card p {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 16px;
    line-height: 1.6;
}

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

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

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

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #374151;
}

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

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

.legal-content ul li {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 10px;
}

.legal-content strong {
    color: #1e293b;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 16px;
    }

    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

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

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

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

    .card-grid-2 {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
    }

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

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

    .thanks-card {
        padding: 40px 30px;
    }
}