/* 
 * FinElegance - Dark Mode Fashion-Editorial Style
 * Финансовая грамотность для женщин - особенности инвестирования и планирования будущего
 * Main Stylesheet
 */

/* ======= Base Styles ======= */
:root {
    /* Primary Colors */
    --color-dark: #121212;
    --color-dark-alt: #1E1E1E;
    --color-light: #F0F0F0;
    --color-muted: #A0A0A0;
    
    /* Accent Colors */
    --color-peach: #F8E0D9;
    --color-rose: #C9A9A6;
    --color-brown: #8A6552;
    --color-gold: #D2A487;
    
    /* Functional Colors */
    --color-success: #4CAF50;
    --color-danger: #F44336;
    --color-warning: #FF9800;
    --color-info: #2196F3;
    
    /* Gradient */
    --gradient-dark: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-alt) 100%);
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
    
    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Global Styles */
html, body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-light);
    background-color: var(--color-dark);
    overflow-x: hidden;
}

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

h1 {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.75rem;
    font-weight: 400;
}

h3 {
    font-size: 2rem;
    font-weight: 400;
}

h4 {
    font-size: 1.5rem;
    font-weight: 500;
}

h5 {
    font-size: 1.25rem;
    font-weight: 500;
}

h6 {
    font-size: 1rem;
    font-weight: 500;
}

p {
    margin-bottom: 1.5rem;
    color: var(--color-light);
}

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

a:hover, a:focus {
    color: var(--color-peach);
    text-decoration: none;
}

.section-title {
    position: relative;
    margin-bottom: 2.5rem;
    color: var(--color-light);
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 0;
    width: 80px;
    height: 2px;
    background-color: var(--color-gold);
}

.text-center .section-title:after {
    left: 50%;
    transform: translateX(-50%);
}

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

.container {
    max-width: 1280px;
    padding: 0 1.5rem;
}

section {
    padding: var(--spacing-lg) 0;
    position: relative;
}

.lead {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-light);
}

/* Button Styles */
.btn {
    display: inline-block;
    font-weight: 400;
    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-sm);
    transition: all var(--transition-fast);
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

.btn:hover:before {
    left: 0;
}

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

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--color-rose);
    border-color: var(--color-rose);
    color: var(--color-dark);
}

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

.btn-outline:hover, .btn-outline:focus {
    background-color: var(--color-gold);
    color: var(--color-dark);
}

/* Form Controls */
.form-control {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-light);
    background-color: rgba(255, 255, 255, 0.05);
    background-clip: padding-box;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    transition: border-color var(--transition-fast);
}

.form-control:focus {
    color: var(--color-light);
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--color-gold);
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(210, 164, 135, 0.25);
}

.form-control::placeholder {
    color: var(--color-muted);
    opacity: 1;
}

.form-label {
    color: var(--color-light);
    margin-bottom: 0.5rem;
}

.form-check-input {
    margin-top: 0.25rem;
}

.form-check-label {
    color: var(--color-light);
}

.form-text {
    color: var(--color-muted);
    font-size: 0.875rem;
}

/* ======= Header & Navigation ======= */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all var(--transition-medium);
}

.site-header.scrolled {
    background-color: rgba(18, 18, 18, 0.95);
    padding: 0.75rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
}

.navbar-brand {
    padding: 0;
}

.logo {
    height: 45px;
    width: auto;
    transition: all var(--transition-fast);
}

.scrolled .logo {
    height: 35px;
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--color-light);
    padding: 0.5rem 1rem;
    font-weight: 400;
    position: relative;
    transition: all var(--transition-fast);
}

.navbar-dark .navbar-nav .nav-link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--color-gold);
    transform: scaleX(0);
    transition: transform var(--transition-medium);
    transform-origin: right center;
}

.navbar-dark .navbar-nav .nav-link:hover:before,
.navbar-dark .navbar-nav .nav-link:focus:before,
.navbar-dark .navbar-nav .nav-link.active:before {
    transform: scaleX(1);
    transform-origin: left center;
}

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

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ======= Hero Section ======= */
.hero-section {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: var(--color-light);
}

.hero-section:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    opacity: 0.7;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

/* ======= Page Header ======= */
.page-header {
    padding: 12rem 0 6rem;
    background-size: cover;
    background-position: center;
    position: relative;
}

.page-header:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    opacity: 0.7;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

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

.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin-bottom: 0;
}

.breadcrumb-item, .breadcrumb-item a {
    color: var(--color-light);
}

.breadcrumb-item.active {
    color: var(--color-gold);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "•";
    color: var(--color-light);
}

/* ======= About Section ======= */
.about-section {
    background-color: var(--color-dark-alt);
    padding: var(--spacing-xl) 0;
}

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

.image-wrapper img {
    transition: transform var(--transition-slow);
}

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

/* ======= Key Aspects Section ======= */
.key-aspects {
    background-color: var(--color-dark);
    padding: var(--spacing-xl) 0;
}

