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

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

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

.navbar {
    background-color: #1a365d;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

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

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

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

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    color: #ffffff;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 48px;
}

.hero-text {
    flex: 1 1 400px;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-text p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero-image {
    flex: 1 1 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #667eea;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.cta-button-secondary {
    display: inline-block;
    background-color: transparent;
    color: #667eea;
    padding: 16px 40px;
    border: 2px solid #667eea;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: background-color 0.2s, color 0.2s;
}

.cta-button-secondary:hover {
    background-color: #667eea;
    color: #ffffff;
}

.intro-cards {
    padding: 80px 0;
    background-color: #f7fafc;
}

.card-grid-3 {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.info-card {
    flex: 1 1 300px;
    max-width: 360px;
    background: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

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

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

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

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

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

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

.section-header h2 {
    font-size: 40px;
    color: #1a365d;
    margin-bottom: 16px;
    font-weight: 700;
}

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

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

.service-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 320px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

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

.service-card.selected {
    box-shadow: 0 0 0 3px #667eea;
}

.card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

.card-content {
    padding: 28px;
}

.card-content h3 {
    font-size: 24px;
    color: #1a365d;
    margin-bottom: 12px;
    font-weight: 600;
}

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

.price {
    font-size: 28px;
    font-weight: 700;
    color: #667eea;
    margin: 16px 0;
}

.select-button {
    width: 100%;
    background-color: #667eea;
    color: #ffffff;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.select-button:hover {
    background-color: #5a67d8;
}

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

.form-card {
    background: #ffffff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.form-card h2 {
    font-size: 32px;
    color: #1a365d;
    margin-bottom: 12px;
}

.form-card > p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 32px;
}

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

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

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

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

.form-group input[readonly] {
    background-color: #f7fafc;
    cursor: not-allowed;
}

.submit-button {
    width: 100%;
    background-color: #667eea;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.submit-button:hover {
    background-color: #5a67d8;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cta-card {
    text-align: center;
    color: #ffffff;
}

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

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

.footer {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 64px 0 24px;
}

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

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

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

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

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

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

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

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

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

.footer-bottom p {
    font-size: 14px;
    color: #a0aec0;
    margin-bottom: 8px;
}

.disclaimer {
    font-size: 12px;
    color: #718096;
    font-style: italic;
    max-width: 800px;
    margin: 8px auto 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a202c;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1 1 400px;
    font-size: 14px;
    line-height: 1.6;
}

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

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

.cookie-accept {
    background-color: #667eea;
    color: #ffffff;
}

.cookie-accept:hover {
    opacity: 0.9;
}

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

.cookie-reject:hover {
    opacity: 0.8;
}

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 64px 0;
    color: #ffffff;
    text-align: center;
}

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

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

.about-content {
    padding: 80px 0;
}

.content-card-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 48px;
    margin-bottom: 64px;
}

.content-card-layout.reverse {
    flex-direction: row-reverse;
}

.content-image-card {
    flex: 1 1 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.content-image-card img {
    width: 100%;
    height: auto;
    display: block;
}

.content-text-card {
    flex: 1 1 400px;
}

.content-text-card h2 {
    font-size: 36px;
    color: #1a365d;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 64px;
}

.value-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    background: #f7fafc;
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

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

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

.expertise-section {
    margin-bottom: 64px;
}

.expertise-section h2 {
    font-size: 36px;
    color: #1a365d;
    text-align: center;
    margin-bottom: 48px;
    font-weight: 700;
}

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

.expertise-item {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 260px;
    background: #ffffff;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.expertise-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.expertise-item h4 {
    font-size: 18px;
    color: #1a365d;
    margin-bottom: 8px;
}

.expertise-item p {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.6;
}

.cta-inline {
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 64px 48px;
    border-radius: 12px;
    color: #ffffff;
}

.cta-inline h3 {
    font-size: 32px;
    margin-bottom: 12px;
}

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

.services-detail {
    padding: 80px 0;
}

.service-detail-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 48px;
    margin-bottom: 80px;
}

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

.service-detail-image {
    flex: 1 1 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

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

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

.price-large {
    font-size: 36px;
    font-weight: 700;
    color: #667eea;
    margin: 16px 0;
}

.service-detail-content h4 {
    font-size: 20px;
    color: #1a365d;
    margin: 24px 0 12px;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 24px;
}

.service-detail-content ul li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
}

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

.select-service-btn:hover {
    background-color: #5a67d8;
}

.contact-content {
    padding: 80px 0;
}

.contact-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 64px;
}

.contact-info-section {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    background: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

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

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

.contact-card .no-link {
    color: #4a5568;
    cursor: default;
}

.contact-card .small-text {
    font-size: 14px;
    color: #718096;
    margin-top: 8px;
}

.contact-map-section {
    flex: 1 1 400px;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    display: block;
}

.info-notice {
    background: #f7fafc;
    padding: 48px;
    border-radius: 12px;
    text-align: center;
}

.info-notice h3 {
    font-size: 28px;
    color: #1a365d;
    margin-bottom: 16px;
}

.info-notice p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f7fafc 0%, #ffffff 100%);
}

.thanks-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: #ffffff;
    padding: 64px 48px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

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

.thanks-card h1 {
    font-size: 36px;
    color: #1a365d;
    margin-bottom: 16px;
    font-weight: 700;
}

.thanks-message {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 32px;
}

.service-confirmed {
    background: #f7fafc;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.service-name {
    font-size: 16px;
    color: #2d3748;
}

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

.next-steps h3 {
    font-size: 22px;
    color: #1a365d;
    margin-bottom: 16px;
}

.next-steps ul {
    list-style: none;
    padding-left: 0;
}

.next-steps ul li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

.next-steps ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
}

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

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

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

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

.legal-section {
    margin-bottom: 48px;
}

.legal-section h2 {
    font-size: 28px;
    color: #1a365d;
    margin-bottom: 16px;
    font-weight: 600;
}

.legal-section h3 {
    font-size: 22px;
    color: #2d3748;
    margin: 24px 0 12px;
    font-weight: 600;
}

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

.legal-section ul {
    margin: 16px 0;
    padding-left: 32px;
}

.legal-section ul li {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-section strong {
    color: #2d3748;
    font-weight: 600;
}

.back-link {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #e2e8f0;
}

.back-link a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.2s;
}

.back-link a:hover {
    color: #5a67d8;
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 18px;
    }

    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

    .card-grid-2 .service-card {
        flex: 1 1 100%;
    }

    .section-header h2 {
        font-size: 32px;
    }

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

    .content-text-card h2,
    .expertise-section h2 {
        font-size: 28px;
    }

    .form-card {
        padding: 32px 24px;
    }

    .footer-grid {
        gap: 32px;
    }

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

    .service-detail-content h2 {
        font-size: 28px;
    }

    .price-large {
        font-size: 28px;
    }
}