/* 
 * DataSafeGuardia - Estilos principales
 * Última actualización: Julio 2025
 * Estilo principal: hand-drawn-aesthetic
 */

/* ==============================
 * Variables y configuración
 * ============================== */
:root {
    /* Paleta de colores */
    --primary-color: #3E64FF;         /* Azul profundo */
    --secondary-color: #FF6B6B;       /* Rojo coral */
    --accent-color: #FFD166;          /* Amarillo dorado */
    --bg-color-light: #F9F7F7;        /* Blanco hueso */
    --bg-color-alt: #E3F2FD;          /* Azul muy claro */
    --text-color-dark: #2B2D42;       /* Azul grisáceo oscuro */
    --text-color-medium: #586069;     /* Gris medio */
    --text-color-light: #F9F7F7;      /* Blanco hueso (para fondos oscuros) */
    
    /* Bordes estilo hand-drawn */
    --border-irregular: 3px solid var(--text-color-dark);
    --border-radius-irregular: 12px 8px 14px 10px;
    
    /* Sombras */
    --shadow-subtle: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 8px 30px rgba(0, 0, 0, 0.18);
    
    /* Tipografía */
    --heading-font: 'Merriweather', serif;
    --body-font: 'Open Sans', sans-serif;
    
    /* Espaciado */
    --section-spacing: 4rem;
    --element-spacing: 2rem;
    
    /* Animaciones */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
}

/* ==============================
 * Estilos generales
 * ============================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color-dark);
    background-color: var(--bg-color-light);
    overflow-x: hidden;
}

[type="checkbox"]:not(:checked), [type="checkbox"]:checked {
  position: relative;
  opacity: 1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-color-dark);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--secondary-color);
}

p {
    margin-bottom: 1.2rem;
}

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

img {
    max-width: 100%;
    height: auto;
}

.btn, .btn-large {
    background-color: var(--primary-color);
    border-radius: var(--border-radius-irregular);
    box-shadow: var(--shadow-subtle);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.5px;
}

.btn:hover, .btn-large:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

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

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

.btn-flat {
    color: var(--text-color-medium);
}

.btn-flat:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--text-color-dark);
}

.w-100 {
    width: 100%;
}

.divider {
    margin: 2rem 0;
}

.hand-drawn {
    font-family: var(--heading-font);
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.hand-drawn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent-color);
    transform: rotate(-0.5deg);
}

.hand-drawn-border {
    border: var(--border-irregular);
    border-radius: var(--border-radius-irregular);
    position: relative;
    overflow: hidden;
}

.hand-drawn-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid transparent;
    border-radius: var(--border-radius-irregular);
    pointer-events: none;
}

.section-title {
    margin-bottom: 2.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.large-text {
    font-size: 1.2rem;
    line-height: 1.8;
    font-weight: 500;
    color: var(--text-color-dark);
}

.small-text {
    font-size: 0.9rem;
    color: var(--text-color-medium);
}

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

/* ==============================
 * Navegación
 * ============================== */
.nav-wrapper {
    background-color: #fff;
    box-shadow: var(--shadow-subtle);
    padding: 0 1rem;
}

.brand-logo {
    padding: 10px 0;
    height: 56px;
}

.brand-logo img {
    height: 100%;
    width: auto;
}

.main-nav li a {
    color: var(--text-color-dark);
    font-weight: 600;
    position: relative;
}

.main-nav li.active a,
.main-nav li a:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.main-nav li.active a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px 2px 0 0;
}

.sidenav {
    padding-top: 1rem;
}

.sidenav li > a {
    font-weight: 600;
    color: var(--text-color-dark);
}

.sidenav li.active > a {
    color: var(--primary-color);
    background-color: rgba(62, 100, 255, 0.05);
}

.sidenav-trigger {
    color: var(--text-color-dark);
}

.sidenav .user-view {
    padding: 20px 20px 0;
}