.aspect-card {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-md);
    height: 100%;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.aspect-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 0.05);
}

.aspect-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-rose));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-medium);
}

.aspect-card:hover:before {
    transform: scaleX(1);
}

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

.aspect-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

/* ======= Woman Finance Section ======= */
.woman-finance {
    background-color: var(--color-dark-alt);
    padding: var(--spacing-xl) 0;
}

/* ======= Info Blocks ======= */
.info-blocks {
    padding: var(--spacing-xl) 0;
}

.info-card {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-card-content {
    padding: 2.5rem 2rem;
}

.info-card h3 {
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

/* ======= Contact Form Section ======= */
.contact-form-section {
    background-color: var(--color-dark-alt);
    padding: var(--spacing-xl) 0;
}

.form-wrapper {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-md);
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

/* ======= Newsletter Section ======= */
.newsletter-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--color-gold);
    position: relative;
    overflow: hidden;
}

.newsletter-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
}

.newsletter-section .container {
    position: relative;
    z-index: 1;
}

.newsletter-section h2,
.newsletter-section p {
    color: var(--color-dark);
}

.newsletter-form .form-control {
    background-color: rgba(255, 255, 255, 0.9);
    border-color: transparent;
    color: var(--color-dark);
}

.newsletter-form .form-control::placeholder {
    color: rgba(18, 18, 18, 0.5);
}

.newsletter-form .btn-primary {
    background-color: var(--color-dark);
    border-color: var(--color-dark);
    color: var(--color-light);
}

.newsletter-form .btn-primary:hover {
    background-color: var(--color-dark-alt);
    border-color: var(--color-dark-alt);
}

.newsletter-section .form-text {
    color: var(--color-dark);
}

/* ======= Footer ======= */
.site-footer {
    background-color: var(--color-dark);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1.5rem;
}

.site-footer h5 {
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-size: 1.2rem;
}

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

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

.footer-links a {
    color: var(--color-light);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-gold);
}

.site-footer address p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
}

.site-footer address i {
    color: var(--color-gold);
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}

.site-footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.copyright {
    color: var(--color-muted);
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* ======= Financial Basics Section ======= */
.financial-basics {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-dark-alt);
}

.basics-list {
    margin-top: 2rem;
}

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

.basics-item h3 {
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

/* ======= Financial Principles Section ======= */
.financial-principles {
    padding: var(--spacing-xl) 0;
}

.principle-card {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-md);
    height: 100%;
    transition: all var(--transition-medium);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.principle-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 0.05);
}

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

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

/* ======= Financial Terms Section ======= */
.financial-terms {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-dark-alt);
}

.terms-accordion {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.accordion-item {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-button {
    padding: 1.5rem;
    background-color: transparent;
    color: var(--color-light);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: var(--color-gold);
    background-color: rgba(255, 255, 255, 0.03);
    box-shadow: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23F0F0F0'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%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' fill='%23D2A487'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 0 1.5rem 1.5rem;
}

/* ======= Investment Success Section ======= */
.investment-success {
    padding: var(--spacing-xl) 0;
}

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

.strategy-item h3 {
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

/* ======= Educational Resources Section ======= */
.educational-resources {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-dark-alt);
}

.resource-card {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-md);
    height: 100%;
    transition: all var(--transition-medium);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.resource-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 0.05);
}

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

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

/* ======= Women Investing Section ======= */
.women-investing {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-dark-alt);
}

.feature-list {
    margin-top: 2rem;
}

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

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

/* ======= Investment Approaches Section ======= */
.investment-approaches {
    padding: var(--spacing-xl) 0;
}

.approach-card {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-md);
    height: 100%;
    transition: all var(--transition-medium);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.approach-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 0.05);
}

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

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

/* ======= Financial Confidence Section ======= */
.financial-confidence {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-dark-alt);
}

.confidence-item {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    height: 100%;
    transition: all var(--transition-medium);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.confidence-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.confidence-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-gold);
}

.confidence-item h3 i {
    margin-right: 0.5rem;
}

/* ======= Budget Planning Section ======= */
.budget-planning {
    padding: var(--spacing-xl) 0;
}

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

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

.tip-item h3 {
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

/* ======= Future Planning Section ======= */
.future-planning {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-dark-alt);
}

.planning-aspects {
    margin-top: 2rem;
}

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

.aspect-item h3 {
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

/* ======= Financial Tools Section ======= */
.financial-tools {
    padding: var(--spacing-xl) 0;
}

.tool-card {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-md);
    height: 100%;
    transition: all var(--transition-medium);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 0.05);
}

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

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

/* ======= Contact Info Section ======= */
.contact-info-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-dark-alt);
}

.contact-info {
    margin-top: 3rem;
}

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

.contact-icon {
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-right: 1.5rem;
}

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

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

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

.map-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-md);
    height: 400px;
}

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

/* ======= FAQ Section ======= */
.faq-section {
    padding: var(--spacing-xl) 0;
}

