/* 
* Rutas Financieras - Main Stylesheet
* Theme: Brutalist with circular focal points
* Author: Creative Web Architect
* Version: 1.0
*/

/*---------------------------------*/
/* Base Styles & Typography        */
/*---------------------------------*/
:root {
    --primary-color: #8B1E3F;
    --secondary-color: #1A535C;
    --accent-color: #F4D35E;
    --text-color: #3D3D3D;
    --light-bg: #cacaca;
    --dark-bg: #212529;
    --sand-color: #F8F1E3;
    --jade-color: #4ECDC4;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Source Sans 3', sans-serif;
    
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --border-radius-circle: 50%;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--light-bg);
    margin: 0;
    padding: 0;
}

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

.section-title {
    position: relative;
    margin-bottom: 0.5rem;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.8;
}

.section-header {
    margin-bottom: 3rem;
    position: relative;
}

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

.btn {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    z-index: -1;
}

.btn:hover::after {
    height: 100%;
}

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

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: darken(var(--primary-color), 10%);
    border-color: darken(var(--primary-color), 10%);
    color: white;
}

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

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
    background-color: darken(var(--secondary-color), 10%);
    border-color: darken(var(--secondary-color), 10%);
    color: white;
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

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

/*---------------------------------*/
/* Layout & Containers             */
/*---------------------------------*/
.container {
    padding: 0 15px;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    padding: 5rem 0;
    position: relative;
}

section:nth-child(odd) {
    background-color: var(--light-bg);
}

section:nth-child(even) {
    background-color: white;
}

/*---------------------------------*/
/* Brutalist-inspired Elements     */
/*---------------------------------*/
.brutalist-block {
    position: relative;
    padding: 2rem;
    background-color: white;
    box-shadow: 15px 15px 0 var(--primary-color);
    margin-bottom: 2rem;
    border: 3px solid var(--dark-bg);
    transform: rotate(-1deg);
}

.brutalist-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.brutalist-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80%;
    height: 6px;
    background-color: var(--accent-color);
}

/*---------------------------------*/
/* Circular Focal Points           */
/*---------------------------------*/
.circular-frame {
    width: 300px;
    height: 300px;
    border-radius: var(--border-radius-circle);
    overflow: hidden;
    position: relative;
    background-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 0 auto;
}

