/* ======== FONTS & TYPOGRAPHY ======== */
:root {
    --font-primary: 'Karla', sans-serif;
    --font-secondary: 'Spectral', serif;
    
    /* Colors */
    --color-primary: #3A6EA5;
    --color-primary-light: #5485BD;
    --color-primary-dark: #2E5783;
    --color-secondary: #FF6B35;
    --color-secondary-light: #FF8A5F;
    --color-secondary-dark: #E25A25;
    --color-accent: #2E5EAA;
    --color-text-primary: #1E3A59;
    --color-text-secondary: #566B8D;
    --color-text-tertiary: #91A2B8;
    --color-bg-light: #F7F9FC;
    --color-bg-white: #FFFFFF;
    --color-bg-soft: #EEF2F7;
    --color-highlight-teal: #44C9A5;
    --color-highlight-purple: #7A4EAB;
    
    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --border-radius-xxl: 32px;
    
    /* Box Shadow */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ======== BASE STYLES ======== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

canvas {
  height: 300px !important;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

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

p {
    margin-bottom: 1rem;
}

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

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

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

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

button {
    cursor: pointer;
}

.highlight {
    color: var(--color-secondary);
}

section {
    padding: 5rem 0;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.35rem;
    }
}

/* ======== BUTTONS ======== */
.btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: var(--border-radius-md);
    transition: all var(--transition-normal);
}

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

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: white;
    box-shadow: 0 4px 12px rgba(58, 110, 165, 0.2);
}

.btn-outline-secondary {
    background-color: transparent;
    border-color: var(--color-text-secondary);
    color: var(--color-text-secondary);
}

.btn-outline-secondary:hover, .btn-outline-secondary:focus {
    background-color: var(--color-text-secondary);
    color: white;
    box-shadow: 0 4px 12px rgba(86, 107, 141, 0.15);
}

.btn-link {
    color: var(--color-primary);
    text-decoration: none;
    background-color: transparent;
    border: none;
    padding: 0.5rem 0;
    font-weight: 500;
}

.btn-link:hover, .btn-link:focus {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-block {
    display: block;
    width: 100%;
}

@media (max-width: 768px) {
    .btn {
        padding: 0.6rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* ======== HEADER & NAVIGATION ======== */
.site-header {
    background-color: white;
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.navbar-nav {
    gap: 1.5rem;
}

.nav-link {
    color: var(--color-text-primary);
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link:focus, .nav-link.active {
    color: var(--color-primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: white;
        padding: 1rem;
        border-radius: var(--border-radius-md);
        box-shadow: var(--shadow-md);
        margin-top: 1rem;
    }
    
    .navbar-nav {
        gap: 0.5rem;
    }
    
    .nav-link.active::after {
        display: none;
    }
    
    .nav-link.active {
        background-color: var(--color-bg-light);
        border-radius: var(--border-radius-sm);
        padding: 0.5rem 1rem;
    }
}

/* ======== COOKIE CONSENT BANNER ======== */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-bg-white);
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: none;
}

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

.cookie-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

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

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

/* Cookie Settings Modal */
.cookie-settings-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    overflow-y: auto;
    padding: 2rem 1rem;
}

.cookie-settings-content {
    background-color: white;
    border-radius: var(--border-radius-lg);
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    position: relative;
}

.close-cookie-settings {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.5rem;
    cursor: pointer;
}

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

.cookie-category {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-bg-soft);
}

.cookie-category:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

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

.cookie-category-header h4 {
    margin-bottom: 0;
}

.cookie-settings-buttons {
    text-align: center;
    margin-top: 1.5rem;
}

/* Switch Styling */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.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: var(--transition-normal);
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: var(--transition-normal);
}

input:checked + .slider {
    background-color: var(--color-primary);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--color-primary);
}

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

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

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

@media (max-width: 576px) {
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-settings-content {
        padding: 1.5rem;
    }
}

/* ======== HERO SECTION ======== */
.hero-section {
    position: relative;
    padding: 7rem 0 9rem;
    background-color: var(--color-bg-light);
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-5deg);
}

