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

:root {
    --primary-color: #4a90e2;
    --secondary-color: #2ecc71;
    --accent-color: #e74c3c;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --text-color: #333;
    --bg-color: #ffffff;
    --border-radius: 12px;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

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

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

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    flex-wrap: wrap;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 0.25rem 0.75rem;
    background: #f0f0f0;
    border-radius: 4px;
    margin: 0 1rem;
}

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

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
}

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

.hero-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #5ba3f5 100%);
}

.hero-section .container {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-card {
    flex: 1;
    min-width: 300px;
    color: white;
}

.hero-card h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-visual {
    flex: 1;
    min-width: 300px;
}

.hero-visual img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.btn-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.intro-card {
    background: var(--light-color);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.intro-card h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.intro-card p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.cards-grid-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.feature-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-icon {
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.feature-card p {
    color: #666;
    line-height: 1.7;
}

.approach-section {
    padding: 5rem 0;
    background: var(--bg-color);
}

.approach-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

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

.approach-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.approach-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.approach-visual {
    flex: 1;
    min-width: 300px;
}

.approach-visual img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.btn-inline {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: background 0.3s, transform 0.3s;
}

.btn-inline:hover {
    background: #3a7bc8;
    transform: translateX(5px);
}

.benefits-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-title-centered {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

.benefits-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.benefit-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary-color);
}

.benefit-number {
    display: inline-block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.benefit-card p {
    color: #666;
    line-height: 1.7;
}

.testimonial-section {
    padding: 5rem 0;
    background: var(--dark-color);
    color: white;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-card blockquote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.testimonial-card cite {
    font-style: normal;
    opacity: 0.8;
}

.methodology-section {
    padding: 5rem 0;
    background: var(--bg-color);
}

.methodology-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--dark-color);
}

.methodology-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.method-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #5ba3f5 100%);
    color: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.method-step {
    font-size: 0.875rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.method-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.method-card p {
    line-height: 1.7;
}

.expertise-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.expertise-layout {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.expertise-visual {
    flex: 1;
    min-width: 300px;
}

.expertise-visual img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

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

.expertise-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.expertise-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.cta-section {
    padding: 5rem 0;
    background: var(--bg-color);
}

.cta-card-large {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #27ae60 100%);
    color: white;
    padding: 4rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.cta-card-large h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-card-large p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-cta-large {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: white;
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.form-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.form-card {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.form-card h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.form-card > p {
    margin-bottom: 2rem;
    color: #666;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    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);
}

.btn-submit {
    width: 100%;
    padding: 1.125rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.btn-submit:hover {
    background: #3a7bc8;
    transform: translateY(-2px);
}

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

.disclaimer-card {
    background: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 2rem;
    border-radius: var(--border-radius);
}

.disclaimer-card h3 {
    color: #856404;
    margin-bottom: 1rem;
}

.disclaimer-card p {
    color: #856404;
    line-height: 1.7;
}

.footer {
    background: var(--dark-color);
    color: white;
    padding: 3rem 0 1rem;
}

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

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

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-col ul li a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    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: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

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

.btn-primary,
.btn-secondary {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

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

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

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

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

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.services-intro {
    padding: 3rem 0;
    background: var(--bg-color);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

.services-catalog {
    padding: 4rem 0;
    background: #f8f9fa;
}

.service-card-detailed {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 2.5rem;
    overflow: hidden;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.service-title-block h2 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

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

.service-content {
    padding: 2.5rem;
}

.service-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.btn-service {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: background 0.3s, transform 0.3s;
}

.btn-service:hover {
    background: #3a7bc8;
    transform: translateY(-2px);
}

.services-cta {
    padding: 4rem 0;
    background: var(--bg-color);
}

.cta-card-services {
    background: linear-gradient(135deg, var(--accent-color) 0%, #c0392b 100%);
    color: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.cta-card-services h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-card-services p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-cta-alt {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: var(--accent-color);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-cta-alt:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.services-faq {
    padding: 5rem 0;
    background: #f8f9fa;
}

.services-faq h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--dark-color);
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.faq-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.faq-card p {
    color: #666;
    line-height: 1.7;
}

.about-intro {
    padding: 4rem 0;
    background: var(--bg-color);
}

.about-layout {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

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

.about-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.about-visual img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.values-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.values-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--dark-color);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-color);
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

.expertise-detail-section {
    padding: 5rem 0;
    background: var(--bg-color);
}

.expertise-split {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.expertise-content {
    flex: 1;
    min-width: 300px;
}

.expertise-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.expertise-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.expertise-stats {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    background: linear-gradient(135deg, var(--primary-color) 0%, #5ba3f5 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
}

.approach-detail-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.approach-detail-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--dark-color);
}

.approach-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.approach-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.approach-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.approach-card p {
    color: #666;
    line-height: 1.7;
}

.mission-section {
    padding: 5rem 0;
    background: var(--bg-color);
}

.mission-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--light-color);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.mission-card h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.mission-card p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.differentiators-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.differentiators-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--dark-color);
}

.differentiators-layout {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.diff-visual {
    flex: 1;
    min-width: 300px;
}

.diff-visual img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.diff-content {
    flex: 1;
    min-width: 300px;
}

.diff-item {
    margin-bottom: 2rem;
}

.diff-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.diff-item p {
    color: #666;
    line-height: 1.7;
}

.team-section {
    padding: 5rem 0;
    background: var(--bg-color);
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--dark-color);
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.team-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.team-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.team-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.team-card p {
    color: #666;
    line-height: 1.7;
}

.cta-about {
    padding: 5rem 0;
    background: #f8f9fa;
}

.cta-card-about {
    background: linear-gradient(135deg, var(--primary-color) 0%, #5ba3f5 100%);
    color: white;
    padding: 4rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.cta-card-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-card-about p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.contact-content {
    padding: 4rem 0;
    background: var(--bg-color);
}

.contact-layout {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contact-info-section {
    flex: 1;
    min-width: 300px;
}

.contact-info-section h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}

.contact-info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.contact-info-card p {
    color: #666;
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
    min-width: 300px;
}

.contact-visual img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-map-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.contact-map-section h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--dark-color);
}

.map-placeholder {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-placeholder svg {
    display: block;
    width: 100%;
    height: auto;
}

.contact-cta {
    padding: 4rem 0;
    background: var(--bg-color);
}

.cta-contact-card {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #27ae60 100%);
    color: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.cta-contact-card h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.cta-contact-card p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.contact-faq {
    padding: 5rem 0;
    background: #f8f9fa;
}

.contact-faq h2 {
    font-size: 2.3rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--dark-color);
}

.faq-contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.faq-contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.faq-contact-card p {
    color: #666;
    line-height: 1.7;
}

.thanks-section {
    padding: 5rem 0;
    background: var(--bg-color);
}

.thanks-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 4rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-card h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

.thanks-details {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.thanks-next-steps {
    margin-bottom: 3rem;
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: left;
}

.step-item {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 200px;
    display: flex;
    gap: 1rem;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-item p {
    flex: 1;
    color: #666;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.thanks-additional {
    padding: 3rem 0;
    background: #f8f9fa;
}

.additional-info {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.additional-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.additional-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
}

.legal-page {
    padding: 4rem 0;
    background: var(--bg-color);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.legal-content h4 {
    font-size: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #555;
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

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

.legal-update {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    font-style: italic;
    color: #999;
}

@media (max-width: 768px) {
    .navbar {
        flex-wrap: wrap;
    }

    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        background: white;
        padding: 1rem 0;
    }

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

    .nav-menu li {
        padding: 0.75rem 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-card h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title,
    .section-title-centered {
        font-size: 1.8rem;
    }

    .feature-card,
    .benefit-card,
    .method-card,
    .value-card,
    .approach-card,
    .team-card,
    .faq-card,
    .faq-contact-card {
        flex: 1 1 100%;
    }

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

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

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

    .cookie-buttons button {
        width: 100%;
    }
}
