:root {
    --primary: #1a365d;
    --primary-light: #2c5282;
    --secondary: #c9a227;
    --accent: #38a169;
    --text-dark: #1a202c;
    --text-medium: #4a5568;
    --text-light: #718096;
    --bg-white: #ffffff;
    --bg-light: #f7fafc;
    --bg-warm: #fffbf0;
    --bg-dark: #1a365d;
    --border: #e2e8f0;
    --shadow: rgba(0, 0, 0, 0.1);
    --radius: 8px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

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

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--secondary);
    color: var(--text-dark);
}

.btn-primary:hover {
    background-color: #b8911f;
    color: var(--text-dark);
}

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

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

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

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

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

.header-top {
    background-color: var(--bg-dark);
    color: var(--bg-white);
    padding: 0.5rem 0;
    font-size: 0.85rem;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ad-disclosure {
    background-color: var(--secondary);
    color: var(--text-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 600;
}

.header-main {
    padding: 1rem 0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

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

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

.hero-split {
    display: flex;
    min-height: 85vh;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background-color: var(--bg-light);
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.hero-content p {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    background-color: #dce4ed;
    position: relative;
    overflow: hidden;
}

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

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.section {
    padding: 5rem 0;
}

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

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

.section-dark h2,
.section-dark h3 {
    color: var(--bg-white);
}

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

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

.split-section {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

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

.split-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-image {
    flex: 1;
    background-color: #dce4ed;
    position: relative;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-item h4 {
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    background-color: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.service-card-image {
    height: 200px;
    background-color: #dce4ed;
    overflow: hidden;
}

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

.service-card-content {
    padding: 1.5rem;
}

.service-card h3 {
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.service-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
}

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

.testimonial-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
    padding: 5rem 0;
}

.testimonials-wrapper {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-dark);
}

.testimonial-info h4 {
    color: var(--bg-white);
    margin-bottom: 0.25rem;
}

.testimonial-info p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

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

.form-wrapper {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    margin-bottom: 1.5rem;
}

.form-info p {
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-medium);
}

.form-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.form-container {
    flex: 1;
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: 0 4px 20px var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

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

.form-submit {
    width: 100%;
}

.stats-section {
    background-color: var(--primary);
    padding: 4rem 0;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    color: var(--bg-white);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
    display: block;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.process-section {
    padding: 5rem 0;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    flex: 1 1 calc(25% - 1.5rem);
    min-width: 220px;
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: var(--radius);
    box-shadow: 0 4px 15px var(--shadow);
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 auto 1.5rem;
}

.process-step h4 {
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-col h4 {
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: var(--text-light);
    transition: color var(--transition);
}

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

.footer-col p {
    color: var(--text-light);
    line-height: 1.8;
}

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

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.disclaimer {
    background-color: var(--bg-warm);
    padding: 2rem;
    border-radius: var(--radius);
    margin: 2rem 0;
    border-left: 4px solid var(--secondary);
}

.disclaimer p {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin: 0;
}

.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.page-header p {
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.content-page {
    padding: 4rem 0;
}

.content-page h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.content-page h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.content-page ul,
.content-page ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.content-page li {
    margin-bottom: 0.5rem;
    color: var(--text-medium);
}

.contact-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-info-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: 0 4px 15px var(--shadow);
}

.contact-info-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-info-card p {
    color: var(--text-medium);
    margin-bottom: 0.5rem;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: var(--bg-white);
}

.thanks-content h1 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.thanks-content p {
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px var(--shadow);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.cookie-accept {
    background-color: var(--secondary);
    color: var(--text-dark);
}

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

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

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

.cta-floating {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 998;
}

.cta-floating .btn {
    box-shadow: 0 4px 20px var(--shadow);
}

.about-team {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 250px;
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: var(--radius);
    box-shadow: 0 4px 15px var(--shadow);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: var(--bg-light);
    margin: 0 auto 1.5rem;
    overflow: hidden;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    margin-bottom: 0.5rem;
}

.team-member p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.cert-badge {
    background-color: var(--bg-white);
    padding: 1.5rem 2rem;
    border-radius: var(--radius);
    box-shadow: 0 2px 10px var(--shadow);
    text-align: center;
    min-width: 150px;
}

.cert-badge strong {
    display: block;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.cert-badge span {
    font-size: 0.85rem;
    color: var(--text-light);
}

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

    .hero-content {
        padding: 3rem 2rem;
    }

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

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

    .split-content {
        padding: 3rem 2rem;
    }

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

    .split-image img {
        position: relative;
    }

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

    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.875rem; }
}

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

    nav ul.active {
        display: flex;
    }

    nav ul li a {
        display: block;
        padding: 0.75rem 1rem;
    }

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

    .header-top .container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

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

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

    .process-step {
        flex: 1 1 100%;
    }

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

    .cta-floating {
        bottom: 80px;
        right: 10px;
    }

    .stats-grid {
        gap: 1.5rem;
    }

    .stat-item {
        flex: 1 1 calc(50% - 1rem);
    }
}

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

    .btn {
        width: 100%;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
    }
}