.sidenav .user-view img {
    max-height: 60px;
    margin-bottom: 20px;
}

/* ==============================
 * Cookie Banner
 * ============================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform var(--transition-medium);
}

.cookie-banner.active {
    transform: translateY(0);
}

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

.cookie-header {
    margin-bottom: 1.5rem;
}

.cookie-header h4 {
    margin-bottom: 0.5rem;
    color: var(--text-color-dark);
}

.cookie-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cookie-option {
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.cookie-option p {
    margin-top: 0.5rem;
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-color-medium);
}

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

.cookie-settings-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    transform: scale(0);
    transition: opacity var(--transition-medium), transform var(--transition-medium);
}

.cookie-settings-btn.active {
    opacity: 1;
    transform: scale(1);
}

.cookie-settings-btn i {
    font-size: 1.5rem;
}

/* ==============================
 * Hero Section
 * ============================== */
.hero-section {
    position: relative;
    margin-top: -64px;
}

.parallax-container {
    height: 80vh;
    min-height: 500px;
    background-color: rgba(0, 0, 0, 0.3);
    position: relative;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 90%;
    max-width: 800px;
    z-index: 10;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-content .btn-large {
    margin-top: 1rem;
    padding: 0 2rem;
    height: 54px;
    line-height: 54px;
    font-size: 1.1rem;
}

/* ==============================
 * Intro Section
 * ============================== */
.intro-section {
    padding: 5rem 0;
    position: relative;
}

.intro-card {
    background-color: white;
    padding: 3rem;
    border-radius: var(--border-radius-irregular);
    box-shadow: var(--shadow-medium);
    text-align: center;
    position: relative;
    border: var(--border-irregular);
}

/* ==============================
 * Features Section
 * ============================== */
.features-section {
    padding: 5rem 0;
    position: relative;
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.feature-card {
    transition: transform var(--transition-medium);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card .card {
    height: 100%;
    margin: 0;
    overflow: hidden;
}

.feature-card .card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.feature-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

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

.overlay-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    box-shadow: var(--shadow-subtle);
}

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

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

/* ==============================
 * Statistics Section
 * ============================== */
.statistics-section {
    padding: 5rem 0;
    background-color: var(--primary-color);
    color: white;
    position: relative;
}

.statistics-section .section-title {
    color: white;
}

.statistics-section .section-title::after {
    background-color: var(--accent-color);
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-irregular);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: transform var(--transition-medium);
}

.stat-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: var(--heading-font);
}

.stat-desc {
    font-size: 1rem;
}

/* ==============================
 * Tips Carousel Section
 * ============================== */
.tips-section {
    padding: 5rem 0;
    position: relative;
}

.tips-carousel {
    margin-top: 2rem;
}

.carousel-cell {
    width: 100%;
    padding: 10px;
}

@media screen and (min-width: 768px) {
    .carousel-cell {
        width: 50%;
    }
}

@media screen and (min-width: 992px) {
    .carousel-cell {
        width: 33.333%;
    }
}

.tip-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius-irregular);
    box-shadow: var(--shadow-medium);
    height: 100%;
    border: var(--border-irregular);
    text-align: center;
}

.tip-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.tip-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

/* ==============================
 * Education Section
 * ============================== */
.education-section {
    padding: 5rem 0;
    position: relative;
}

.education-content {
    padding: 2rem;
}

.education-image {
    margin-top: 2rem;
}

.education-image img {
    border-radius: var(--border-radius-irregular);
}

/* ==============================
 * Contact Form Section
 * ============================== */
.contact-section {
    padding: 5rem 0;
    position: relative;
}

.contact-card {
    background-color: white;
    padding: 2rem;
}

.contact-card h2 {
    margin-bottom: 2rem;
}

.input-field {
    margin-bottom: 1.5rem;
}

.input-field .prefix {
    color: var(--primary-color);
}

.input-field label {
    color: var(--text-color-medium);
}

