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

:root {
    --primary-color: #2d3748;
    --secondary-color: #4a5568;
    --accent-color: #ed8936;
    --text-color: #1a202c;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
}

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

.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: var(--shadow-sm);
}

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

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

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

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

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

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

.hero-card {
    margin-bottom: 60px;
}

.hero-image {
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 60px 40px;
    text-align: center;
    color: white;
    max-width: 800px;
    border-radius: 12px;
    margin: 20px;
}

.hero-overlay h1 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-overlay p {
    font-size: 20px;
    line-height: 1.5;
}

.intro-cards {
    padding: 60px 0;
}

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

.intro-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.intro-card.accent {
    background-color: var(--accent-color);
    color: white;
}

.intro-card h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

.intro-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 600;
}

.intro-card p {
    font-size: 16px;
    line-height: 1.7;
}

.services-preview,
.services-full {
    padding: 80px 0;
    background-color: var(--bg-white);
}

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

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

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

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

.service-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
}

.service-info p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
}

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

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 14px;
    color: var(--text-light);
}

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

.service-level {
    font-size: 13px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

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

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

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

.form-card {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.form-card h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
}

.form-intro {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 15px;
}

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

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

.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: 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-color);
}

.form-group input[readonly] {
    background-color: var(--bg-light);
    cursor: not-allowed;
}

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

.btn-submit:hover {
    background-color: #dd6b20;
}

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

.testimonials-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-light);
    padding: 35px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

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

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

.info-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--primary-color);
}

.info-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}

.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

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

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

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

.footer-col ul li a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: white;
}

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

.footer-bottom p {
    color: #cbd5e0;
    font-size: 13px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.disclaimer {
    max-width: 800px;
    margin: 0 auto 20px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    font-size: 12px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    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 {
    flex: 1;
    min-width: 250px;
    margin: 0;
    font-size: 14px;
}

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

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

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

.btn-accept:hover {
    background-color: #dd6b20;
}

.btn-reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

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

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

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

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

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.about-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
}

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

.values-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--primary-color);
}

.value-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

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

.team-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.team-card {
    flex: 0 1 300px;
    text-align: center;
}

.team-photo {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    margin-bottom: 20px;
}

.team-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--primary-color);
}

.team-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

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

.approach-section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    color: var(--primary-color);
}

.approach-text {
    max-width: 800px;
    margin: 0 auto 25px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

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

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

.contact-card {
    flex: 1;
    min-width: 250px;
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.contact-card h2 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.contact-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 15px;
}

.contact-email {
    color: var(--text-color);
    font-weight: 600;
    font-size: 16px;
}

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

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

.map-placeholder {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 20px;
    text-align: center;
}

.map-overlay p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

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

.faq-section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.faq-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.faq-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--primary-color);
}

.faq-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.thanks-section {
    padding: 100px 0;
}

.thanks-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 60px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.thanks-card h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.thanks-details {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-details h2 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.thanks-details p {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.thanks-details strong {
    font-weight: 600;
}

.next-steps {
    text-align: left;
    margin-bottom: 40px;
}

.next-steps h2 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.next-steps ol {
    padding-left: 25px;
}

.next-steps li {
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

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

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

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

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

.thanks-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.legal-content {
    padding: 60px 0;
    background-color: var(--bg-white);
}

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
}

.legal-date {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-color);
    font-weight: 600;
}

.legal-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content li {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 10px;
}

.legal-content strong {
    color: var(--text-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 32px;
    }

    .hero-overlay p {
        font-size: 16px;
    }

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

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

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

    .nav {
        width: 100%;
        flex-direction: column;
        gap: 15px;
    }

    .form-card {
        padding: 30px;
    }

    .thanks-card {
        padding: 40px 30px;
    }
}