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

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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

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

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

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

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

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

.hero-content-card {
    flex: 1;
}

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

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

.hero-image-card {
    flex: 1;
}

.hero-image-card img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    object-fit: cover;
}

.cta-primary {
    background-color: #3498db;
    color: white;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.intro-cards {
    background-color: #f8f9fa;
    padding: 80px 20px;
}

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

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

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

.card-grid {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.feature-card {
    flex: 1;
    background-color: white;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

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

.card-icon {
    width: 100%;
    height: 240px;
    background-color: #e8f4f8;
    overflow: hidden;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card h3 {
    font-size: 22px;
    margin: 24px 24px 12px;
    color: #2c3e50;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
    padding: 0 24px 24px;
}

.mission-card {
    padding: 100px 20px;
}

.mission-layout {
    display: flex;
    gap: 80px;
    align-items: center;
}

.mission-text {
    flex: 1.2;
}

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

.mission-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.mission-visual {
    flex: 1;
}

.mission-visual img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    object-fit: cover;
}

.text-link {
    display: inline-block;
    margin-top: 16px;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.text-link:hover {
    color: #2980b9;
}

.services-showcase {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.services-card-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    display: flex;
    gap: 0;
}

.service-image {
    width: 40%;
    background-color: #e8f4f8;
    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: #2c3e50;
}

.service-content p {
    color: #555;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 16px 0;
}

.select-service-btn {
    background-color: #27ae60;
    color: white;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    align-self: flex-start;
    transition: background-color 0.3s, transform 0.2s;
}

.select-service-btn:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.form-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.form-card {
    background-color: white;
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

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

.form-card p {
    color: #666;
    margin-bottom: 32px;
    font-size: 17px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
}

.submit-btn {
    background-color: #3498db;
    color: white;
    padding: 16px 48px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.submit-btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.testimonials-card {
    padding: 80px 20px;
    background-color: #ffffff;
}

.testimonials-card h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

.testimonial-item {
    flex: 1;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid #3498db;
}

.testimonial-item p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #2c3e50;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 20px 20px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
}

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

.footer-section p {
    color: #bdc3c7;
    line-height: 1.7;
}

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

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.footer-disclaimer {
    border-top: 1px solid #34495e;
    padding-top: 24px;
    margin-bottom: 24px;
}

.footer-disclaimer p {
    font-size: 14px;
    color: #95a5a6;
    line-height: 1.6;
}

.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-color: #2c3e50;
    color: white;
    padding: 20px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 1000;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.cookie-accept {
    background-color: #27ae60;
    color: white;
}

.cookie-accept:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.cookie-reject {
    background-color: #95a5a6;
    color: white;
}

.cookie-reject:hover {
    background-color: #7f8c8d;
    transform: translateY(-2px);
}

.page-header-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 20px;
    text-align: center;
    color: white;
}

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

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

.content-section {
    padding: 80px 20px;
}

.content-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.content-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 32px;
    object-fit: cover;
}

.content-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.content-card p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.cta-card-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

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

.cta-card-large h2 {
    font-size: 38px;
    margin-bottom: 16px;
}

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

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

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

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

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

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

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

.service-detail-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    object-fit: cover;
}

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

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-detail-content h3 {
    font-size: 22px;
    margin: 28px 0 16px;
    color: #34495e;
}

.service-detail-content p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}

.service-detail-content ul {
    margin-bottom: 28px;
    padding-left: 20px;
}

.service-detail-content ul li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #555;
}

.service-price-large {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin: 24px 0;
}

.comparison-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.comparison-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.comparison-card-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.comparison-card {
    flex: 1;
    max-width: 320px;
    background-color: white;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    position: relative;
}

.comparison-highlight {
    border: 2px solid #3498db;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #3498db;
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.comparison-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.comparison-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 24px;
}

.comparison-features {
    list-style: none;
}

.comparison-features li {
    padding: 10px 0;
    border-bottom: 1px solid #ecf0f1;
    color: #555;
}

.comparison-features li:last-child {
    border-bottom: none;
}

.contact-section {
    padding: 60px 20px;
}

.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-info-card {
    flex: 1;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

.contact-info-card h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #2c3e50;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #34495e;
}

.contact-item p {
    color: #555;
    line-height: 1.7;
}

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

.contact-visual-card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 24px;
    object-fit: cover;
}

.contact-additional-info {
    background-color: #e8f4f8;
    padding: 24px;
    border-radius: 8px;
}

.contact-additional-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.contact-additional-info p {
    color: #555;
    line-height: 1.7;
}

.map-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.map-section h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #2c3e50;
}

.map-placeholder {
    background-color: #dfe6e9;
    padding: 80px 40px;
    border-radius: 12px;
    text-align: center;
}

.map-placeholder p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
}

.thanks-section {
    padding: 100px 20px;
}

.thanks-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 60px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

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

.thanks-card h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-card p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-confirmation {
    background-color: #e8f4f8;
    padding: 20px;
    border-radius: 8px;
    margin: 24px 0;
}

.service-confirmation p {
    margin: 0;
    font-size: 17px;
    color: #2c3e50;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.3s;
}

.btn-primary {
    background-color: #3498db;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52,152,219,0.3);
}

.btn-secondary {
    background-color: #95a5a6;
    color: white;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(149,165,166,0.3);
}

.next-steps-card {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 50px;
}

.next-steps-card h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #2c3e50;
}

.step-item {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.step-content p {
    color: #555;
    line-height: 1.7;
}

.legal-page {
    padding: 60px 20px;
}

.legal-intro {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
    padding: 24px;
    background-color: #e8f4f8;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 16px;
    color: #34495e;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #34495e;
}

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

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

.legal-page ul li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #555;
}

.legal-update {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid #ddd;
    font-style: italic;
    color: #7f8c8d;
}

@media (max-width: 768px) {
    .hero-card,
    .mission-layout,
    .service-detail-card,
    .contact-layout {
        flex-direction: column;
    }

    .card-grid,
    .testimonial-grid,
    .footer-grid,
    .comparison-card-grid {
        flex-direction: column;
    }

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

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

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

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

    .service-image {
        width: 100%;
        height: 250px;
    }

    .service-card-reverse {
        flex-direction: column;
    }

    .comparison-card {
        max-width: 100%;
    }

    .comparison-highlight {
        transform: scale(1);
    }

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

    .form-card,
    .content-card,
    .thanks-card,
    .next-steps-card {
        padding: 30px;
    }
}