/* ======= Thank You Section ======= */
.thank-you-section {
    padding: 12rem 0 6rem;
    background-color: var(--color-dark-alt);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 3rem 2rem;
    border-radius: var(--border-radius-md);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.thank-you-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.thank-you-text {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.thank-you-subtext {
    color: var(--color-muted);
    margin-bottom: 2rem;
}

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

/* ======= Related Content Section ======= */
.related-content-section {
    padding: var(--spacing-xl) 0;
}

.related-card {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-md);
    height: 100%;
    transition: all var(--transition-medium);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.related-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 0.05);
}

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

.btn-link {
    color: var(--color-gold);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all var(--transition-fast);
}

.btn-link i {
    margin-left: 0.5rem;
    transition: transform var(--transition-fast);
}

.btn-link:hover {
    color: var(--color-peach);
}

.btn-link:hover i {
    transform: translateX(5px);
}

/* ======= Policy Content Styles ======= */
.policy-content {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-dark-alt);
}

.policy-date {
    color: var(--color-muted);
    font-style: italic;
    margin-bottom: 2rem;
}

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

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

.policy-section h3 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--color-light);
}

.policy-section ul, .policy-section ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
}

.policy-section table {
    margin-bottom: 1.5rem;
}

.policy-section th, .policy-section td {
    color: var(--color-light);
    border-color: rgba(255, 255, 255, 0.1);
}

.policy-section th {
    background-color: rgba(255, 255, 255, 0.05);
}

.policy-section address {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 1.5rem;
}

/* ======= Cookie Consent Banner ======= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-dark-alt);
    padding: 1.5rem;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

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

.cookie-option {
    margin-bottom: 1rem;
    background-color: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cookie-option label {
    font-weight: 500;
    margin-left: 0.5rem;
}

.cookie-description {
    margin-top: 0.5rem;
    margin-bottom: 0;
    font-size: 0.875rem;
    color: var(--color-muted);
    margin-left: 1.75rem;
}

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

.btn-accept-all, .btn-accept-selected, .btn-reject-all {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-accept-all {
    background-color: var(--color-gold);
    color: var(--color-dark);
    border: none;
}

.btn-accept-all:hover {
    background-color: var(--color-rose);
}

.btn-accept-selected {
    background-color: transparent;
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
}

.btn-accept-selected:hover {
    background-color: rgba(210, 164, 135, 0.1);
}

.btn-reject-all {
    background-color: transparent;
    color: var(--color-light);
    border: 1px solid var(--color-muted);
}

.btn-reject-all:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.cookie-more-info {
    font-size: 0.875rem;
    color: var(--color-muted);
}

.cookie-settings-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-gold);
    color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 9998;
    font-size: 1.25rem;
    transition: all var(--transition-fast);
    display: none;
}

.cookie-settings-btn:hover {
    background-color: var(--color-rose);
    transform: scale(1.05);
}

/* ======= Alt Background ======= */
.alt-bg {
    background-color: var(--color-dark);
}

/* ======= Responsive Styles ======= */
@media (max-width: 1199.98px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .hero-section h1 {
        font-size: 3rem;
    }
}

@media (max-width: 991.98px) {
    section {
        padding: var(--spacing-md) 0;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.75rem;
    }
    
    .hero-section {
        min-height: 600px;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .page-header {
        padding: 10rem 0 4rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .navbar-collapse {
        background-color: rgba(18, 18, 18, 0.95);
        padding: 1rem;
        border-radius: var(--border-radius-md);
        margin-top: 1rem;
    }
    
    .navbar-dark .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
    }
    
    .site-footer {
        padding-bottom: 5rem;
    }
    
    .thank-you-section {
        padding: 10rem 0 4rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons button {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .hero-section {
        min-height: 500px;
    }
    
    .hero-section h1 {
        font-size: 2.25rem;
    }
    
    .page-header {
        padding: 8rem 0 3rem;
    }
    
    .page-header h1 {
        font-size: 2.25rem;
    }
    
    .contact-item {
        flex-direction: column;
    }
    
    .contact-icon {
        margin-bottom: 1rem;
        margin-right: 0;
    }
    
    .thank-you-title {
        font-size: 2rem;
    }
    
    .form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .thank-you-actions {
        flex-direction: column;
    }
    
    .related-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.35rem;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .page-header {
        padding: 7rem 0 2.5rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .aspect-card, .principle-card, .resource-card, .approach-card, .tool-card, .related-card {
        padding: 2rem 1.5rem;
    }
    
    .form-wrapper {
        padding: 1.5rem 1rem;
    }
    
    .accordion-button {
        padding: 1.25rem 1rem;
        font-size: 1.1rem;
    }
    
    .accordion-body {
        padding: 0 1rem 1.25rem;
    }
    
    .cookie-option {
        padding: 0.75rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .policy-section h3 {
        font-size: 1.25rem;
    }
}