:root {
    --primary: #1a365d;
    --secondary: #2c5282;
    --accent: #c4a052;
    --text-dark: #1a202c;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-dark: #2d3748;
    --white: #ffffff;
    --border: #e2e8f0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

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

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

.nav-wrapper {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.ad-disclosure {
    background: var(--bg-light);
    padding: 8px 15px;
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: 0.3s;
}

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

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

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 50px;
}

.split-image {
    flex: 1;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

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

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 500px;
}

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

.btn-primary:hover {
    background: #b8943f;
    transform: translateY(-2px);
}

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

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

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

.section-dark .split-content {
    color: var(--white);
}

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

.section-dark p {
    color: #a0aec0;
}

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

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.section-text {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
}

.features-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 15px;
}

.features-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.service-content {
    padding: 25px;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}

.service-description {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
}

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

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

.full-width-section {
    padding: 80px 20px;
    text-align: center;
}

.full-width-section .section-title {
    margin-bottom: 15px;
}

.full-width-section .section-text {
    max-width: 700px;
    margin: 0 auto 40px;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent);
    display: block;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-section {
    background: var(--primary);
    padding: 80px 20px;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.testimonial-text {
    font-size: 24px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 30px;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
}

.testimonial-role {
    font-size: 14px;
    color: #a0aec0;
}

.form-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 15px;
    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(--accent);
}

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

.form-submit {
    width: 100%;
    padding: 15px;
    margin-top: 10px;
}

footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: 60px 20px 30px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 40px;
    border-bottom: 1px solid #4a5568;
}

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

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

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

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

.footer-column a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

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

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

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

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #718096;
    font-size: 13px;
    text-decoration: none;
}

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

.disclaimer {
    background: #1a202c;
    padding: 20px;
    text-align: center;
}

.disclaimer p {
    color: #718096;
    font-size: 12px;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

.page-header {
    background: var(--primary);
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    color: #a0aec0;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.content-section {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 15px;
    margin-top: 40px;
}

.content-section h2:first-child {
    margin-top: 0;
}

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

.content-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.content-section li {
    margin-bottom: 8px;
}

.contact-info {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
}

.contact-info h3 {
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 10px;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.thanks-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--white);
}

.thanks-container h1 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 15px;
}

.thanks-container p {
    color: var(--text-light);
    max-width: 500px;
    margin-bottom: 30px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    padding: 20px;
    z-index: 9999;
    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: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    color: #a0aec0;
    font-size: 14px;
    flex: 1;
}

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

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

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.cookie-accept {
    background: var(--accent);
    color: var(--white);
}

.cookie-accept:hover {
    background: #b8943f;
}

.cookie-reject {
    background: transparent;
    color: #a0aec0;
    border: 1px solid #4a5568;
}

.cookie-reject:hover {
    background: #4a5568;
}

.about-team {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    flex: 1;
    text-align: center;
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: var(--bg-light);
    margin: 0 auto 15px;
    overflow: hidden;
}

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

.team-member h4 {
    color: var(--primary);
    margin-bottom: 5px;
}

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

.process-steps {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.process-step h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

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

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-bottom: 1px solid var(--border);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

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

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

    .split-content {
        padding: 40px 20px;
    }

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

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

    .services-grid {
        padding: 40px 20px;
    }

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

    .stats-row {
        flex-direction: column;
        gap: 30px;
    }

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

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

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

    .about-team {
        flex-direction: column;
    }

    .process-steps {
        flex-direction: column;
    }
}
