/*
 * Ahorrar con Pasos Pequeños - Estilos principales
 * Paleta de colores:
 * - Primario: #3C6E71 (verde-azulado)
 * - Secundario: #284B63 (azul oscuro)
 * - Acento 1: #D9D9D9 (gris claro)
 * - Acento 2: #70AE6E (verde suave)
 * - Fondo: #F5F5F5 (casi blanco)
 * - Texto: #333333 (gris oscuro)
 * - Títulos: #1D3557 (azul profundo)
 * - Advertencia: #FFBB3F (amarillo suave)
 * - Éxito: #4CAF50 (verde)
 */

/* ====== ESTILOS GENERALES ====== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #333333;
    background-color: #F5F5F5;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #1D3557;
    font-weight: 700;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.2rem;
}

a {
    color: #3C6E71;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #284B63;
}

.container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.btn, .btn-large {
    background-color: #3C6E71;
    color: white;
    border-radius: 30px;
    text-transform: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.btn:hover, .btn-large:hover {
    background-color: #284B63;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.btn-large {
    padding: 0 2rem;
    height: 54px;
    line-height: 54px;
}

.second-btn {
    background-color: #70AE6E;
}

.second-btn:hover {
    background-color: #5c9a5a;
}

.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #3C6E71;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2.5rem;
}

.divider {
    height: 2px;
    background-color: #3C6E71;
    width: 60px;
    margin: 1rem auto 2rem;
}

/* ====== NAVEGACIÓN ====== */
nav {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav .nav-wrapper {
    padding: 0.5rem 0;
}

nav .brand-logo {
    height: 50px;
    display: flex;
    align-items: center;
}

nav .brand-logo img.logo {
    height: 40px;
}

nav ul a {
    color: #333333;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul a:hover, nav ul a.active {
    background-color: transparent;
    color: #3C6E71;
}

nav ul a.active {
    position: relative;
}

nav ul a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15%;
    width: 70%;
    height: 3px;
    background-color: #3C6E71;
    border-radius: 2px 2px 0 0;
}

.sidenav {
    background-color: #ffffff;
    padding-top: 2rem;
}

.sidenav li > a {
    color: #333333;
    font-weight: 500;
    padding: 0 2rem;
}

.sidenav li > a:hover, .sidenav li > a.active {
    background-color: rgba(60, 110, 113, 0.1);
    color: #3C6E71;
}

.sidenav-trigger {
    color: #333333;
}