.floating-stat {
    position: absolute;
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: 1rem;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
}

.floating-stat-1 {
    top: -20px;
    right: 20%;
    animation: float 4s ease-in-out infinite;
}

.floating-stat-2 {
    bottom: 10%;
    left: -40px;
    animation: float 4s ease-in-out infinite;
    animation-delay: 1s;
}

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

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    text-align: center;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        padding: 5rem 0 7rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-image-wrapper {
        margin-top: 3rem;
    }
    
    .floating-stat {
        min-width: 100px;
        padding: 0.75rem;
    }
    
    .floating-stat-1 {
        top: -10px;
        right: 10%;
    }
    
    .floating-stat-2 {
        bottom: 10%;
        left: -20px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
}

/* ======== SECTION HEADERS ======== */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
}

.section-subtitle {
    display: inline-block;
    background-color: rgba(58, 110, 165, 0.1);
    color: var(--color-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.title-decoration {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.title-decoration span {
    display: inline-block;
    height: 4px;
    border-radius: 2px;
}

.title-decoration span:nth-child(1) {
    background-color: var(--color-primary);
    width: 30px;
}

.title-decoration span:nth-child(2) {
    background-color: var(--color-secondary);
    width: 15px;
}

.title-decoration span:nth-child(3) {
    background-color: var(--color-highlight-teal);
    width: 8px;
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}

.iti {
  width: 100%;
}

/* ======== INTRO SECTION ======== */
.intro-section {
    background-color: var(--color-bg-white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.intro-text h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
}

.custom-list {
    list-style: none;
    padding-left: 0;
}

.custom-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
}

.custom-list li i {
    position: absolute;
    left: 0;
    top: 0.3rem;
    color: var(--color-highlight-teal);
}

.video-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 70%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.video-info h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.video-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-size: 0.9rem;
}

@media (max-width: 991.98px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .intro-video {
        order: -1;
    }
}

/* ======== BENEFITS SECTION ======== */
.benefits-section {
    background-color: var(--color-bg-light);
    position: relative;
    overflow: hidden;
}

.benefits-container {
    position: relative;
    z-index: 2;
}

.benefit-card {
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(58, 110, 165, 0.1);
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--color-text-secondary);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .benefit-card {
        padding: 1.5rem;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* ======== INSIGHTS SECTION ======== */
.insights-section {
    background-color: var(--color-bg-white);
    position: relative;
}

.insights-image {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.insights-content {
    padding: 2rem;
}

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

.stat-item {
    background-color: var(--color-bg-light);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    text-align: center;
}

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

.stat-label {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

@media (max-width: 991.98px) {
    .insights-content {
        padding: 1rem 0;
        margin-top: 2rem;
    }
    
    .stat-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .stat-grid {
        grid-template-columns: 1fr;
    }
}

/* ======== MODELS OVERVIEW SECTION ======== */
.models-overview-section {
    background-color: var(--color-bg-light);
}

.model-card {
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.model-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.model-content {
    padding: 1.5rem;
}

.model-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.model-content p {
    color: var(--color-text-secondary);
    margin-bottom: 1.25rem;
}

@media (max-width: 991.98px) {
    .model-image img {
        height: 180px;
    }
}

/* ======== RESOURCES SECTION ======== */
.resources-section {
    background-color: var(--color-bg-white);
    position: relative;
}

.resources-content {
    padding: 2rem 0;
}

.resource-categories {
    margin: 2rem 0;
}

.resource-category {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
}

.resource-category i {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.resource-category h4 {
    margin-bottom: 0.5rem;
}

.resources-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.resources-image-item {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.resources-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.resources-image-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 991.98px) {
    .resources-content {
        margin-bottom: 2rem;
    }
}

/* ======== DATA-DRIVEN SECTION ======== */
.data-driven-section {
    background-color: var(--color-bg-light);
}

.data-driven-text {
    padding: 2rem 0;
}

.process-steps {
    margin-top: 2rem;
}

.process-step {
    display: flex;
    margin-bottom: 1.5rem;
}

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

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

.step-content p {
    margin-bottom: 0;
    color: var(--color-text-secondary);
}

@media (max-width: 991.98px) {
    .data-driven-section img {
        margin-bottom: 2rem;
    }
}

/* ======== GROWTH SECTION ======== */
.growth-section {
    background-color: var(--color-bg-white);
}

.growth-image-container {
    position: relative;
}

.growth-image {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.growth-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.metric-item {
    background-color: var(--color-bg-light);
    border-radius: var(--border-radius-md);
    padding: 1.25rem;
    text-align: center;
}

.metric-item h3 {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.metric-item p {
    margin-bottom: 0;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

.chart-container {
    height: 300px;
    margin: 2rem 0;
}

.chart-caption {
    text-align: center;
    color: var(--color-text-tertiary);
    font-size: 0.9rem;
    font-style: italic;
}

@media (max-width: 991.98px) {
    .growth-text {
        margin-bottom: 2rem;
    }
}

/* ======== CONTACT FORM SECTION ======== */
.contact-form-section {
    background-color: var(--color-bg-light);
}

.contact-image-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.contact-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    padding: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: white;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item i {
    margin-right: 0.75rem;
    color: var(--color-secondary);
}

.contact-form {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-text-primary);
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: var(--border-radius-md);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
    border-color: var(--color-primary-light);
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(58, 110, 165, 0.25);
}

.form-check {
    padding-left: 1.5rem;
    position: relative;
}

.form-check-input {
    position: absolute;
    margin-top: 0.3rem;
    margin-left: -1.5rem;
}

.form-check-label {
    margin-bottom: 0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .contact-form {
        padding: 1.5rem;
    }
}

/* ======== FOOTER ======== */
.site-footer {
    background-color: var(--color-text-primary);
    color: #fff;
    padding: 4rem 0 1.5rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.footer-heading {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-secondary);
}

.footer-links, .footer-contact {
    list-style: none;
    padding-left: 0;
}

.footer-links li, .footer-contact li {
    margin-bottom: 0.75rem;
}

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

.footer-links a:hover {
    color: #fff;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    color: var(--color-secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 3rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content > .row > div {
        margin-bottom: 2rem;
    }
}

/* ======== PAGE HERO SECTION ======== */
.page-hero-section {
    background-color: var(--color-bg-light);
    padding: 5rem 0;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    max-width: 600px;
}

.page-hero-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 991.98px) {
    .page-hero-section {
        padding: 3rem 0;
    }
    
    .page-title {
        font-size: 2.25rem;
    }
    
    .page-hero-image {
        margin-top: 2rem;
    }
}

/* ======== RESOURCES PAGE STYLES ======== */
.resources-intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
}

.resource-tip {
    text-align: center;
    padding: 2rem;
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.resource-tip:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.tip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(58, 110, 165, 0.1);
    color: var(--color-primary);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.resource-tip h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.resource-tip p {
    color: var(--color-text-secondary);
    margin-bottom: 0;
}

/* Books Section */
.books-grid {
    margin-top: 3rem;
}

.book-card {
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.book-cover {
    height: 200px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-cover-inner {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    text-align: center;
    width: 100%;
}

.book-cover h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.book-author {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.book-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.book-description {
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.book-meta {
    display: flex;
    justify-content: space-between;
    color: var(--color-text-tertiary);
    font-size: 0.9rem;
}

.book-meta span {
    display: flex;
    align-items: center;
}

.book-meta i {
    margin-right: 0.5rem;
}

/* Courses Section */
.course-card {
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 100%;
    margin-bottom: 2rem;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.course-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--color-bg-soft);
    position: relative;
}

.course-level {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
}

.course-level.beginner {
    background-color: rgba(68, 201, 165, 0.1);
    color: var(--color-highlight-teal);
}

.course-level.intermediate {
    background-color: rgba(58, 110, 165, 0.1);
    color: var(--color-primary);
}

.course-level.advanced {
    background-color: rgba(122, 78, 171, 0.1);
    color: var(--color-highlight-purple);
}

.course-title {
    font-size: 1.25rem;
    margin-bottom: 0;
    padding-right: 120px;
}

.course-content {
    padding: 1.5rem;
}

.course-description {
    color: var(--color-text-secondary);
    margin-bottom: 1.25rem;
}

.course-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.course-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--color-text-secondary);
}

.course-features li i {
    margin-right: 0.75rem;
    color: var(--color-primary);
}

.course-footer {
    border-top: 1px solid var(--color-bg-soft);
    padding-top: 1.25rem;
}

.course-rating {
    display: flex;
    align-items: center;
    color: var(--color-text-secondary);
}

.course-rating i {
    color: #FFD700;
    margin-right: 0.25rem;
}

.course-rating span {
    margin-left: 0.5rem;
    font-size: 0.9rem;
}

/* Tools Section */
.tool-category {
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    height: 100%;
    margin-bottom: 2rem;
}

.category-title {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.category-title i {
    margin-right: 0.75rem;
}

.tool-item {
    border-bottom: 1px solid var(--color-bg-soft);
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
}

.tool-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

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

.tool-item p {
    color: var(--color-text-secondary);
    margin-bottom: 0.75rem;
}

.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tool-features span {
    background-color: var(--color-bg-light);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--color-text-secondary);
}

/* Learning Path Section */
.learning-path-section {
    background-color: var(--color-bg-light);
}

.path-timeline {
    position: relative;
    padding-left: 2rem;
}

.path-timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--color-bg-soft);
}

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

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -2rem;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--color-primary);
    border: 4px solid white;
    z-index: 1;
}

.timeline-content {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

.timeline-resources {
    margin-top: 1rem;
    background-color: var(--color-bg-light);
    padding: 1rem;
    border-radius: var(--border-radius-md);
}

.timeline-resources span {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.timeline-resources ul {
    margin-bottom: 0;
}

/* Additional Resources Section */
.resource-card {
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    height: 100%;
    margin-bottom: 2rem;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.resource-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(58, 110, 165, 0.1);
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

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

.resource-list {
    margin-bottom: 1rem;
}

.resource-card p {
    color: var(--color-text-secondary);
    margin-bottom: 0;
}

/* Newsletter Section */
.newsletter-section {
    background-color: var(--color-bg-white);
    padding-bottom: 0;
    margin-bottom: 80px;
}

.newsletter-container {
    background-color: var(--color-primary);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    color: white;
    box-shadow: var(--shadow-lg);
}

.newsletter-content h2 {
    color: white;
    margin-bottom: 1.25rem;
}

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

.newsletter-form .input-group {
    margin-bottom: 1rem;
}

.newsletter-form .form-check-label {
    color: rgba(255, 255, 255, 0.9);
}

.newsletter-form .form-check-label a {
    color: white;
    text-decoration: underline;
}

.newsletter-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

@media (max-width: 991.98px) {
    .newsletter-container {
        padding: 2rem;
    }
    
    .newsletter-image {
        margin-top: 2rem;
    }
}

/* ======== MODELS PAGE STYLES ======== */
.models-intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.model-benefits {
    margin-top: 3rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(58, 110, 165, 0.1);
    color: var(--color-primary);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.benefit-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: var(--color-text-secondary);
    margin-bottom: 0;
}

/* Model Section */
.model-section {
    padding: 5rem 0;
}

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

.model-section:nth-child(even) {
    background-color: var(--color-bg-white);
}

.model-description {
    padding: 1rem;
}

.model-description h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.model-applications {
    background-color: var(--color-bg-light);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    margin-top: 2rem;
}

.model-applications h3 {
    margin-top: 0;
}

.case-study-box {
    background-color: var(--color-bg-soft);
    border-left: 4px solid var(--color-secondary);
    padding: 1.5rem;
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
}

.case-study-box h3 {
    margin-top: 0;
    color: var(--color-secondary);
}

/* SWOT Matrix */
.swot-matrix {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.swot-row {
    display: flex;
    gap: 1rem;
    width: 100%;
    flex-direction: column;
}

.swot-cell {
    flex: 1;
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
}

.swot-cell h4 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.swot-cell p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
}

.swot-cell ul {
    margin-bottom: 0;
}

.swot-cell li {
    margin-bottom: 0.5rem;
}

.strengths {
    background-color: rgba(68, 201, 165, 0.1);
}

.strengths h4 {
    color: var(--color-highlight-teal);
}

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

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

.opportunities {
    background-color: rgba(58, 110, 165, 0.1);
}

.opportunities h4 {
    color: var(--color-primary);
}

.threats {
    background-color: rgba(122, 78, 171, 0.1);
}

.threats h4 {
    color: var(--color-highlight-purple);
}

/* PESTLE Diagram */
.pestle-diagram {
    position: relative;
    padding: 2rem;
}

.pestle-central {
    width: 150px;
    height: 150px;
    background-color: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 3rem;
    box-shadow: var(--shadow-md);
    z-index: 2;
    position: relative;
}

.central-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.pestle-central h4 {
    color: white;
    margin-bottom: 0;
    font-weight: 600;
}

.pestle-factors {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pestle-factor {
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.pestle-factor:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.factor-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.political .factor-icon {
    background-color: rgba(58, 110, 165, 0.1);
    color: var(--color-primary);
}

.economic .factor-icon {
    background-color: rgba(68, 201, 165, 0.1);
    color: var(--color-highlight-teal);
}

.social .factor-icon {
    background-color: rgba(122, 78, 171, 0.1);
    color: var(--color-highlight-purple);
}

.technological .factor-icon {
    background-color: rgba(255, 107, 53, 0.1);
    color: var(--color-secondary);
}

.legal .factor-icon {
    background-color: rgba(58, 110, 165, 0.1);
    color: var(--color-primary);
}

.environmental .factor-icon {
    background-color: rgba(68, 201, 165, 0.1);
    color: var(--color-highlight-teal);
}

.pestle-factor h4 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.pestle-factor p {
    color: var(--color-text-secondary);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Porter's Five Forces */
.porter-diagram {
    position: relative;
    padding: 2rem;
}

.porter-central {
    background-color: var(--color-primary);
    color: white;
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.porter-central h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.porter-central p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-size: 0.9rem;
}

.porter-forces {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.porter-force {
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.porter-force:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.force-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.suppliers .force-icon {
    background-color: rgba(58, 110, 165, 0.1);
    color: var(--color-primary);
}

.buyers .force-icon {
    background-color: rgba(68, 201, 165, 0.1);
    color: var(--color-highlight-teal);
}

.new-entrants .force-icon {
    background-color: rgba(255, 107, 53, 0.1);
    color: var(--color-secondary);
}

.substitutes .force-icon {
    background-color: rgba(122, 78, 171, 0.1);
    color: var(--color-highlight-purple);
}

.porter-force h4 {
    margin-bottom: 0.75rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.porter-force ul {
    margin-bottom: 0;
    padding-left: 1.25rem;
}

.porter-force li {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

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

.strategy-cards {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.5rem;
}

.strategy-card {
    flex: 1;
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.strategy-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    background-color: rgba(58, 110, 165, 0.1);
    color: var(--color-primary);
}

.strategy-card h4 {
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
}

.strategy-card p {
    color: var(--color-text-secondary);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Business Intelligence */
.bi-diagram {
    padding: 1rem;
}

.bi-process {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bi-step {
    display: flex;
    align-items: flex-start;
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.bi-step::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 1rem;
    background-color: var(--color-bg-soft);
}

.bi-step:last-child::after {
    display: none;
}

.step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.data-collection .step-icon {
    background-color: rgba(58, 110, 165, 0.1);
    color: var(--color-primary);
}

.data-processing .step-icon {
    background-color: rgba(255, 107, 53, 0.1);
    color: var(--color-secondary);
}

.data-analysis .step-icon {
    background-color: rgba(68, 201, 165, 0.1);
    color: var(--color-highlight-teal);
}

.visualization .step-icon {
    background-color: rgba(122, 78, 171, 0.1);
    color: var(--color-highlight-purple);
}

.decision-making .step-icon {
    background-color: rgba(58, 110, 165, 0.1);
    color: var(--color-primary);
}

.bi-step h4 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.bi-step p {
    color: var(--color-text-secondary);
    margin-bottom: 0;
}

.dashboard-preview {
    background-color: var(--color-text-primary);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
}

.dashboard-widgets {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.widget {
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius-sm);
    padding: 1rem;
}

.widget h5 {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--color-text-primary);
    font-weight: 600;
}

.kpi-indicators {
    display: flex;
    justify-content: space-between;
}

.kpi {
    text-align: center;
}

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

.kpi-label {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
}

.bi-benefits .benefits-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

/* BCG Matrix */
.bcg-matrix {
    padding: 2rem;
}

.bcg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
}

.bcg-cell {
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 1;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.bcg-cell:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.cell-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.stars {
    background-color: rgba(68, 201, 165, 0.1);
}

.stars .cell-icon {
    background-color: rgba(68, 201, 165, 0.2);
    color: var(--color-highlight-teal);
}

.question-marks {
    background-color: rgba(255, 107, 53, 0.1);
}

.question-marks .cell-icon {
    background-color: rgba(255, 107, 53, 0.2);
    color: var(--color-secondary);
}

.cash-cows {
    background-color: rgba(58, 110, 165, 0.1);
}

.cash-cows .cell-icon {
    background-color: rgba(58, 110, 165, 0.2);
    color: var(--color-primary);
}

.dogs {
    background-color: rgba(122, 78, 171, 0.1);
}

.dogs .cell-icon {
    background-color: rgba(122, 78, 171, 0.2);
    color: var(--color-highlight-purple);
}

.bcg-cell h4 {
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.bcg-cell p {
    margin-bottom: 0.5rem;
    color: var(--color-text-secondary);
}

.cell-strategy {
    margin-top: 1rem;
    padding: 0.75rem;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius-sm);
}

.bcg-axes {
    position: relative;
    height: 40px;
}

.x-axis, .y-axis {
    position: absolute;
    color: var(--color-text-tertiary);
    font-size: 0.8rem;
}

.x-axis {
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
}

.y-axis {
    top: 50%;
    left: -40px;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: right center;
}

.axis-markers {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
}

.bcg-flow-chart {
    text-align: center;
}

.flow-diagram {
    height: 300px;
    margin: 1.5rem 0;
}

.bcg-limitations {
    background-color: var(--color-bg-soft);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
}

.bcg-limitations h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.bcg-limitations ul {
    margin-bottom: 0;
}

.bcg-limitations li {
    margin-bottom: 0.5rem;
}

/* Additional Models Section */
.model-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    overflow: hidden;
}

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

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

.model-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    margin-right: 1rem;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.model-card-header h3 {
    color: white;
    margin-bottom: 0;
    font-size: 1.1rem;
}

.model-card-body {
    padding: 1.5rem;
}

.model-card-body p:last-child {
    margin-bottom: 0;
}

/* Comparison Table */
.comparison-intro {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th, .comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--color-bg-soft);
}

.comparison-table th {
    background-color: var(--color-primary);
    color: white;
    font-weight: 600;
}

.comparison-table th:first-child {
    border-top-left-radius: var(--border-radius-md);
}

.comparison-table th:last-child {
    border-top-right-radius: var(--border-radius-md);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover td {
    background-color: var(--color-bg-soft);
}

.comparison-note {
    display: flex;
    align-items: flex-start;
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.note-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(68, 201, 165, 0.1);
    color: var(--color-highlight-teal);
    font-size: 1.5rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.note-content h3 {
    margin-top: 0;
    color: var(--color-highlight-teal);
}

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

/* Implementation Guide */
.implementation-section {
    background-color: var(--color-bg-light);
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
}

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

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

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

.implementation-challenges h3 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.challenge-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.challenge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 107, 53, 0.1);
    color: var(--color-secondary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.challenge-card h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.challenge-card p {
    margin-bottom: 0.75rem;
    color: var(--color-text-secondary);
}

.challenge-card p:last-child {
    margin-bottom: 0;
}

.challenge-card strong {
    color: var(--color-text-primary);
}

/* Next Steps Section */
.next-steps-section {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: white;
    text-align: center;
    padding: 4rem 0;
}

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

.next-steps-content h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.next-steps-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.next-steps-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.next-steps-buttons .btn-outline-secondary {
    border-color: white;
    color: white;
}

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

@media (max-width: 576px) {
    .next-steps-buttons {
        flex-direction: column;
        max-width: 250px;
        margin: 0 auto;
    }
}

/* ======== CONTACT PAGE STYLES ======== */
.contact-hero-section {
    background-color: var(--color-bg-light);
    padding: 5rem 0;
}

.contact-info-section {
    padding-bottom: 0;
}

.contact-info-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    height: 100%;
    text-align: center;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(58, 110, 165, 0.1);
    color: var(--color-primary);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.contact-info-card h3 {
    margin-bottom: 0.75rem;
}

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

.info-note {
    color: var(--color-text-tertiary);
    font-size: 0.9rem;
}

.map-section {
    padding-top: 0;
}

.map-container {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-responsive {
    position: relative;
    overflow: hidden;
    padding-bottom: 50%;
    height: 0;
}

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

.contact-form-container {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.faq-section {
    background-color: var(--color-bg-light);
}

.accordion-item {
    border: none;
    background-color: transparent;
    margin-bottom: 1rem;
}

.accordion-header {
    margin-bottom: 0;
}

.accordion-button {
    background-color: white;
    border-radius: var(--border-radius-md) !important;
    box-shadow: var(--shadow-sm);
    padding: 1.25rem;
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--color-text-primary);
}

.accordion-button:not(.collapsed) {
    color: var(--color-primary);
    background-color: rgba(58, 110, 165, 0.05);
    box-shadow: var(--shadow-sm);
}

.accordion-button:focus {
    box-shadow: var(--shadow-sm);
    border-color: rgba(58, 110, 165, 0.25);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%231E3A59' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%233A6EA5' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 11l6-6 6 6'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem;
    background-color: white;
    border-radius: 0 0 var(--border-radius-md) var(--border-radius-md);
}

/* ======== THANK YOU PAGE STYLES ======== */
.thank-you-section {
    background-color: var(--color-bg-light);
    padding: 5rem 0;
    text-align: center;
}

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

.thank-you-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: rgba(68, 201, 165, 0.1);
    color: var(--color-highlight-teal);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.thank-you-content h1 {
    margin-bottom: 1.5rem;
}

.thank-you-content p {
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.thank-you-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.related-section {
    background-color: var(--color-bg-white);
}

.related-card {
    background-color: var(--color-bg-light);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.related-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

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

.related-card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.related-card-content p {
    color: var(--color-text-secondary);
    margin-bottom: 1.25rem;
}

@media (max-width: 576px) {
    .thank-you-actions {
        flex-direction: column;
    }
}

/* ======== POLICY PAGES STYLES ======== */
.policy-section {
    padding: 4rem 0;
    background-color: var(--color-bg-light);
}

.policy-header {
    text-align: center;
    margin-bottom: 3rem;
}

.policy-date {
    color: var(--color-text-tertiary);
    font-style: italic;
}

.policy-content {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-md);
}

.policy-intro {
    margin-bottom: 2rem;
}

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

.policy-section:last-child {
    margin-bottom: 0;
}

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

.policy-section h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: var(--color-text-primary);
}

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

.cookie-table th, .cookie-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--color-bg-soft);
}

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

.cookie-table tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .policy-content {
        padding: 1.5rem;
    }
    
    .cookie-table {
        display: block;
        overflow-x: auto;
    }
}

/* ======== UTILITY CLASSES ======== */
.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-0 {
    margin-bottom: 0;
}

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

.rounded {
    border-radius: var(--border-radius-md);
}