.input-field input:focus + label,
.input-field textarea:focus + label {
    color: var(--primary-color) !important;
}

.input-field input:focus,
.input-field textarea:focus {
    border-bottom: 1px solid var(--primary-color) !important;
    box-shadow: 0 1px 0 0 var(--primary-color) !important;
}

/* ==============================
 * Footer
 * ============================== */
.page-footer {
    background-color: var(--text-color-dark);
    padding-top: 4rem;
    margin-top: 0;
}

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

.page-footer p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

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

.footer-address,
.footer-phone {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-address i,
.footer-phone i {
    margin-right: 0.8rem;
    margin-top: 0.3rem;
}

.footer-disclaimer {
    margin-top: 2rem;
}

.footer-copyright {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    margin-top: 3rem;
}

.footer-copyright p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
}

/* ==============================
 * Page Title Section
 * ============================== */
.page-title-section {
    background-color: var(--bg-color-alt);
    padding: 5rem 0 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

.page-title-section h1 {
    margin-bottom: 1rem;
}

.breadcrumbs {
    color: var(--text-color-medium);
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: var(--text-color-medium);
}

.breadcrumbs a:hover {
    color: var(--primary-color);
}

.breadcrumbs i {
    font-size: 0.8rem;
    margin: 0 0.5rem;
}

/* ==============================
 * Mission Section (Why We Do It)
 * ============================== */
.mission-section {
    padding: 4rem 0;
}

.mission-content {
    padding: 2rem;
}

.mission-image img {
    border-radius: var(--border-radius-irregular);
}

/* ==============================
 * Problem Section (Why We Do It)
 * ============================== */
.problem-section {
    padding: 5rem 0;
    position: relative;
}

.problem-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.problem-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius-irregular);
    box-shadow: var(--shadow-subtle);
    text-align: center;
    height: 100%;
    border: var(--border-irregular);
}

.problem-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.problem-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

/* ==============================
 * Values Section (Why We Do It)
 * ============================== */
.values-section {
    padding: 5rem 0;
    position: relative;
}

.values-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
    height: 800px;
}

.values-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-color: var(--accent-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 100%;
}

.timeline-icon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: white;
    border: var(--border-irregular);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    z-index: 2;
}

.timeline-content {
    position: relative;
    width: 45%;
    padding: 1.5rem;
    background-color: white;
    border-radius: var(--border-radius-irregular);
    box-shadow: var(--shadow-subtle);
    border: var(--border-irregular);
}

.timeline-content h3 {
    margin-bottom: 0.8rem;
}

.timeline-content.left {
    margin-left: auto;
}

.timeline-content.right {
    margin-right: auto;
}

/* ==============================
 * Impact Section (Why We Do It)
 * ============================== */
.impact-section {
    padding: 5rem 0;
    position: relative;
}

.impact-image img {
    border-radius: var(--border-radius-irregular);
    margin-bottom: 2rem;
}

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

.impact-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 1.5rem;
    box-shadow: var(--shadow-subtle);
}

.impact-text h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.impact-text p {
    margin-bottom: 0;
}

/* ==============================
 * Team Section (Why We Do It)
 * ============================== */
.team-section {
    padding: 5rem 0;
    position: relative;
}

.team-intro {
    margin-bottom: 3rem;
}

.expertise-areas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.expertise-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius-irregular);
    box-shadow: var(--shadow-subtle);
    text-align: center;
    height: 100%;
    border: var(--border-irregular);
    transition: transform var(--transition-medium);
}

.expertise-card:hover {
    transform: translateY(-5px);
}

.expertise-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.expertise-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

/* ==============================
 * CTA Section
 * ============================== */
.cta-section {
    padding: 5rem 0;
    position: relative;
}

