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

:root {
    --primary-color: #2c5f7d;
    --primary-dark: #1e4158;
    --secondary-color: #4a90a4;
    --accent-color: #e8956b;
    --text-dark: #2d3748;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

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

.main-header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

.main-nav a:hover,
.main-nav a.active {
    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-section {
    margin-bottom: 40px;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: var(--primary-dark);
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--bg-white);
}

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

.hero-subtitle {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.page-hero {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 40px;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.intro-section,
.services-preview,
.how-it-works,
.testimonials-section,
.cta-section,
.info-section,
.services-full,
.about-intro,
.mission-section,
.team-section,
.experience-section,
.stats-section,
.contact-section,
.map-section,
.faq-section {
    padding: 60px 20px;
}

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

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

.intro-card h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

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

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

.card-grid-2 > * {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
}

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

.card-grid-3 > * {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
}

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

.card-grid-4 > * {
    flex: 1 1 calc(25% - 19px);
    min-width: 220px;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.service-card h3 {
    padding: 20px 20px 10px;
    font-size: 22px;
    color: var(--primary-color);
}

.service-card p {
    padding: 0 20px 15px;
    color: var(--text-dark);
}

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

.btn-card {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px 24px;
    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;
}

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

.text-center {
    text-align: center;
    margin-top: 40px;
}

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

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

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

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

.btn-primary-large {
    padding: 18px 40px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-primary-large:hover {
    background-color: #d67e53;
    transform: scale(1.05);
}

.step-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

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

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

.testimonial-card {
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

.cta-card-large {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
    padding: 60px 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.cta-card-large h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.cta-card-large p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.info-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.info-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: var(--bg-light);
}

.info-card h3 {
    padding: 20px 20px 10px;
    font-size: 22px;
    color: var(--primary-color);
}

.info-card p {
    padding: 0 20px 20px;
    color: var(--text-dark);
}

.service-card-detailed {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.service-card-detailed .service-image {
    height: 300px;
}

.service-content {
    padding: 30px;
}

.service-content h2 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.service-content ul {
    margin: 20px 0 20px 20px;
    color: var(--text-dark);
}

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

.price-large {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 20px 0;
}

.card-grid-2-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.card-grid-2-asymmetric .about-text {
    flex: 1 1 55%;
    min-width: 300px;
}

.card-grid-2-asymmetric .about-image {
    flex: 1 1 40%;
    min-width: 300px;
}

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

.about-text p {
    font-size: 17px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    background-color: var(--bg-light);
    object-fit: cover;
}

.value-card {
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

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

.team-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.team-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    background-color: var(--bg-light);
}

.team-card h3 {
    padding: 20px 20px 10px;
    font-size: 24px;
    color: var(--primary-color);
}

.team-card p {
    padding: 0 20px 25px;
    color: var(--text-dark);
}

.card-grid-2-reverse {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    flex-direction: row-reverse;
}

.experience-image {
    flex: 1 1 45%;
    min-width: 300px;
}

.experience-text {
    flex: 1 1 50%;
    min-width: 300px;
}

.experience-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    background-color: var(--bg-light);
    object-fit: cover;
}

.experience-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.experience-text p {
    font-size: 17px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.stat-card {
    background-color: var(--bg-white);
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

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

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

.card-grid-2-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

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

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

.contact-info-card h2,
.contact-form-card h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

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

.contact-item p {
    color: var(--text-dark);
    line-height: 1.6;
}

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

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

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

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

.map-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 400px;
    background-color: var(--bg-light);
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: var(--bg-white);
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.map-overlay p {
    font-weight: 600;
    color: var(--primary-color);
}

.faq-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.faq-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-card p {
    color: var(--text-dark);
    line-height: 1.6;
}

.thanks-section {
    padding: 80px 20px;
}

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

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

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

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

.thanks-content {
    margin-bottom: 40px;
    text-align: left;
}

.thanks-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

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

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

.legal-page {
    padding: 40px 20px 80px;
}

.legal-content {
    background-color: var(--bg-white);
    max-width: 900px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.legal-content h2 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.legal-content h4 {
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.legal-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-content ul {
    margin: 15px 0 15px 25px;
}

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

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: var(--bg-white);
    margin: 5% auto;
    padding: 40px;
    border-radius: 12px;
    max-width: 600px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-content h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

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

.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 1 60%;
    margin: 0;
    font-size: 14px;
    color: var(--text-dark);
}

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

.main-footer {
    background-color: var(--primary-dark);
    color: var(--bg-white);
    padding: 50px 20px 30px;
    margin-top: 60px;
}

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

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

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

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

    .hero-subtitle {
        font-size: 16px;
    }

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

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

    .card-grid-2 > *,
    .card-grid-3 > *,
    .card-grid-4 > * {
        flex: 1 1 100%;
    }

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

    .main-nav {
        justify-content: center;
    }

    .cta-card-large h2 {
        font-size: 26px;
    }

    .legal-content {
        padding: 30px 20px;
    }

    .modal-content {
        margin: 10% 20px;
        padding: 30px 20px;
    }
}
