* {
    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: #333;
    background-color: #f5f7fa;
}

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

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

.main-nav {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

.hero-card {
    position: relative;
    margin: 40px auto;
    max-width: 1200px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    background-color: #fff;
}

.hero-image {
    width: 100%;
    height: 480px;
    overflow: hidden;
}

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

.hero-content {
    padding: 60px 50px;
    text-align: center;
}

.hero-content h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-content p {
    font-size: 19px;
    color: #555;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-primary {
    background-color: #3498db;
    color: #fff;
    padding: 16px 36px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s, transform 0.1s;
}

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

.intro-cards {
    padding: 60px 0;
}

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

.info-card {
    flex: 1;
    min-width: 280px;
    padding: 32px 28px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.info-card h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 600;
}

.info-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

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

.services-preview h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 16px;
    text-align: center;
    font-weight: 700;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    flex: 1 1 calc(50% - 14px);
    min-width: 300px;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 14px;
    font-weight: 600;
}

.service-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-price {
    font-size: 24px;
    color: #3498db;
    font-weight: 700;
    margin-bottom: 18px;
}

.select-service {
    background-color: #3498db;
    color: #fff;
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.select-service:hover {
    background-color: #2980b9;
}

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

.form-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 0 auto;
}

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

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

.main-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 15px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.trust-indicators {
    padding: 80px 0;
    background-color: #f5f7fa;
}

.trust-indicators h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
}

.trust-card {
    flex: 1;
    min-width: 280px;
    padding: 32px 28px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.trust-card h4 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 600;
}

.trust-card p {
    font-size: 15px;
    color: #666;
}

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

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 600;
}

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

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

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

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

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

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

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

.disclaimer {
    font-size: 12px;
    color: #7f8c8d;
    max-width: 800px;
    margin: 20px auto 0;
    line-height: 1.5;
}

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

.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;
    line-height: 1.5;
}

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

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

.cookie-accept {
    background-color: #3498db;
    color: #fff;
}

.cookie-accept:hover {
    background-color: #2980b9;
}

.cookie-reject {
    background-color: #7f8c8d;
    color: #fff;
}

.cookie-reject:hover {
    background-color: #6c7a89;
}

.cookie-actions a {
    color: #3498db;
    text-decoration: none;
    font-size: 14px;
}

.cookie-actions a:hover {
    text-decoration: underline;
}

.page-header {
    background-color: #2c3e50;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 12px;
    font-weight: 700;
}

.page-header p {
    font-size: 18px;
    color: #ecf0f1;
}

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

.content-card {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

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

.card-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    overflow: hidden;
}

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

.card-text {
    flex: 1;
    padding: 40px;
}

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

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

.values-section {
    margin: 60px 0;
    padding: 60px 0;
    background-color: #f5f7fa;
    border-radius: 12px;
}

.values-section h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
}

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 32px 28px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 600;
}

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

.team-section {
    margin: 60px 0;
}

.team-section h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.team-section p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 16px;
}

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

.cta-card {
    background-color: #3498db;
    color: #fff;
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(52, 152, 219, 0.3);
}

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

.cta-card .cta-primary {
    background-color: #fff;
    color: #3498db;
}

.cta-card .cta-primary:hover {
    background-color: #ecf0f1;
}

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

.service-detail-card {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 60px;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

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

.service-detail-image {
    flex: 1;
    min-width: 350px;
    height: 500px;
    overflow: hidden;
}

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

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

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

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

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

.service-detail-content ul li {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 8px;
}

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

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

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

.contact-info-card {
    flex: 1;
    background-color: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

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

.contact-detail {
    margin-bottom: 28px;
}

.contact-detail h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-detail p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.contact-note {
    background-color: #e8f4f8;
    padding: 20px;
    border-radius: 8px;
    margin-top: 32px;
}

.contact-note p {
    font-size: 15px;
    color: #2c3e50;
}

.contact-map {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    height: 500px;
}

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

.additional-info {
    padding: 80px 0;
    background-color: #f5f7fa;
}

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

.info-box {
    flex: 1;
    min-width: 280px;
    padding: 32px 28px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.info-box h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 600;
}

.info-box p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.thanks-section {
    padding: 120px 0;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #fff;
    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: #2c3e50;
    margin-bottom: 16px;
    font-weight: 700;
}

.thanks-card p {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

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

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

.thanks-note {
    font-size: 15px;
    color: #7f8c8d;
    margin-bottom: 32px;
}

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

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

.legal-content h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-updated {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 600;
}

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

.legal-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 16px;
}

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

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

@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

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

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

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

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

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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