.cta-card {
    background-color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.cta-card h2 {
    margin-bottom: 1.5rem;
}

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

.cta-card .btn-large {
    margin-top: 1rem;
}

/* ==============================
 * Filter Section (Digital Tips)
 * ============================== */
.filter-section {
    padding: 1rem 0 3rem;
}

.filter-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.filter-label {
    margin-bottom: 1rem;
    font-weight: 600;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.filter-btn {
    padding: 0.5rem 1rem;
    background-color: var(--bg-color-alt);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius-irregular);
    color: var(--text-color-dark);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
}

/* ==============================
 * Tips Grid Section (Digital Tips)
 * ============================== */
.tips-grid-section {
    padding: 3rem 0 5rem;
}

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

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

.tip-item .card {
    height: 100%;
    margin: 0;
}

.card-image {
    position: relative;
}

.card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.privacy-badge {
    background-color: var(--primary-color);
}

.phishing-badge {
    background-color: var(--secondary-color);
}

.passwords-badge {
    background-color: #6C63FF;
}

.devices-badge {
    background-color: #4CAF50;
}

.tip-steps,
.tip-warning,
.tip-best-practices,
.tip-checklist,
.tip-dos-donts,
.tip-table,
.tip-info-box,
.tip-accordion,
.tip-features {
    margin-top: 1.5rem;
    border-top: 2px dashed #e0e0e0;
    padding-top: 1.5rem;
}

.tip-steps h4,
.tip-warning h4,
.tip-best-practices h4,
.tip-checklist h4,
.tip-dos-donts h4,
.tip-table h4,
.tip-info-box h4,
.tip-accordion h4,
.tip-features h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.tip-warning {
    background-color: rgba(255, 107, 107, 0.1);
    padding: 1rem;
    border-radius: 8px;
}

.tip-warning h4 {
    color: var(--secondary-color);
}

.tip-warning i {
    margin-right: 0.5rem;
}

.tip-dos-donts {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.dos, .donts {
    flex: 1;
    min-width: 200px;
    padding: 1rem;
    border-radius: 8px;
}

.dos {
    background-color: rgba(76, 175, 80, 0.1);
}

.donts {
    background-color: rgba(255, 107, 107, 0.1);
}

.dos h4 {
    color: #4CAF50;
}

.donts h4 {
    color: var(--secondary-color);
}

.dos i, .donts i {
    margin-right: 0.5rem;
}

.tip-info-box {
    background-color: rgba(62, 100, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
}

.tip-info-box h4 {
    color: var(--primary-color);
}

.tip-info-box i {
    margin-right: 0.5rem;
}

.tip-accordion .accordion-item {
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #f9f9f9;
    cursor: pointer;
}

.accordion-header h4 {
    margin: 0;
}

.accordion-header i {
    transition: transform var(--transition-fast);
}

.accordion-content {
    padding: 0 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-item.active .accordion-content {
    padding: 1rem;
    max-height: 500px;
}

.checklist-item {
    margin-bottom: 0.8rem;
}

.feature-item {
    display: flex;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background-color: var(--bg-color-alt);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 1rem;
}

.feature-desc h5 {
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.feature-desc p {
    margin: 0;
    font-size: 0.9rem;
}

/* ==============================
 * Resources Section (Digital Tips)
 * ============================== */
.resources-section {
    padding: 5rem 0;
    position: relative;
}

.resources-container {
    margin-top: 3rem;
}

.resource-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius-irregular);
    box-shadow: var(--shadow-subtle);
    height: 100%;
    border: var(--border-irregular);
    text-align: center;
}

.resource-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.resource-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.resource-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    text-align: left;
}

.resource-list li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.resource-list li::before {
    content: "\f0c1";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.2rem;
    font-size: 0.8rem;
    color: var(--primary-color);
}

/* ==============================
 * Contact Info Section (Contacts)
 * ============================== */
.contact-info-section {
    padding: 4rem 0;
}

.contact-details {
    padding: 2rem 0;
}

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

.method-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background-color: var(--bg-color-alt);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 1.5rem;
}

.method-details h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.method-details p {
    margin-bottom: 0.3rem;
}

/* ==============================
 * Map Section (Contacts)
 * ============================== */
.map-section {
    padding: 3rem 0 5rem;
}

.map-container {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ==============================
 * FAQ Section (Contacts)
 * ============================== */
.faq-section {
    padding: 5rem 0;
    position: relative;
}

.faq-container {
    margin-top: 3rem;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background-color: white;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
}

.faq-question i {
    transition: transform var(--transition-fast);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
}

.faq-item.active .faq-question {
    background-color: var(--bg-color-alt);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 1000px;
}

/* ==============================
 * Policy Content Section
 * ============================== */
.policy-content-section {
    padding: 3rem 0 5rem;
}

.policy-update {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.policy-introduction {
    margin-bottom: 3rem;
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.policy-section h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-list {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.policy-list li {
    margin-bottom: 0.8rem;
}

.cookie-table-wrapper,
.purpose-table-wrapper {
    margin: 2rem 0;
    overflow-x: auto;
}

.cookie-table,
.purpose-table {
    width: 100%;
    border-collapse: collapse;
}

.cookie-table th,
.cookie-table td,
.purpose-table th,
.purpose-table td {
    padding: 0.8rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-table th,
.purpose-table th {
    background-color: var(--bg-color-alt);
    font-weight: 600;
}

/* ==============================
 * Thanks Page
 * ============================== */
.thanks-section {
    padding: 5rem 0;
    position: relative;
}

.thanks-card {
    background-color: white;
    padding: 3rem 2rem;
    text-align: center;
}

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

.thanks-card h1 {
    margin-bottom: 1.5rem;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

/* ==============================
 * Highlights Section (Thanks Page)
 * ============================== */
.highlights-section {
    padding: 5rem 0;
    position: relative;
}

.highlight-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius-irregular);
    box-shadow: var(--shadow-subtle);
    height: 100%;
    border: var(--border-irregular);
    text-align: center;
    margin-bottom: 2rem;
    transition: transform var(--transition-medium);
}

.highlight-card:hover {
    transform: translateY(-5px);
}

.highlight-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.highlight-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.highlight-link {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.highlight-link i {
    transition: transform var(--transition-fast);
}

.highlight-link:hover i {
    transform: translateX(3px);
}

/* ==============================
 * Newsletter Section (Thanks Page)
 * ============================== */
.newsletter-section {
    padding: 3rem 0 5rem;
}

.newsletter-card {
    background-color: white;
    padding: 2rem;
}

.newsletter-card h2 {
    margin-bottom: 1.5rem;
}

.newsletter-card p {
    margin-bottom: 2rem;
}

/* ==============================
 * Responsive Adjustments
 * ============================== */
@media only screen and (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .values-timeline::before {
        left: 30px;
    }

    .values-timeline {
      height: 1400px;
    }
    
    .timeline-icon {
        left: 30px;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
    }
    
    .contact-method {
        flex-direction: column;
    }
    
    .method-icon {
        margin-bottom: 1rem;
        margin-right: 0;
    }
}

@media only screen and (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .intro-card,
    .contact-card,
    .tip-card,
    .cta-card,
    .thanks-card {
        padding: 1.5rem;
    }
    
    .tip-dos-donts {
        flex-direction: column;
    }
    
    .cookie-options {
        grid-template-columns: 1fr;
    }
    
    .cookie-actions {
        flex-direction: column;
    }
    
    .cookie-actions button {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

@media only screen and (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .section-spacing {
        padding: 3rem 0;
    }
    
    .stats-container,
    .features-container,
    .problem-container {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .impact-item {
        flex-direction: column;
    }
    
    .impact-icon {
        margin-bottom: 1rem;
        margin-right: 0;
    }
    
    .filter-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .filter-btn {
        width: 100%;
        text-align: center;
    }
    
    .thanks-actions {
        flex-direction: column;
    }
    
    .thanks-actions .btn {
        width: 100%;
    }
}