:root {
    --primary-color: #0d9488;
    --primary-dark: #0f766e;
    --secondary-color: #06b6d4;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --error-color: #ef4444;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

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

.header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.ad-label {
    font-size: 12px;
    color: var(--text-light);
    padding: 4px 12px;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: var(--bg-light);
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 40px;
}

.hero-text {
    max-width: 560px;
}

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

.hero-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.hero-image {
    flex: 1;
    background-color: var(--border-color);
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

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

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

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

.split-image {
    flex: 1;
    background-color: var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.3;
}

.split-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.split-content ul {
    list-style: none;
    margin-top: 20px;
}

.split-content ul li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 17px;
}

.split-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.services-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

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

.service-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1 1 calc(33.333% - 20px);
    max-width: 380px;
    min-width: 280px;
}

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

.service-image {
    background-color: var(--border-color);
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 24px 24px 12px;
}

.service-card p {
    font-size: 15px;
    color: var(--text-light);
    margin: 0 24px 16px;
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 24px 20px;
}

.btn-service {
    display: block;
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 12px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-service:hover {
    background-color: var(--primary-dark);
}

.form-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.split-form {
    flex: 1;
}

.contact-form {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--primary-dark);
}

.form-message {
    margin-bottom: 20px;
    padding: 12px;
    border-radius: 6px;
    display: none;
}

.form-message.success {
    display: block;
    background-color: #d1fae5;
    color: #065f46;
}

.form-message.error {
    display: block;
    background-color: #fee2e2;
    color: #991b1b;
}

.trust-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.trust-list {
    list-style: none;
    margin-top: 20px;
}

.trust-list li {
    padding: 14px 0;
    padding-left: 32px;
    position: relative;
    font-size: 17px;
}

.trust-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
}

.footer {
    background-color: var(--text-dark);
    color: var(--bg-light);
    padding: 60px 0 30px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--bg-white);
}

.footer-col p {
    color: var(--text-light);
    font-size: 14px;
}

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

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

.footer-col ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--bg-white);
}

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

.footer-bottom p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    font-style: italic;
    max-width: 800px;
    margin: 20px auto 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

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

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

.btn-cookie-accept {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-cookie-accept:hover {
    background-color: var(--primary-dark);
}

.btn-cookie-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

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

.page-hero {
    background-color: var(--bg-light);
    padding: 80px 0 60px;
    text-align: center;
}

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

.page-hero p {
    font-size: 20px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

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

.service-detail-item {
    margin-bottom: 80px;
}

.service-price-detail {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 24px;
}

.cta-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-align: center;
}

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

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

.cta-section .btn-primary:hover {
    background-color: var(--bg-light);
}

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

.values-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

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

.value-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.value-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.value-item p {
    color: var(--text-light);
}

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

.stats-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

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

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.stat-item {
    text-align: center;
    flex: 1 1 200px;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 18px;
    opacity: 0.9;
}

.contact-info-section {
    padding: 60px 0;
}

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

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 32px;
}

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

.contact-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 17px;
    color: var(--text-light);
}

.contact-image {
    flex: 1;
    background-color: var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.support-section {
    padding: 80px 0;
}

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

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

.support-item {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
}

.support-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.support-item p {
    color: var(--text-light);
}

.legal-page {
    padding: 60px 0;
    max-width: 900px;
    margin: 0 auto;
}

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

.legal-page h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-page h4 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 16px;
    margin-bottom: 8px;
}

.legal-page p {
    margin-bottom: 16px;
    color: var(--text-light);
}

.legal-page ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-page ul li {
    margin-bottom: 8px;
    color: var(--text-light);
}

.legal-page a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 700;
}

.thanks-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.thanks-content > p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.service-info {
    background-color: var(--bg-white);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.selected-service {
    font-size: 18px;
    color: var(--text-dark);
}

.selected-service strong {
    color: var(--primary-color);
}

.thanks-next {
    margin: 60px 0;
}

.thanks-next h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.steps-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.step-item {
    flex: 1 1 250px;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.step-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-item p {
    color: var(--text-light);
}

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

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

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

    .hero-image {
        min-height: 300px;
    }

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

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

    .nav-links {
        flex-wrap: wrap;
    }

    .section-title {
        font-size: 32px;
    }

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

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

    .value-item,
    .support-item {
        flex: 1 1 100%;
    }

    .contact-layout {
        flex-direction: column;
    }

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

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}