:root {
    --primary: #1a5f7a;
    --primary-dark: #134b61;
    --secondary: #57c5b6;
    --accent: #159895;
    --text-dark: #2c3e50;
    --text-light: #5d6d7e;
    --bg-light: #f8fafb;
    --bg-alt: #e8f4f3;
    --white: #ffffff;
    --border: #d5e1e8;
    --shadow: rgba(26, 95, 122, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--white);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent);
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

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

.ad-disclosure {
    background-color: var(--primary-dark);
    color: var(--white);
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
}

header {
    background-color: var(--white);
    box-shadow: 0 2px 12px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
}

.logo span {
    color: var(--secondary);
}

nav {
    display: flex;
    align-items: center;
}

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

nav ul li a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

nav ul li a:hover {
    color: var(--primary);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--primary);
    cursor: pointer;
}

.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    background-color: var(--bg-light);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background-color: var(--bg-alt);
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 520px;
    padding: 60px 0;
}

.hero h1 {
    font-size: 42px;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
}

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

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

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

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

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

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

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

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

section {
    padding: 80px 0;
}

.section-light {
    background-color: var(--white);
}

.section-alt {
    background-color: var(--bg-alt);
}

.section-dark {
    background-color: var(--primary);
    color: var(--white);
}

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

.section-header h2 {
    font-size: 34px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-alt .section-header h2,
.section-dark .section-header h2 {
    color: inherit;
}

.section-header p {
    font-size: 17px;
    color: var(--text-light);
    max-width: 640px;
    margin: 0 auto;
}

.section-dark .section-header p {
    color: rgba(255, 255, 255, 0.85);
}

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

.service-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    flex: 1 1 340px;
    max-width: 380px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px var(--shadow);
}

.service-card-img {
    height: 200px;
    background-color: var(--bg-alt);
    overflow: hidden;
}

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

.service-card-content {
    padding: 24px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

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

.service-price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
}

.features-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.features-content {
    flex: 1 1 480px;
}

.features-image {
    flex: 1 1 400px;
    background-color: var(--bg-alt);
    border-radius: 12px;
    overflow: hidden;
    min-height: 360px;
}

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

.features-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

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

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

.features-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 16px;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
}

.testimonials-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 32px;
    flex: 1 1 320px;
    max-width: 400px;
    box-shadow: 0 4px 16px var(--shadow);
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
    font-size: 18px;
}

.testimonial-info h4 {
    font-size: 16px;
    color: var(--text-dark);
}

.testimonial-info span {
    font-size: 13px;
    color: var(--text-light);
}

.cta-section {
    text-align: center;
    padding: 70px 0;
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 18px;
}

.cta-section p {
    margin-bottom: 28px;
    font-size: 17px;
    opacity: 0.9;
}

.about-intro {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1 1 500px;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

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

.about-image {
    flex: 1 1 380px;
    background-color: var(--bg-alt);
    border-radius: 12px;
    overflow: hidden;
    min-height: 340px;
}

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

.stats-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    text-align: center;
}

.stat-item {
    flex: 1 1 180px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
}

.section-dark .stat-label {
    color: rgba(255, 255, 255, 0.8);
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info {
    flex: 1 1 340px;
}

.contact-info h2 {
    font-size: 30px;
    margin-bottom: 24px;
}

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

.contact-detail h4 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 6px;
}

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

.contact-form-wrap {
    flex: 1 1 440px;
    background-color: var(--white);
    border-radius: 12px;
    padding: 36px;
    box-shadow: 0 4px 24px var(--shadow);
}

.contact-form-wrap h3 {
    font-size: 24px;
    margin-bottom: 24px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background-color: var(--bg-light);
    color: var(--text-dark);
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

footer {
    background-color: var(--text-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 0;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    flex: 1 1 280px;
}

.footer-brand .logo {
    font-size: 24px;
    margin-bottom: 16px;
    display: inline-block;
}

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

.footer-links {
    flex: 1 1 180px;
}

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

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

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-links ul li a:hover {
    color: var(--secondary);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.footer-bottom p {
    font-size: 13px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.footer-legal a:hover {
    color: var(--secondary);
}

.disclaimer {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    margin-top: 40px;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.8;
}

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

.page-header h1 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

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

.legal-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 60px 24px;
}

.legal-content h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 18px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

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

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

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

.thanks-content {
    max-width: 560px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-size: 40px;
    color: var(--white);
}

.thanks-content h1 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--white);
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-content p a {
    color: var(--secondary);
}

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

.cookie-buttons button {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--secondary);
    color: var(--white);
}

.btn-accept:hover {
    background-color: var(--accent);
}

.btn-reject {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.service-select-card {
    border: 2px solid var(--border);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 16px;
}

.service-select-card:hover {
    border-color: var(--primary);
}

.service-select-card.selected {
    border-color: var(--secondary);
    background-color: var(--bg-alt);
}

.service-select-card input {
    display: none;
}

.service-radio {
    width: 22px;
    height: 22px;
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-select-card.selected .service-radio {
    border-color: var(--secondary);
}

.service-select-card.selected .service-radio::after {
    content: '';
    width: 12px;
    height: 12px;
    background-color: var(--secondary);
    border-radius: 50%;
}

.service-select-info h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.service-select-info span {
    font-size: 14px;
    color: var(--text-light);
}

@media (max-width: 900px) {
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: 0 4px 12px var(--shadow);
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        border-bottom: 1px solid var(--border);
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    nav ul li a {
        display: block;
        padding: 14px 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-bg {
        position: relative;
        width: 100%;
        height: 280px;
    }

    .hero {
        flex-direction: column-reverse;
    }

    .hero-content {
        padding: 40px 0;
        max-width: 100%;
    }

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

    section {
        padding: 50px 0;
    }

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

    .features-row {
        gap: 30px;
    }

    .contact-wrapper {
        gap: 40px;
    }

    .footer-main {
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 26px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 15px;
    }

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

    .testimonial-card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .stats-row {
        gap: 30px;
    }

    .stat-number {
        font-size: 36px;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