@media only screen and (max-width: 992px) {
    nav .brand-logo {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media only screen and (max-width: 600px) {
    nav .brand-logo img.logo {
        height: 35px;
    }
}

/* ====== HERO SECTION ====== */
.hero-section {
    position: relative;
    padding: 6rem 0 8rem;
    background-color: #284B63;
    color: white;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
}

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

.hero-content h2 {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    height: auto;
}

.diagonal-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: #F5F5F5;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.diagonal-divider-top {
    height: 100px;
    background-color: #F5F5F5;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    margin-top: -1px;
}

.diagonal-divider-bottom {
    height: 100px;
    background-color: #F5F5F5;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
    margin-bottom: -1px;
}

@media only screen and (max-width: 992px) {
    .hero-section {
        padding: 4rem 0 6rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .hero-image-container {
        margin-top: 2rem;
    }
}

@media only screen and (max-width: 600px) {
    .hero-section {
        padding: 3rem 0 5rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.3rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .diagonal-divider, .diagonal-divider-top, .diagonal-divider-bottom {
        height: 50px;
    }
}

/* ====== INFO SECTION ====== */
.info-section {
    padding: 5rem 0;
    background-color: #F5F5F5;
}

.info-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-stats {
    display: flex;
    justify-content: center;
    align-items: center;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
}

.stat-box {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    flex: 1 1 30%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.stat-box h3 {
    font-size: 2.5rem;
    color: #3C6E71;
    margin-bottom: 0.5rem;
}

.stat-box p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0;
}

@media only screen and (max-width: 992px) {
    .stats-container {
        flex-direction: column;
    }
    
    .stat-box {
        margin-bottom: 1rem;
        width: 100%;
    }
}

/* ====== CHARTS SECTION ====== */
.charts-section {
    padding: 5rem 0;
    background-color: #284B63;
    color: white;
    position: relative;
}

.chart-container {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    color: #333;
}

.chart-container h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #284B63;
}

.canvas-container {
    position: relative;
    height: 300px;
    margin-bottom: 1rem;
}

.chart-description {
    text-align: center;
    font-size: 0.9rem;
    color: #555;
    margin-top: 1rem;
}

/* ====== TIPS SECTION ====== */
.tips-section {
    padding: 5rem 0;
    background-color: #F5F5F5;
}

.tips-row {
    margin-bottom: 2rem;
}

.tip-card {
    margin-bottom: 2rem;
}

.tip-card .card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tip-card .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.tip-card .card-image {
    max-height: 200px;
    overflow: hidden;
}

.tip-card .card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tip-card .card:hover .card-image img {
    transform: scale(1.05);
}

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

.card-content p {
  color: #333333;
}

.tip-card .card-title {
    color: #284B63;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* ====== EDUCATION SECTION ====== */
.education-section {
    padding: 5rem 0;
    background-color: #3C6E71;
    color: white;
    position: relative;
}

.education-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.education-content h2 {
    color: white;
}

.education-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.education-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.rounded-image {
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    height: auto;
}

/* ====== CONTACT SECTION ====== */
.contact-section {
    padding: 5rem 0;
    background-color: #F5F5F5;
}

.contact-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-card .card-content {
    padding: 2rem;
}

.input-field .prefix {
    color: #3C6E71;
}

.input-field input:focus + label,
.input-field textarea:focus + label {
    color: #3C6E71 !important;
}

.input-field input:focus,
.input-field textarea:focus {
    border-bottom: 1px solid #3C6E71 !important;
    box-shadow: 0 1px 0 0 #3C6E71 !important;
}

.privacy-check {
    margin: 1.5rem 0;
}

.privacy-check a {
    color: #3C6E71;
    text-decoration: underline;
}

.privacy-check a:hover {
    color: #284B63;
}

.submit-btn {
    width: auto;
    padding: 0 2rem;
}

/* Intl Tel Input styles */
.iti {
    width: 100%;
}

.iti__flag-container {
    height: 3rem;
}

/* ====== FOOTER ====== */
.page-footer {
    background-color: #284B63;
    color: white;
    padding-top: 4rem;
    margin-top: 0;
}

.page-footer h5 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.page-footer p, .page-footer address p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.page-footer ul {
    margin: 0;
}

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

.page-footer ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

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

.page-footer address p i {
    margin-right: 0.5rem;
    color: #70AE6E;
}

.footer-copyright {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 1.5rem 0;
    font-size: 0.9rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    margin-left: 1.5rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

@media only screen and (max-width: 992px) {
    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-top: 1rem;
    }
    
    .footer-links a {
        margin-left: 0;
        margin-bottom: 0.5rem;
    }
}

@media only screen and (max-width: 600px) {
    .page-footer {
        text-align: center;
    }
    
    .footer-copyright {
        text-align: center;
    }
    
    .footer-links {
        align-items: center;
        margin-top: 1.5rem;
    }
}

/* ====== COOKIE CONSENT ====== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

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

.cookie-content h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.cookie-content p {
    margin-bottom: 1.5rem;
}

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

.cookie-buttons button {
    margin-right: 1rem;
    margin-bottom: 0.5rem;
}

.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    display: none;
    justify-content: center;
    align-items: center;
}

.cookie-settings-content {
    background-color: #ffffff;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cookie-settings-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-settings-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.cookie-close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #555;
    transition: color 0.3s ease;
}

.cookie-close-btn:hover {
    color: #333;
}

.cookie-settings-body {
    padding: 1.5rem;
}

.cookie-category {
    margin-bottom: 2rem;
}

.cookie-category:last-child {
    margin-bottom: 0;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-category-header h4 {
    margin: 0;
    font-size: 1.2rem;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: #3C6E71;
}

input:focus + .slider {
    box-shadow: 0 0 1px #3C6E71;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.cookie-settings-footer {
    padding: 1.5rem;
    border-top: 1px solid #eee;
    text-align: center;
}

/* ====== Z-PATTERN LAYOUT ====== */
.z-pattern-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.z-pattern-row.reverse {
    flex-direction: row-reverse;
}

@media only screen and (max-width: 992px) {
    .z-pattern-row, .z-pattern-row.reverse {
        flex-direction: column;
    }
}

/* ====== ANIMACIONES ====== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

.delay-4 {
    transition-delay: 0.8s;
}

/* ====== MISSION PAGE ====== */
.page-header {
    position: relative;
    padding: 5rem 0 7rem;
    background-color: #284B63;
    color: white;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.header-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
}

.mission-section {
    padding: 5rem 0;
    background-color: #F5F5F5;
}

.mission-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mission-quote {
    font-style: italic;
    font-size: 1.2rem;
    color: #3C6E71;
    border-left: 4px solid #3C6E71;
    padding-left: 1.5rem;
    margin: 2rem 0;
}

.values-section {
    padding: 5rem 0;
    background-color: #3C6E71;
    color: white;
    position: relative;
}

.values-row {
    margin-bottom: 2rem;
}

.value-card {
    margin-bottom: 2rem;
}

.value-card .card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.value-card .card-content {
    padding: 2rem;
    text-align: center;
}

.value-icon {
    font-size: 2.5rem;
    color: #3C6E71;
    margin-bottom: 1.5rem;
}

.value-card .card-title {
    color: #284B63;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.commitment-section {
    padding: 5rem 0;
    background-color: #F5F5F5;
}

.commitment-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.commitment-list {
    list-style: none;
    margin: 1.5rem 0;
}

.commitment-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.commitment-list li i {
    color: #70AE6E;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.commitment-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hexagon-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.hexagon {
    position: absolute;
    width: 200px;
    height: 120px;
    background-color: #3C6E71;
    margin: 60px 0;
    position: relative;
    border-radius: 10px;
    transform: rotate(30deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hexagon:before, .hexagon:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: inherit;
    border-radius: 10px;
}

.hexagon:before {
    transform: rotate(60deg);
}

.hexagon:after {
    transform: rotate(-60deg);
}

.hex1 {
    top: 0;
    left: 50px;
    background-color: #3C6E71;
    z-index: 3;
}

.hex2 {
    top: 100px;
    left: 0;
    background-color: #284B63;
    z-index: 2;
}

.hex3 {
    top: 100px;
    right: 0;
    background-color: #70AE6E;
    z-index: 1;
}

.impact-section {
    padding: 5rem 0;
    background-color: #284B63;
    color: white;
    position: relative;
}

.impact-timeline {
    position: relative;
    padding: 2rem 0;
}

.impact-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    width: 45%;
}

.timeline-item.right {
    margin-left: auto;
}

.timeline-icon {
    position: absolute;
    top: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #70AE6E;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    z-index: 1;
}

.timeline-item .timeline-icon {
    right: -75px;
}

.timeline-item.right .timeline-icon {
    left: -75px;
}

.timeline-content {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
}

.timeline-content h3 {
    color: white;
    margin-top: 0;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.conclusion-section {
    padding: 5rem 0;
    background-color: #F5F5F5;
    text-align: center;
}

@media only screen and (max-width: 992px) {
    .page-header {
        padding: 4rem 0 6rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .impact-timeline::before {
        left: 50px;
    }
    
    .timeline-item, .timeline-item.right {
        width: 100%;
        padding-left: 100px;
        margin-left: 0;
    }
    
    .timeline-item .timeline-icon, .timeline-item.right .timeline-icon {
        left: 25px;
    }
}

@media only screen and (max-width: 600px) {
    .page-header {
        padding: 3rem 0 5rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .header-subtitle {
        font-size: 1.1rem;
    }
    
    .impact-timeline::before {
        left: 30px;
    }
    
    .timeline-item, .timeline-item.right {
        padding-left: 60px;
    }
    
    .timeline-item .timeline-icon, .timeline-item.right .timeline-icon {
        left: 5px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ====== SIMPLE TERMS PAGE ====== */
.terms-header {
    background-color: #70AE6E;
}

.section-nav-container {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 56px;
    z-index: 90;
}

.section-nav {
    display: flex;
    justify-content: space-between;
    overflow-x: auto;
    padding: 1rem 0;
    margin: 0;
}

.section-nav li {
    flex: 0 0 auto;
    white-space: nowrap;
}

.section-nav li a {
    padding: 0.5rem 1rem;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 20px;
}

.section-nav li a:hover, .section-nav li a.active {
    background-color: #3C6E71;
    color: white;
}

.terms-section {
    padding: 5rem 0;
    background-color: #F5F5F5;
}

.term-card {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.term-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.term-card h3 {
    color: #3C6E71;
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.term-card h3 i {
    margin-right: 1rem;
    font-size: 1.5rem;
}

.term-example {
    background-color: rgba(60, 110, 113, 0.05);
    border-left: 4px solid #3C6E71;
    padding: 1rem 1.5rem;
    margin-top: 1.5rem;
    border-radius: 0 15px 15px 0;
}

.term-example h4 {
    color: #3C6E71;
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.term-example p {
    margin-bottom: 0;
}

.strategies-section {
    padding: 5rem 0;
    background-color: #284B63;
    color: white;
    position: relative;
}

.strategies-section h2, .strategies-section .section-subtitle {
    color: white;
}

.strategies-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.strategies-container {
    margin-bottom: 2rem;
}

.strategy-card {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    color: #333;
    position: relative;
    padding-top: 3rem;
}

.strategy-number {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background-color: #3C6E71;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.strategy-card h3 {
    color: #284B63;
    margin-bottom: 1.5rem;
}

.strategy-card p {
    margin-bottom: 1rem;
}

.strategy-card ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.strategy-card ul li {
    margin-bottom: 0.5rem;
}

.habits-section {
    padding: 5rem 0;
    background-color: #F5F5F5;
}

.habits-container {
    max-width: 800px;
    margin: 0 auto;
}

.habit-item {
    display: flex;
    margin-bottom: 3rem;
}

.habit-icon {
    flex: 0 0 80px;
    height: 80px;
    background-color: #3C6E71;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-right: 2rem;
}

.habit-content {
    flex: 1;
}

.habit-content h3 {
    color: #3C6E71;
    margin-top: 0;
    margin-bottom: 1rem;
}

.habit-content p {
    margin-bottom: 1rem;
}

.habit-content p:last-child {
    margin-bottom: 0;
}

.myths-section {
    padding: 5rem 0;
    background-color: #70AE6E;
    color: white;
    position: relative;
}

.myths-section h2, .myths-section .section-subtitle {
    color: white;
}

.myths-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.myths-row {
    margin-bottom: 2rem;
}

.myth-card {
    margin-bottom: 2rem;
}

.myth-card .card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.myth-card .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.myth-card .card-content {
    padding: 2rem;
}

.myth-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.myth-icon {
    font-size: 1.5rem;
    color: #ff6b6b;
    margin-right: 1rem;
}

.myth-header h3 {
    margin: 0;
    color: #ff6b6b;
    font-size: 1.1rem;
    font-weight: 600;
}

.myth-card h4 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.reality h5 {
    display: flex;
    align-items: center;
    color: #4CAF50;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.reality h5 i {
    margin-right: 0.5rem;
}

.examples-section {
    padding: 5rem 0;
    background-color: #F5F5F5;
}

.example-case {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.example-header {
    background-color: #3C6E71;
    color: white;
    padding: 1.5rem 2rem;
}

.example-header h3 {
    margin: 0;
    color: white;
    font-size: 1.4rem;
}

.example-content {
    padding: 2rem;
}

.example-breakdown {
    background-color: rgba(60, 110, 113, 0.05);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 10px;
}

.example-breakdown li {
    margin-bottom: 0.5rem;
}

.example-breakdown li:last-child {
    margin-bottom: 0;
}

.examples-conclusion {
    margin-top: 2rem;
}

.examples-conclusion h3 {
    color: #3C6E71;
    margin-bottom: 1.5rem;
}

.success-factors {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.success-factors li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.success-factors li i {
    color: #70AE6E;
    margin-right: 1rem;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.final-section {
    padding: 5rem 0;
    background-color: #284B63;
    color: white;
    text-align: center;
    position: relative;
}

.final-section h2, .final-section p {
    color: white;
}

.final-section p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (max-width: 992px) {
    .section-nav {
        justify-content: flex-start;
    }
    
    .section-nav li a {
        padding: 0.5rem 0.8rem;
    }
    
    .habit-item {
        flex-direction: column;
    }
    
    .habit-icon {
        margin-bottom: 1.5rem;
        margin-right: 0;
    }
}

@media only screen and (max-width: 600px) {
    .section-nav {
        padding: 0.8rem 0;
    }
    
    .section-nav li a {
        padding: 0.5rem 0.6rem;
        font-size: 0.9rem;
    }
    
    .strategy-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .example-header h3 {
        font-size: 1.2rem;
    }
}

/* ====== CONTACTS PAGE ====== */
.contacts-header {
    background-color: #3C6E71;
}

.contact-main-section {
    padding: 5rem 0;
    background-color: #F5F5F5;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    margin-bottom: 2rem;
}

.contact-icon {
    flex: 0 0 60px;
    height: 60px;
    background-color: #3C6E71;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 1.5rem;
}

.contact-text {
    flex: 1;
}

.contact-text h3 {
    color: #3C6E71;
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.contact-text p {
    margin-bottom: 0.5rem;
}

.contact-map {
    display: flex;
    align-items: center;
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(40, 75, 99, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.map-text {
    text-align: center;
    color: white;
    padding: 2rem;
}

.map-text h3 {
    color: white;
    margin-bottom: 1rem;
}

.map-text p {
    margin-bottom: 1.5rem;
}

.map-placeholder {
    width: 100%;
    height: 100%;
}

.map-placeholder iframe {
    border: none;
    width: 100%;
    height: 100%;
}

.contact-form-section {
    padding: 5rem 0;
    background-color: #3C6E71;
    color: white;
    position: relative;
}

.contact-form-section h2, .contact-form-section .section-subtitle {
    color: white;
}

.contact-form-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.faq-section {
    padding: 5rem 0;
    background-color: #F5F5F5;
}

.faq-collapsible {
    border: none;
    box-shadow: none;
}

.faq-collapsible .collapsible-header {
    background-color: white;
    border: none;
    border-radius: 15px;
    margin-bottom: 1rem;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    color: #284B63;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-collapsible .collapsible-header:hover {
    background-color: #f9f9f9;
}

.faq-collapsible .collapsible-header i {
    margin-right: 1rem;
    color: #3C6E71;
    font-size: 1.5rem;
}

.faq-collapsible .collapsible-body {
    background-color: white;
    border: none;
    border-radius: 0 0 15px 15px;
    padding: 2rem;
    margin-top: -1rem;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

@media only screen and (max-width: 992px) {
    .contact-item {
        flex-direction: column;
    }
    
    .contact-icon {
        margin-bottom: 1rem;
        margin-right: 0;
    }
    
    .map-container {
        height: 350px;
        margin-top: 2rem;
    }
}

@media only screen and (max-width: 600px) {
    .map-container {
        height: 300px;
    }
    
    .faq-collapsible .collapsible-header {
        padding: 1rem;
    }
    
    .faq-collapsible .collapsible-body {
        padding: 1.5rem;
    }
}

/* ====== POLICY PAGES ====== */
.policy-header, .terms-of-use-header, .cookie-policy-header {
    background-color: #3C6E71;
}

.policy-section, .terms-of-use-section, .cookie-policy-section {
    padding: 5rem 0;
    background-color: #F5F5F5;
}

.policy-content, .terms-content, .cookie-policy-content {
    background-color: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.policy-intro, .terms-intro, .cookie-policy-intro {
    margin-bottom: 3rem;
}

.policy-section-item, .terms-section-item, .cookie-policy-section-item {
    margin-bottom: 3rem;
}

.policy-section-item:last-child, .terms-section-item:last-child, .cookie-policy-section-item:last-child {
    margin-bottom: 0;
}

.policy-section-item h2, .terms-section-item h2, .cookie-policy-section-item h2 {
    color: #3C6E71;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.cookie-types {
    margin-top: 2rem;
}

.cookie-type {
    margin-bottom: 2.5rem;
}

.cookie-type:last-child {
    margin-bottom: 0;
}

.cookie-type h3 {
    color: #3C6E71;
    margin-bottom: 1rem;
}

.cookie-type table {
    margin: 1.5rem 0;
}

.cookie-settings-button-container {
    margin: 2rem 0;
}

@media only screen and (max-width: 992px) {
    .policy-content, .terms-content, .cookie-policy-content {
        padding: 2rem;
    }
}

@media only screen and (max-width: 600px) {
    .policy-content, .terms-content, .cookie-policy-content {
        padding: 1.5rem;
    }
    
    .policy-section-item h2, .terms-section-item h2, .cookie-policy-section-item h2 {
        font-size: 1.5rem;
    }
}

/* ====== THANKS PAGE ====== */
.thanks-section {
    padding: 8rem 0;
    background-color: #F5F5F5;
    text-align: center;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    float: none !important;
}

.thanks-icon {
    font-size: 5rem;
    color: #4CAF50;
    margin-bottom: 2rem;
}

.thanks-section h1 {
    margin-bottom: 1.5rem;
    color: #3C6E71;
}

.thanks-section p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.thanks-buttons {
    margin-top: 3rem;
}

.thanks-buttons .btn-large {
    margin: 0 1rem 1rem;
}

.suggestions-section {
    padding: 5rem 0;
    background-color: #284B63;
    color: white;
    position: relative;
}

.suggestions-section h2 {
    color: white;
}

.suggestions-row {
    margin-top: 3rem;
}

.suggestion-card {
    margin-bottom: 2rem;
}

.suggestion-card .card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.suggestion-card .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.suggestion-card .card-content {
    padding: 2rem;
}

.suggestion-card .card-title {
    color: #3C6E71;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.suggestion-card p {
    margin-bottom: 1.5rem;
}

@media only screen and (max-width: 992px) {
    .thanks-section {
        padding: 6rem 0;
    }
    
    .thanks-icon {
        font-size: 4rem;
    }
    
    .thanks-section h1 {
        font-size: 2.5rem;
    }
}

@media only screen and (max-width: 600px) {
    .thanks-section {
        padding: 4rem 0;
    }
    
    .thanks-icon {
        font-size: 3rem;
    }
    
    .thanks-section h1 {
        font-size: 2rem;
    }
    
    .thanks-section p {
        font-size: 1.1rem;
    }
    
    .thanks-buttons .btn-large {
        display: block;
        margin: 0 auto 1rem;
        max-width: 80%;
    }
}