.circular-container {
    width: 100%;
    max-width: 300px;
    height: 300px;
    border-radius: var(--border-radius-circle);
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

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

.content-image-circle {
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    position: relative;
    border-radius: var(--border-radius-circle);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.content-image-circle img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*---------------------------------*/
/* Header & Navigation             */
/*---------------------------------*/
.site-header {
    padding: 1rem 0;
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
}

.navbar-nav {
    margin-left: auto;
}

.nav-link {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1rem !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.animated-icon {
    width: 30px;
    height: 20px;
    position: relative;
    margin: 0px;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
}

.animated-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
    background-color: var(--primary-color);
}

.animated-icon span:nth-child(1) {
    top: 0px;
}

.animated-icon span:nth-child(2) {
    top: 10px;
}

.animated-icon span:nth-child(3) {
    top: 20px;
}

.animated-icon.open span:nth-child(1) {
    top: 11px;
    transform: rotate(135deg);
}

.animated-icon.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.animated-icon.open span:nth-child(3) {
    top: 11px;
    transform: rotate(-135deg);
}

/*---------------------------------*/
/* Hero Section                    */
/*---------------------------------*/
.hero-section {
    padding: 6rem 0;
    background-color: var(--sand-color);
    position: relative;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--accent-color) 2px, transparent 2px);
    background-size: 30px 30px;
    opacity: 0.2;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.hero-text {
    flex: 1;
    max-width: 600px;
    margin-right: 2rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 300px;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/*---------------------------------*/
/* Educational Resources Section   */
/*---------------------------------*/
.educational-section {
    background-color: white;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.resource-item {
    padding: 2rem;
    background-color: var(--light-bg);
    border-radius: var(--border-radius-md);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.resource-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.resource-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius-circle);
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.resource-icon i {
    font-size: 2rem;
    color: white;
}

.resource-item h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/*---------------------------------*/
/* Content Section                 */
/*---------------------------------*/
.content-section {
    padding: 6rem 0;
}

.content-image-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.content-text h2 {
    margin-bottom: 1.5rem;
}

.content-text ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.content-text li {
    margin-bottom: 0.5rem;
}

/*---------------------------------*/
/* Statistics Section              */
/*---------------------------------*/
.statistics-section {
    background-color: var(--secondary-color);
    color: white;
}

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

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

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

.stats-circle {
    width: 120px;
    height: 120px;
    border-radius: var(--border-radius-circle);
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}

.stats-item h3 {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.stats-item p {
    opacity: 0.9;
}

/*---------------------------------*/
/* Methodology Section             */
/*---------------------------------*/
.methodology-section {
    background-color: white;
}

.methodology-text {
    padding-right: 2rem;
}

.methodology-step {
    display: flex;
    margin-bottom: 2rem;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-circle);
    background-color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin-bottom: 0.5rem;
}

.methodology-image {
    position: relative;
}

.image-stack {
    position: relative;
}

.iti {
  width: 100%;
}

.image-stack__item {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.image-stack__item--top {
    width: 80%;
    z-index: 1;
    position: relative;
}

.image-stack__item--bottom {
    width: 80%;
    position: absolute;
    top: 20%;
    right: 0;
    z-index: 0;
}

/*---------------------------------*/
/* Trends Preview Section          */
/*---------------------------------*/
.trends-preview-section {
    background-color: var(--sand-color);
}

.trends-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.trend-item {
    padding: 2rem;
    background-color: white;
    border-radius: var(--border-radius-md);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.trend-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.trend-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--border-radius-circle);
    background-color: var(--jade-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.trend-icon i {
    font-size: 1.75rem;
    color: white;
}

.trend-item h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/*---------------------------------*/
/* Contact Form Section            */
/*---------------------------------*/
.contact-section {
    background-color: var(--light-bg);
    position: relative;
}

.contact-info {
    margin-bottom: 2rem;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.contact-item i {
    margin-right: 1rem;
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.contact-item p {
    margin-bottom: 0;
}

.contact-form-container {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.form-control {
    border-radius: 0;
    border: 1px solid #ddd;
    padding: 0.75rem 1rem;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/*---------------------------------*/
/* Footer                          */
/*---------------------------------*/
.site-footer {
    background-color: var(--dark-bg);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer-logo {
    flex: 1 1 300px;
    margin-bottom: 2rem;
}

.footer-logo-img {
    height: 60px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-links {
    flex: 2 1 600px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-links-column {
    flex: 1 1 200px;
    margin-bottom: 2rem;
}

.footer-links-column h3 {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-links-column h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent-color);
}

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

.footer-links-column ul li {
    margin-bottom: 0.75rem;
}

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

.footer-links-column ul li a:hover {
    color: var(--accent-color);
}

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

.footer-disclaimer {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

/*---------------------------------*/
/* Page Title Section              */
/*---------------------------------*/
.page-title-section {
    padding: 4rem 0;
    background-color: var(--sand-color);
    position: relative;
    overflow: hidden;
}

.page-title-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--accent-color) 2px, transparent 2px);
    background-size: 30px 30px;
    opacity: 0.2;
    z-index: 1;
}

.page-title-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

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

/*---------------------------------*/
/* Services Overview Section       */
/*---------------------------------*/
.services-overview-section {
    background-color: white;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2rem;
    background-color: var(--light-bg);
    border-radius: var(--border-radius-md);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--border-radius-circle);
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 1.75rem;
    color: white;
}

.service-card h3 {
    text-align: center;
    margin-bottom: 1rem;
}

.service-features {
    margin-top: auto;
    padding-left: 1.5rem;
}

.service-features li {
    margin-bottom: 0.5rem;
}

/*---------------------------------*/
/* Methodology Detailed Section    */
/*---------------------------------*/
.methodology-detailed-section {
    background-color: var(--light-bg);
}

.methodology-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.methodology-image-circle {
    width: 100%;
    max-width: 400px;
    height: 400px;
    border-radius: var(--border-radius-circle);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.methodology-detailed-content {
    margin-bottom: 2rem;
}

.methodology-accordion {
    margin-top: 2rem;
}

.accordion-button {
    font-weight: 600;
    color: var(--secondary-color);
    background-color: white;
    padding: 1.25rem;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: rgba(139, 30, 63, 0.05);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.accordion-item {
    border: 1px solid rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}

.accordion-body {
    padding: 1.5rem;
}

/*---------------------------------*/
/* Educational Materials Section   */
/*---------------------------------*/
.educational-materials-section {
    background-color: white;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.material-item {
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border-radius: var(--border-radius-md);
    background-color: var(--light-bg);
}

.material-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.material-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--border-radius-circle);
    background-color: var(--jade-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.material-icon i {
    font-size: 1.75rem;
    color: white;
}

.material-item h3 {
    margin-bottom: 1rem;
}

/*---------------------------------*/
/* Target Audience Section         */
/*---------------------------------*/
.target-audience-section {
    background-color: var(--sand-color);
}

.audience-circular-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 0;
}

.audience-circle-outer {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 600px;
}

.audience-circle-inner {
    width: 200px;
    height: 200px;
    background-color: var(--primary-color);
    border-radius: var(--border-radius-circle);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 2rem;
    z-index: 5;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.audience-circle-inner h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.audience-circle-inner p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.audience-item {
    width: 180px;
    position: absolute;
    background-color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.audience-item-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.audience-item-2 {
    top: 25%;
    right: 0;
}

.audience-item-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.audience-item-4 {
    top: 25%;
    left: 0;
}

.audience-item-5 {
    top: 65%;
    right: 10%;
}

.audience-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-circle);
    background-color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.audience-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.audience-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.audience-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/*---------------------------------*/
/* Call To Action Section          */
/*---------------------------------*/
.cta-section {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.cta-section p {
    color: var(--text-color);
    margin-bottom: 2rem;
    font-size: 1.2rem;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-color);
    font-weight: 700;
}

.cta-section .btn-primary:hover {
    background-color: white;
    border-color: white;
}

/*---------------------------------*/
/* Trends Intro Section            */
/*---------------------------------*/
.trends-intro-section {
    background-color: white;
}

.trends-intro-text {
    margin-bottom: 2rem;
}

.trends-intro-image {
    display: flex;
    justify-content: center;
}

/*---------------------------------*/
/* Major Trends Section            */
/*---------------------------------*/
.major-trends-section {
    background-color: var(--light-bg);
}

.trends-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.trend-card {
    background-color: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.trend-header {
    padding: 1.5rem;
    background-color: var(--secondary-color);
    color: white;
    display: flex;
    align-items: center;
}

.trend-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
}

.trend-icon i {
    font-size: 1.25rem;
    color: white;
}

.trend-header h3 {
    margin-bottom: 0;
    color: white;
    font-size: 1.3rem;
}

.trend-body {
    padding: 1.5rem;
}

.trend-stats {
    display: flex;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.stat-item {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 1rem;
    background-color: var(--sand-color);
    margin-right: 1rem;
    margin-bottom: 1rem;
    border-radius: var(--border-radius-sm);
}

.stat-item:last-child {
    margin-right: 0;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    line-height: 1.3;
}

.trend-implication {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.trend-implication h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

/*---------------------------------*/
/* Historical Analysis Section     */
/*---------------------------------*/
.historical-analysis-section {
    background-color: white;
}

.historical-image {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.timeline {
    position: relative;
    max-width: 600px;
    margin: 2rem auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    height: 100%;
    width: 4px;
    background-color: var(--accent-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 60px;
}

.timeline-dot {
    position: absolute;
    left: 10px;
    top: 5px;
    width: 24px;
    height: 24px;
    border-radius: var(--border-radius-circle);
    background-color: var(--primary-color);
    border: 4px solid var(--accent-color);
    z-index: 1;
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

/*---------------------------------*/
/* Consumer Behavior Section       */
/*---------------------------------*/
.consumer-behavior-section {
    background-color: var(--light-bg);
}

.factors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.factor-item {
    background-color: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.factor-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-circle);
    background-color: var(--jade-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto 1rem;
}

.factor-icon i {
    font-size: 1.5rem;
    color: white;
}

.factor-item h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 0 1.5rem;
}

.factor-content {
    padding: 0 1.5rem 2rem;
}

.factor-content ul {
    padding-left: 1.5rem;
}

.factor-content li {
    margin-bottom: 0.5rem;
}

/*---------------------------------*/
/* Data Visualization Section      */
/*---------------------------------*/
.data-visualization-section {
    background-color: white;
}

.chart-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.circular-chart {
    position: relative;
    width: 350px;
    height: 350px;
    border-radius: var(--border-radius-circle);
    background-color: var(--sand-color);
}

.chart-segment {
    position: absolute;
    text-align: center;
    width: 120px;
}

.segment-1 {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.segment-2 {
    top: 25%;
    right: 10%;
}

.segment-3 {
    top: 50%;
    right: 5%;
}

.segment-4 {
    bottom: 25%;
    right: 10%;
}

.segment-5 {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.segment-6 {
    bottom: 25%;
    left: 10%;
}

.segment-7 {
    top: 50%;
    left: 5%;
}

.segment-label {
    display: block;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.segment-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.chart-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: var(--border-radius-circle);
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    line-height: 1.3;
}

.chart-analysis h3 {
    margin-bottom: 1.5rem;
}

.key-observations {
    margin-top: 2rem;
}

.key-observations h4 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.key-observations ul {
    padding-left: 1.5rem;
}

.key-observations li {
    margin-bottom: 1rem;
}

.analysis-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--sand-color);
    border-radius: var(--border-radius-md);
}

/*---------------------------------*/
/* Future Trends Section           */
/*---------------------------------*/
.future-trends-section {
    background-color: var(--light-bg);
}

.future-trends-content {
    margin-bottom: 2rem;
}

.emerging-trends {
    margin-top: 2rem;
}

.emerging-trends .trend-item {
    margin-bottom: 1.5rem;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
}

.emerging-trends .trend-item:hover {
    transform: none;
}

.emerging-trends h3 {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.emerging-trends h3 i {
    margin-right: 1rem;
    color: var(--jade-color);
}

.future-trends-image {
    display: flex;
    justify-content: center;
}

/*---------------------------------*/
/* Practical Application Section   */
/*---------------------------------*/
.practical-application-section {
    background-color: white;
}

.application-steps {
    max-width: 800px;
    margin: 0 auto;
}

.application-step {
    display: flex;
    margin-bottom: 2.5rem;
}

.application-step:last-child {
    margin-bottom: 0;
}

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

.step-content {
    flex: 1;
}

.step-content h3 {
    margin-bottom: 0.75rem;
}

.step-tip {
    margin-top: 1rem;
    padding: 1rem;
    background-color: var(--sand-color);
    border-radius: var(--border-radius-sm);
    border-left: 4px solid var(--accent-color);
}

.step-tip p {
    margin-bottom: 0;
}

/*---------------------------------*/
/* Contact Info Section            */
/*---------------------------------*/
.contact-info-section {
    background-color: white;
}

.contact-info-content {
    margin-bottom: 2rem;
}

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

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

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-circle);
    background-color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.contact-text {
    flex: 1;
}

.contact-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

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

.contact-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--sand-color);
    border-radius: var(--border-radius-md);
}

.contact-note h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.contact-note p {
    margin-bottom: 0;
}

/*---------------------------------*/
/* Map Section                     */
/*---------------------------------*/
.map-section {
    background-color: var(--light-bg);
}

.map-container {
    margin-top: 2rem;
}

.map-wrapper {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.map-responsive {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
}

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

/*---------------------------------*/
/* FAQ Section                     */
/*---------------------------------*/
.faq-section {
    background-color: white;
}

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

/*---------------------------------*/
/* Legal Content Section           */
/*---------------------------------*/
.legal-content-section {
    background-color: white;
    padding: 4rem 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-introduction {
    margin-bottom: 2rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.legal-section ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-section li {
    margin-bottom: 0.75rem;
}

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

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

.cookie-table-wrapper {
    overflow-x: auto;
    margin-bottom: 1.5rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.cookie-table th,
.cookie-table td {
    padding: 0.75rem;
    border: 1px solid #ddd;
    text-align: left;
}

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

.cookie-preferences-form {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background-color: var(--light-bg);
    border-radius: var(--border-radius-md);
}

.cookie-settings-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

/*---------------------------------*/
/* Thank You Section               */
/*---------------------------------*/
.thank-you-section {
    padding: 6rem 0;
    background-color: var(--sand-color);
    text-align: center;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
}

.thank-you-icon {
    font-size: 5rem;
    color: var(--jade-color);
    margin-bottom: 2rem;
}

.thank-you-actions {
    margin-top: 2rem;
}

.thank-you-actions .btn {
    margin: 0 0.5rem 1rem;
}

/*---------------------------------*/
/* Related Resources Section       */
/*---------------------------------*/
.related-resources-section {
    background-color: white;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.resource-card {
    padding: 2rem;
    background-color: var(--light-bg);
    border-radius: var(--border-radius-md);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.resource-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--border-radius-circle);
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.resource-icon i {
    font-size: 1.75rem;
    color: white;
}

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

.resource-card p {
    flex-grow: 1;
}

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

.resource-link:hover {
    text-decoration: underline;
}

/*---------------------------------*/
/* Cookie Consent                  */
/*---------------------------------*/
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 9999;
    transition: bottom 0.5s ease;
}

.cookie-banner.show {
    bottom: 0;
}

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

.cookie-content h3 {
    margin-bottom: 1rem;
}

.cookie-options {
    margin: 1.5rem 0;
}

.cookie-option {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-description {
    margin-top: 0.25rem;
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #666;
}

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

.cookie-settings-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 9998;
    display: none;
}

.cookie-settings-button.show {
    display: block;
}

.cookie-settings-button i {
    margin-right: 0.5rem;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-tertiary {
    background-color: transparent;
    border: 1px solid #ddd;
    color: var(--text-color);
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-tertiary:hover {
    opacity: 0.9;
}

/*---------------------------------*/
/* Responsive Styles               */
/*---------------------------------*/
@media (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-text {
        margin-right: 0;
        margin-bottom: 2rem;
    }
    
    .hero-content {
        flex-direction: column;
    }
    
    .methodology-text {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .audience-circle-outer {
        height: auto;
        padding-bottom: 3rem;
    }
    
    .audience-circle-inner {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 0 auto 3rem;
    }
    
    .audience-item {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        transform: none;
        margin: 0 auto 1.5rem;
    }
}

@media (max-width: 767.98px) {
    section {
        padding: 3rem 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    .hero-section {
        padding: 4rem 0;
    }
    
    .stats-circle {
        width: 100px;
        height: 100px;
    }
    
    .stats-number {
        font-size: 1.75rem;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-logo {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: flex-start;
    }
    
    .circular-chart {
        width: 300px;
        height: 300px;
    }
    
    .chart-segment {
        width: 100px;
    }
    
    .segment-value {
        font-size: 1.25rem;
    }
    
    .application-step {
        flex-direction: column;
    }
    
    .step-number {
        margin-bottom: 1rem;
        margin-right: 0;
    }
    
    .cookie-actions {
        flex-direction: column;
    }
    
    .cookie-actions button {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .circular-frame,
    .circular-container {
        width: 250px;
        height: 250px;
    }
    
    .content-image-circle {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .stats-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .trends-grid,
    .services-container,
    .materials-grid,
    .factors-grid,
    .trends-container,
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .circular-chart {
        width: 250px;
        height: 250px;
    }
    
    .chart-segment {
        width: 80px;
    }
    
    .segment-label {
        font-size: 0.8rem;
    }
    
    .segment-value {
        font-size: 1rem;
    }
    
    .chart-center {
        width: 80px;
        height: 80px;
        font-size: 0.8rem;
    }
}