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

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

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c7a7b;
}

.ad-label {
    font-size: 11px;
    color: #718096;
    padding: 4px 10px;
    background-color: #f7fafc;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
}

.main-nav {
    display: flex;
    gap: 30px;
}

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

.main-nav a:hover {
    color: #2c7a7b;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background-color: #f7fafc;
}

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

.hero-text p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #4a5568;
    max-width: 500px;
}

.hero-right {
    flex: 1;
    background-color: #e6f3f4;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2c7a7b;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #234e52;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #e2e8f0;
    color: #2d3748;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #cbd5e0;
}

.trust-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.content-left, .content-right {
    flex: 1;
}

.content-left img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

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

.content-right p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #4a5568;
}

.services-preview {
    padding: 100px 0;
    background-color: #f7fafc;
}

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

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    min-width: 300px;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #e6f3f4;
}

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

.service-card p {
    font-size: 15px;
    margin: 0 20px 12px;
    color: #4a5568;
}

.service-card .price {
    font-size: 24px;
    font-weight: 700;
    color: #2c7a7b;
    margin: 16px 20px;
}

.btn-select-service {
    display: block;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px;
    background-color: #2c7a7b;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select-service:hover {
    background-color: #234e52;
}

.form-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.contact-form {
    background-color: #f7fafc;
    padding: 40px;
    border-radius: 8px;
}

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

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

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

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

.disclaimer-section {
    padding: 60px 0;
    background-color: #edf2f7;
}

.disclaimer {
    font-size: 14px;
    color: #4a5568;
    text-align: center;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.footer {
    background-color: #2d3748;
    color: #e2e8f0;
    padding: 60px 0 30px;
}

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

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

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

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

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
    display: none;
}

.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;
    margin: 0;
    font-size: 14px;
}

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

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

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

.thanks-content p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 16px;
    max-width: 600px;
}

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

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

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2d3748;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #4a5568;
}

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

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

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

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

.contact-info {
    background-color: #f7fafc;
    padding: 60px;
    border-radius: 8px;
    margin-bottom: 60px;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a202c;
}

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

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2d3748;
}

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

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-left {
        padding: 60px 30px;
    }

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

    .split-content,
    .split-content.reverse {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 calc(50% - 15px);
    }

    .footer-content {
        gap: 40px;
    }

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

    .main-nav {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}

@media (max-width: 640px) {
    .service-card {
        flex: 1 1 100%;
    }

    .hero-text h1 {
        font-size: 28px;
    }

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