/* ===================================
   AZ Finanz - Allianz Finance Website
   German Financial Services Template
   =================================== */

/* CSS Variables */
:root {
    --primary-color: #003366;
    --primary-light: #004080;
    --primary-dark: #002244;
    --accent-color: #D4AF37;
    --accent-light: #E5C158;
    --text-color: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --bg-light: #F5F7FA;
    --bg-white: #FFFFFF;
    --border-color: #E0E0E0;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --border-radius-lg: 12px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-color);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: none;
}

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

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

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

/* Section Headers */
.section-header {
    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(0, 51, 102, 0.1);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-dark);
    color: var(--bg-white);
    padding: 10px 0;
    font-size: 13px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.risk-notice {
    color: var(--accent-color);
    font-weight: 500;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-right a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--bg-white);
}

.top-bar-right a:hover {
    color: var(--accent-color);
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 4px;
}

.lang-btn {
    padding: 4px 10px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--bg-white);
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn.active,
.lang-btn:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-dark);
}

/* Header */
.header-main {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.logo-sub {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    padding: 8px 0;
}

.nav-menu > li > a:hover,
.nav-menu > li.active > a {
    color: var(--primary-color);
}

/* Dropdown */
.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-white);
    min-width: 220px;
    padding: 12px 0;
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.dropdown li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--text-color);
}

.dropdown li a:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-toggle,
.mobile-toggle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    font-size: 20px;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
}

.search-toggle:hover,
.mobile-toggle:hover {
    color: var(--primary-color);
}

.mobile-toggle {
    display: none;
}

/* Search Overlay */
.search-overlay {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    padding: 20px 0;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-overlay .container {
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-form {
    display: flex;
    gap: 12px;
    flex: 1;
}

.search-form input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: var(--transition);
}

.search-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.search-form button[type="submit"] {
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
}

.search-form button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.search-close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    font-size: 24px;
    color: var(--text-color);
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-swiper {
    height: 100%;
}

.hero-slide {
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 51, 102, 0.9), rgba(0, 51, 102, 0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    color: var(--bg-white);
    padding: 40px 0;
}

.hero-tag {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--accent-color);
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-buttons .btn-outline {
    border-color: var(--bg-white);
    color: var(--bg-white);
}

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

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 50%;
    color: var(--bg-white);
    font-size: 24px;
    transition: var(--transition);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--accent-color);
    color: var(--primary-dark);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255,255,255,0.5);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

/* Advantages Section */
.advantages-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.advantage-card {
    background-color: var(--bg-white);
    padding: 40px 32px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background-color: rgba(0, 51, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--primary-color);
}

.advantage-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.advantage-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}

/* Products Section */
.products-section {
    padding: 80px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.product-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 51, 102, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay .iconify {
    font-size: 32px;
    color: var(--bg-white);
}

.product-content {
    padding: 24px;
}

.product-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 51, 102, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.product-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.product-content p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
}

.product-link:hover {
    color: var(--accent-color);
}

/* News Section */
.news-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.news-column .section-header {
    margin-bottom: 32px;
}

.news-column .section-header h2 {
    font-size: 24px;
}

/* News List */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
}

.news-item {
    display: flex;
    gap: 20px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

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

.news-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: var(--border-radius);
}

.news-date .day {
    font-size: 20px;
    font-weight: 700;
}

.news-date .month {
    font-size: 11px;
    text-transform: uppercase;
}

.news-content {
    flex: 1;
}

.news-category {
    display: inline-block;
    padding: 4px 10px;
    background-color: rgba(212, 175, 55, 0.2);
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 8px;
}

.news-content h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.news-content h4 a:hover {
    color: var(--accent-color);
}

.news-content p {
    font-size: 14px;
    color: var(--text-light);
}

/* Analysis List */
.analysis-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
}

.analysis-item {
    display: flex;
    gap: 20px;
    background-color: var(--bg-white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.analysis-image {
    width: 140px;
    height: 100px;
    border-radius: var(--border-radius);
    overflow: hidden;
    flex-shrink: 0;
}

.analysis-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.analysis-image:hover img {
    transform: scale(1.1);
}

.analysis-content {
    flex: 1;
}

.analysis-tag {
    display: inline-block;
    padding: 4px 10px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-size: 11px;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 8px;
}

.analysis-content h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.analysis-content h4 a:hover {
    color: var(--accent-color);
}

.analysis-content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.analysis-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--text-muted);
}

.analysis-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 51, 102, 0.95), rgba(0, 51, 102, 0.8));
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    color: var(--bg-white);
}

.cta-tag {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--accent-color);
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    margin-bottom: 24px;
}

.cta-content h2 {
    font-size: 36px;
    color: var(--bg-white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-outline {
    border-color: var(--bg-white);
    color: var(--bg-white);
}

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

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
}

.gallery-swiper {
    padding-bottom: 50px;
}

.gallery-swiper .swiper-slide {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.gallery-swiper .swiper-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-swiper .swiper-slide:hover img {
    transform: scale(1.05);
}

/* Compliance Section */
.compliance-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.compliance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.compliance-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.compliance-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.compliance-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.compliance-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.compliance-list .iconify {
    font-size: 20px;
    color: var(--accent-color);
}

.compliance-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.compliance-image img {
    width: 100%;
    height: auto;
}

/* Footer */
.footer-main {
    background-color: var(--primary-dark);
    color: var(--bg-white);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo-main {
    color: var(--bg-white);
}

.footer-brand p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    font-size: 18px;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--accent-color);
    color: var(--primary-dark);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--bg-white);
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links ul li a {
    font-size: 14px;
    opacity: 0.8;
    transition: var(--transition);
}

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

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    opacity: 0.8;
}

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

.footer-bottom {
    padding: 24px 0;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.footer-legal p {
    font-size: 13px;
    opacity: 0.7;
}

.legal-links {
    display: flex;
    gap: 24px;
}

.legal-links a {
    font-size: 13px;
    opacity: 0.7;
    transition: var(--transition);
}

.legal-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.risk-warning {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.risk-warning p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    opacity: 0.8;
}

.risk-warning .iconify {
    color: var(--accent-color);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--accent-color);
    color: var(--primary-dark);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .compliance-grid {
        grid-template-columns: 1fr;
    }
    
    .compliance-image {
        order: -1;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .top-bar-left .risk-notice {
        display: none;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .analysis-item {
        flex-direction: column;
    }
    
    .analysis-image {
        width: 100%;
        height: 180px;
    }
    
    .compliance-list {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .legal-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 500px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* ===================================
   PAGE HEADER STYLES
   =================================== */
.page-header {
    position: relative;
    padding: 120px 0 80px;
    background-size: cover;
    background-position: center;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 51, 102, 0.95), rgba(0, 51, 102, 0.7));
}

.page-header-content {
    position: relative;
    z-index: 2;
    color: var(--bg-white);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    opacity: 0.8;
}

.breadcrumb a {
    color: var(--accent-color);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb .iconify {
    font-size: 16px;
}

.page-header-content h1 {
    font-size: 42px;
    color: var(--bg-white);
    margin-bottom: 12px;
}

.page-header-content p {
    font-size: 18px;
    opacity: 0.9;
}

/* ===================================
   PRODUCT DETAIL STYLES
   =================================== */
.product-intro-section {
    padding: 80px 0;
}

.product-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.product-intro-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.product-intro-content > p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.product-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

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

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-light);
}

.product-intro-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.product-intro-image img {
    width: 100%;
    height: auto;
}

.risk-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.risk-niedrig {
    background-color: #22c55e;
    color: white;
}

.risk-mittel {
    background-color: #f59e0b;
    color: white;
}

.risk-hoch {
    background-color: #ef4444;
    color: white;
}

/* Features Section */
.features-section {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.feature-card {
    text-align: center;
    padding: 40px 24px;
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: rgba(0, 51, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Markets Grid */
.markets-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.market-card {
    background-color: var(--bg-white);
    padding: 32px 24px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.market-card:hover {
    box-shadow: var(--shadow-md);
}

.market-flag {
    font-size: 32px;
    margin-bottom: 12px;
}

.market-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.market-index {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.market-change {
    font-size: 14px;
    font-weight: 600;
}

.positive {
    color: #22c55e;
}

.negative {
    color: #ef4444;
}

/* Risk Section */
.risk-section {
    padding: 60px 0;
}

.risk-box {
    display: flex;
    gap: 24px;
    padding: 32px;
    background-color: #fef3c7;
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--accent-color);
}

.risk-box.risk-high {
    background-color: #fee2e2;
    border-left-color: #ef4444;
}

.risk-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-dark);
}

.risk-high .risk-icon {
    background-color: #ef4444;
    color: white;
}

.risk-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.risk-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===================================
   PRODUCTS OVERVIEW PAGE
   =================================== */
.products-overview-section {
    padding: 80px 0;
}

.products-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.product-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.product-detail-card.reverse {
    direction: rtl;
}

.product-detail-card.reverse > * {
    direction: ltr;
}

.product-detail-image {
    position: relative;
    height: 100%;
    min-height: 350px;
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-risk-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.product-detail-content {
    padding: 48px;
}

.product-detail-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 51, 102, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.product-detail-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.product-detail-content > p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.product-features {
    margin-bottom: 32px;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
}

.product-features .iconify {
    color: var(--accent-color);
    font-size: 20px;
}

.product-detail-actions {
    display: flex;
    gap: 16px;
}

/* ===================================
   FUNDS PAGE STYLES
   =================================== */
.fund-types-section {
    padding: 80px 0;
}

.fund-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.fund-type-card {
    background-color: var(--bg-white);
    padding: 40px 32px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.fund-type-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.fund-type-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 51, 102, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.fund-type-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.fund-type-card > p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.fund-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fund-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.fund-features .iconify {
    color: #22c55e;
}

/* Funds Table */
.top-funds-section {
    padding: 80px 0;
}

.funds-table-wrapper {
    overflow-x: auto;
    margin-bottom: 16px;
}

.funds-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.funds-table th {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.funds-table td {
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

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

.funds-table tr:hover {
    background-color: var(--bg-light);
}

.risk-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.funds-disclaimer {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
}

/* ===================================
   METALS PAGE STYLES
   =================================== */
.metal-types-section {
    padding: 80px 0;
}

.metal-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.metal-card {
    background-color: var(--bg-white);
    padding: 40px 32px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.metal-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.metal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.metal-icon.gold {
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    color: #92400e;
}

.metal-icon.silver {
    background: linear-gradient(135deg, #c0c0c0, #e5e7eb);
    color: #4b5563;
}

.metal-icon.platinum {
    background: linear-gradient(135deg, #e5e7eb, #9ca3af);
    color: #374151;
}

.metal-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.metal-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.metal-price small {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
}

.price-change {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.metal-card > p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.metal-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.metal-features li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
}

.metal-features .iconify {
    color: var(--accent-color);
}

/* Storage Section */
.storage-section {
    padding: 80px 0;
}

.storage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.storage-card {
    position: relative;
    background-color: var(--bg-white);
    padding: 40px 32px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.storage-card:hover {
    box-shadow: var(--shadow-md);
}

.storage-card.featured {
    border: 2px solid var(--accent-color);
}

.storage-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background-color: var(--accent-color);
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
}

.storage-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 51, 102, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.storage-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.storage-card > p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.storage-card ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.storage-card ul li {
    font-size: 14px;
    padding-left: 20px;
    position: relative;
}

.storage-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* ===================================
   CRYPTO PAGE STYLES
   =================================== */
.crypto-list-section {
    padding: 80px 0;
}

.crypto-table-wrapper {
    overflow-x: auto;
    margin-bottom: 16px;
}

.crypto-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.crypto-table th {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.crypto-table td {
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

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

.crypto-table tr:hover {
    background-color: var(--bg-light);
}

.crypto-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.crypto-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
}

.crypto-icon.btc {
    background-color: #f7931a;
    color: white;
}

.crypto-icon.eth {
    background-color: #627eea;
    color: white;
}

.crypto-icon.sol {
    background: linear-gradient(135deg, #9945ff, #14f195);
    color: white;
}

.crypto-icon.xrp {
    background-color: #23292f;
    color: white;
}

.crypto-info strong {
    display: block;
    font-size: 14px;
}

.crypto-info small {
    font-size: 12px;
    color: var(--text-muted);
}

.crypto-price {
    font-weight: 600;
}

.crypto-disclaimer {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
}

/* Security Section */
.security-section {
    padding: 80px 0;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.security-card {
    text-align: center;
    padding: 40px 24px;
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.security-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.security-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: rgba(0, 51, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-color);
}

.security-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.security-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===================================
   RESOURCES PAGE STYLES
   =================================== */
.resource-types-section {
    padding: 80px 0;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.resource-card {
    background-color: var(--bg-white);
    padding: 32px 24px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.resource-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 51, 102, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.resource-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.resource-card > p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.resource-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.resource-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.resource-features .iconify {
    color: var(--accent-color);
    font-size: 16px;
}

/* ESG Section */
.esg-section {
    padding: 80px 0;
}

.esg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.esg-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.esg-content > p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.esg-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.esg-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.esg-list .iconify {
    font-size: 24px;
    color: var(--accent-color);
}

.esg-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.esg-image img {
    width: 100%;
    height: auto;
}

/* ===================================
   ADVANTAGES PAGE STYLES
   =================================== */
.key-numbers-section {
    padding: 60px 0;
    background-color: var(--primary-color);
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.number-card {
    text-align: center;
    color: var(--bg-white);
}

.number-value {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.number-label {
    font-size: 14px;
    opacity: 0.9;
}

.advantages-detail-section {
    padding: 80px 0;
}

.advantages-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.advantage-detail-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.advantage-detail-card:hover {
    box-shadow: var(--shadow-md);
}

.advantage-icon-large {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 51, 102, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.advantage-detail-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.advantage-detail-card > p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.advantage-detail-card ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.advantage-detail-card ul li {
    font-size: 14px;
    padding-left: 20px;
    position: relative;
}

.advantage-detail-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Awards Section */
.awards-section {
    padding: 80px 0;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.award-card {
    background-color: var(--bg-white);
    padding: 32px 24px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.award-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.award-year {
    display: inline-block;
    padding: 4px 12px;
    background-color: var(--accent-color);
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 600;
    border-radius: 12px;
    margin-bottom: 16px;
}

.award-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.award-card p {
    font-size: 13px;
    color: var(--text-light);
}

.awards-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.awards-image img {
    width: 100%;
    height: auto;
}

/* Global Section */
.global-section {
    padding: 80px 0;
}

.global-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.global-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.global-content > p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.global-stats {
    display: flex;
    gap: 32px;
}

.global-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    flex: 1;
}

.global-stat .iconify {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.global-stat strong {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.global-stat span {
    font-size: 13px;
    color: var(--text-light);
}

.global-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.global-image img {
    width: 100%;
    height: auto;
}

/* ===================================
   KNOWLEDGE PAGE STYLES
   =================================== */
.knowledge-categories-section {
    padding: 80px 0;
}

.knowledge-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.knowledge-card {
    background-color: var(--bg-white);
    padding: 40px 32px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

.knowledge-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    color: var(--primary-color);
}

.knowledge-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: rgba(0, 51, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-color);
}

.knowledge-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.knowledge-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Guides Section */
.guides-section {
    padding: 80px 0;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.guide-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.guide-card:hover {
    box-shadow: var(--shadow-md);
}

.guide-image {
    height: 200px;
    overflow: hidden;
}

.guide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.guide-card:hover .guide-image img {
    transform: scale(1.1);
}

.guide-content {
    padding: 24px;
}

.guide-level {
    display: inline-block;
    padding: 4px 12px;
    background-color: var(--accent-color);
    color: var(--primary-dark);
    font-size: 11px;
    font-weight: 600;
    border-radius: 12px;
    margin-bottom: 12px;
}

.guide-content h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.guide-content > p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.guide-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
}

.guide-link:hover {
    color: var(--accent-color);
}

/* Analysis Section */
.analysis-section {
    padding: 80px 0;
}

.analysis-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
}

.analysis-card.featured {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.analysis-card.featured .analysis-image {
    height: 280px;
}

.analysis-card.featured .analysis-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.analysis-card.featured .analysis-content {
    padding: 32px;
}

.analysis-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.analysis-small {
    background-color: var(--bg-white);
    padding: 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.analysis-small:hover {
    box-shadow: var(--shadow-md);
}

.analysis-small .analysis-category {
    margin-bottom: 8px;
}

.analysis-small h4 {
    font-size: 15px;
    margin-bottom: 8px;
}

.analysis-date {
    font-size: 12px;
    color: var(--text-muted);
}

/* Glossary Section */
.glossary-section {
    padding: 80px 0;
}

.glossary-alphabet {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.glossary-alphabet a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-white);
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.glossary-alphabet a:hover,
.glossary-alphabet a.active {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.glossary-alphabet .disabled {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.glossary-terms {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.glossary-term {
    background-color: var(--bg-white);
    padding: 24px 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.glossary-term h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.glossary-term p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===================================
   SERVICE PAGE STYLES
   =================================== */
.contact-options-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.contact-card {
    position: relative;
    background-color: var(--bg-white);
    padding: 40px 24px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-card:hover {
    box-shadow: var(--shadow-md);
}

.contact-card.featured {
    border: 2px solid var(--accent-color);
}

.contact-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background-color: var(--accent-color);
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: rgba(0, 51, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-color);
}

.contact-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.contact-info {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.contact-hours {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

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

.faq-question .iconify {
    font-size: 24px;
    color: var(--primary-color);
    transition: var(--transition);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Offices Section */
.offices-section {
    padding: 80px 0;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.office-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.office-card:hover {
    box-shadow: var(--shadow-md);
}

.office-image {
    height: 200px;
    overflow: hidden;
}

.office-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.office-card:hover .office-image img {
    transform: scale(1.1);
}

.office-content {
    padding: 24px;
}

.office-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.office-address {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.6;
}

.office-phone {
    font-size: 14px;
    margin-bottom: 8px;
}

.office-phone a {
    color: var(--primary-color);
}

.office-hours {
    font-size: 13px;
    color: var(--text-muted);
}

/* ===================================
   ABOUT PAGE STYLES
   =================================== */
.story-section {
    padding: 80px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.story-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.story-content > p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.story-stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
}

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

.story-stat strong {
    display: block;
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.story-stat span {
    font-size: 13px;
    color: var(--text-light);
}

.story-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.story-image img {
    width: 100%;
    height: auto;
}

/* Values Section */
.values-section {
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.value-card {
    text-align: center;
    padding: 40px 24px;
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: rgba(0, 51, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-color);
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Leadership Section */
.leadership-section {
    padding: 80px 0;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.leader-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.leader-card:hover {
    box-shadow: var(--shadow-md);
}

.leader-image {
    height: 280px;
    overflow: hidden;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.leader-info {
    padding: 24px;
}

.leader-info h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

.leader-title {
    font-size: 13px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.leader-bio {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===================================
   CONSULTATION PAGE STYLES
   =================================== */
.consultation-section {
    padding: 80px 0;
}

.consultation-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 64px;
}

.consultation-form-wrapper h2 {
    font-size: 28px;
    margin-bottom: 12px;
}

.consultation-form-wrapper > p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.consultation-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.consultation-form .form-group {
    margin-bottom: 20px;
}

.consultation-form label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 14px;
    transition: var(--transition);
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

/* Verification Code */
.verify-code-wrapper {
    display: flex;
    gap: 12px;
}

.verify-code-wrapper input {
    flex: 1;
}

.btn-verify-code {
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
    border: none;
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-verify-code:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    color: var(--primary-dark);
}

.btn-verify-code:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    cursor: pointer;
}

.checkbox-label input {
    width: auto;
    margin-top: 3px;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: underline;
}

.consultation-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background-color: var(--bg-white);
    padding: 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 51, 102, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.info-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.info-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-info-box {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 24px;
    border-radius: var(--border-radius);
}

.contact-info-box h4 {
    color: var(--bg-white);
    font-size: 16px;
    margin-bottom: 16px;
}

.contact-info-box p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 8px;
}

/* Process Section */
.process-section {
    padding: 80px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 40px;
    right: -50%;
    width: 100%;
    height: 2px;
    background-color: var(--border-color);
    z-index: 0;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 16px;
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    background-color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 1;
}

.process-step h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 14px;
    color: var(--text-light);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-rating .iconify {
    font-size: 20px;
    color: var(--accent-color);
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-light);
}

/* ===================================
   RESPONSIVE STYLES FOR NEW PAGES
   =================================== */
@media (max-width: 1200px) {
    .features-grid,
    .security-grid,
    .knowledge-grid,
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .markets-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .fund-types-grid,
    .metal-types-grid,
    .storage-grid,
    .resource-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .numbers-grid,
    .awards-grid,
    .values-grid,
    .leadership-grid,
    .guides-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advantages-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .analysis-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 992px) {
    .product-intro-grid,
    .product-detail-card,
    .global-grid,
    .esg-grid,
    .consultation-grid,
    .story-grid {
        grid-template-columns: 1fr;
    }
    
    .product-detail-card.reverse {
        direction: ltr;
    }
    
    .product-detail-image {
        min-height: 250px;
    }
    
    .product-detail-content {
        padding: 32px;
    }
    
    .product-stats {
        grid-template-columns: 1fr;
    }
    
    .global-image,
    .esg-image,
    .story-image {
        order: -1;
    }
    
    .global-stats {
        flex-direction: column;
    }
    
    .offices-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 60px;
    }
    
    .page-header-content h1 {
        font-size: 28px;
    }
    
    .features-grid,
    .markets-grid,
    .security-grid,
    .fund-types-grid,
    .metal-types-grid,
    .storage-grid,
    .resource-grid,
    .numbers-grid,
    .awards-grid,
    .values-grid,
    .leadership-grid,
    .knowledge-grid,
    .guides-grid,
    .contact-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .product-detail-actions {
        flex-direction: column;
    }
    
    .product-detail-actions .btn {
        width: 100%;
    }
    
    .consultation-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .verify-code-wrapper {
        flex-direction: column;
    }
    
    .btn-verify-code {
        width: 100%;
        padding: 14px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .glossary-alphabet a,
    .glossary-alphabet .disabled {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

/* ===================================
   NEWS PAGE STYLES
   =================================== */

/* Featured News Section */
.featured-news-section {
    padding: 80px 0;
}

.featured-news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
}

.featured-news-main {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.featured-news-main .news-image {
    position: relative;
    overflow: hidden;
}

.featured-news-main .news-image img {
    width: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.featured-news-main:hover .news-image img {
    transform: scale(1.05);
}

.featured-news-main .news-category {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 16px;
    background-color: var(--accent-color);
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
}

.featured-news-main .news-content {
    padding: 32px;
}

.featured-news-main .news-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--text-light);
}

.featured-news-main .news-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.featured-news-main h2 {
    font-size: 28px;
    margin-bottom: 16px;
    line-height: 1.3;
}

.featured-news-main h2 a {
    color: var(--text-color);
}

.featured-news-main h2 a:hover {
    color: var(--primary-color);
}

.featured-news-main p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.featured-news-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-card-small {
    display: flex;
    gap: 16px;
    background-color: var(--bg-white);
    padding: 16px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.news-card-small:hover {
    box-shadow: var(--shadow-md);
}

.news-image-small {
    width: 100px;
    height: 80px;
    border-radius: var(--border-radius);
    overflow: hidden;
    flex-shrink: 0;
}

.news-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content-small {
    flex: 1;
}

.news-category-small {
    display: inline-block;
    padding: 4px 10px;
    background-color: rgba(0, 51, 102, 0.1);
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 600;
    border-radius: 12px;
    margin-bottom: 8px;
}

.news-content-small h4 {
    font-size: 15px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.news-content-small h4 a {
    color: var(--text-color);
}

.news-content-small h4 a:hover {
    color: var(--primary-color);
}

.news-date {
    font-size: 12px;
    color: var(--text-muted);
}

/* News Filter Section */
.news-filter-section {
    padding: 0 0 40px;
}

.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-categories {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
}

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

.filter-sort select {
    padding: 10px 40px 10px 16px;
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 14px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23333' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

/* News Grid Section */
.news-grid-section {
    padding: 0 0 80px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.news-grid.three-columns {
    grid-template-columns: repeat(3, 1fr);
}

.news-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.news-card .news-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
}

.news-card .news-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-card .news-category {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    background-color: var(--accent-color);
    color: var(--primary-dark);
    font-size: 11px;
    font-weight: 600;
    border-radius: 12px;
}

.news-card .news-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--text-light);
}

.news-card .news-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.news-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-card h3 a {
    color: var(--text-color);
}

.news-card h3 a:hover {
    color: var(--primary-color);
}

.news-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
}

.read-more:hover {
    color: var(--accent-color);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
    padding: 20px;
}

.pagination ul {
    display: flex;
    list-style: none;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.pagination li {
    margin: 0;
}

.pagination a,
.pagination span {
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    padding: 0 16px;
}

.pagination a:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-color: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 51, 102, 0.3);
}

.pagination .current {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    border-color: var(--accent-color);
    color: var(--primary-dark);
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.pagination .disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: var(--bg-light);
    border-color: var(--border-light);
}

.pagination .disabled:hover {
    transform: none;
    box-shadow: var(--shadow-sm);
    background: var(--bg-light);
    color: var(--text-light);
}

/* Page dots for ellipsis */
.pagination .dots {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 2px;
}

/* First/Last/Prev/Next buttons */
.pagination .first a,
.pagination .last a,
.pagination .prev a,
.pagination .next a {
    font-weight: 600;
    padding: 0 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-color: var(--primary-color);
    color: var(--bg-white);
}

.pagination .first a:hover,
.pagination .last a:hover,
.pagination .prev a:hover,
.pagination .next a:hover {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    border-color: var(--accent-color);
    color: var(--primary-dark);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .pagination {
        gap: 6px;
        margin-top: 40px;
        padding: 10px;
    }
    
    .pagination ul {
        gap: 6px;
    }
    
    .pagination a,
    .pagination span {
        min-width: 40px;
        height: 40px;
        font-size: 14px;
        padding: 0 12px;
        border-radius: 10px;
    }
    
    .pagination .first a,
    .pagination .last a,
    .pagination .prev a,
    .pagination .next a {
        padding: 0 14px;
    }
}

/* Newsletter Section */
.newsletter-section {
    padding: 60px 0 80px;
}

.newsletter-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--border-radius-lg);
    color: var(--bg-white);
}

.newsletter-content h2 {
    color: var(--bg-white);
    font-size: 28px;
    margin-bottom: 12px;
}

.newsletter-content p {
    font-size: 16px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 15px;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-form .btn {
    padding: 14px 28px;
    background-color: var(--accent-color);
    color: var(--primary-dark);
    border: none;
    font-weight: 600;
}

.newsletter-form .btn:hover {
    background-color: var(--accent-light);
}

/* ===================================
   ARTICLE DETAIL PAGE STYLES
   =================================== */

/* Article Header */
.article-header {
    position: relative;
    padding: 140px 0 80px;
    background-size: cover;
    background-position: center;
}

.article-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 51, 102, 0.8), rgba(0, 51, 102, 0.95));
}

.article-header-content {
    position: relative;
    z-index: 2;
    color: var(--bg-white);
    max-width: 800px;
}

.article-header .breadcrumb {
    margin-bottom: 24px;
}

.article-header .breadcrumb a,
.article-header .breadcrumb span {
    color: rgba(255, 255, 255, 0.8);
}

.article-header .breadcrumb a:hover {
    color: var(--accent-color);
}

.article-category {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--accent-color);
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 20px;
}

.article-header-content h1 {
    font-size: 42px;
    color: var(--bg-white);
    margin-bottom: 24px;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    font-size: 14px;
    opacity: 0.9;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Article Section */
.article-section {
    padding: 60px 0 80px;
}

.article-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
}

.article-content {
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.article-intro {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 2px solid var(--border-color);
}

.article-intro .lead {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-color);
    font-weight: 500;
}

.article-body h2 {
    font-size: 26px;
    margin: 40px 0 20px;
}

.article-body h3 {
    font-size: 22px;
    margin: 32px 0 16px;
}

.article-body p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.article-body ul,
.article-body ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.article-body li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 12px;
}

.article-image {
    margin: 32px 0;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: auto;
}

.article-image figcaption {
    padding: 16px;
    background-color: var(--bg-light);
    font-size: 14px;
    color: var(--text-light);
    text-align: center;
}

.article-body blockquote {
    margin: 32px 0;
    padding: 24px 32px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.article-body blockquote p {
    font-size: 18px;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 12px;
}

.article-body blockquote cite {
    font-size: 14px;
    color: var(--text-light);
    font-style: normal;
}

.recommendation-box {
    margin: 24px 0;
    padding: 24px;
    background-color: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: var(--border-radius);
}

.recommendation-box.hold {
    background-color: #fefce8;
    border-color: #fde047;
}

.recommendation-box h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    margin-bottom: 16px;
    color: #166534;
}

.recommendation-box.hold h4 {
    color: #854d0e;
}

.recommendation-box ul {
    margin: 0;
}

.recommendation-box li {
    margin-bottom: 8px;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 40px 0;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.tag {
    padding: 8px 16px;
    background-color: var(--bg-light);
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-color);
    transition: var(--transition);
}

.tag:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.article-share {
    margin: 32px 0;
    padding: 24px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.article-share h4 {
    font-size: 16px;
    margin-bottom: 16px;
}

.share-buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    color: var(--bg-white);
    cursor: pointer;
    transition: var(--transition);
}

.share-btn.facebook {
    background-color: #1877f2;
}

.share-btn.twitter {
    background-color: #1da1f2;
}

.share-btn.linkedin {
    background-color: #0077b5;
}

.share-btn.email {
    background-color: #ea4335;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.article-author {
    display: flex;
    gap: 24px;
    margin-top: 40px;
    padding: 32px;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
}

.author-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.author-title {
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.author-bio {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Article Sidebar */
.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-widget {
    background-color: var(--bg-white);
    padding: 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.sidebar-widget h4 {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-color);
}

.related-articles {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.related-article {
    display: flex;
    gap: 12px;
    text-decoration: none;
}

.related-article img {
    width: 70px;
    height: 55px;
    border-radius: 6px;
    object-fit: cover;
}

.related-article h5 {
    font-size: 14px;
    margin-bottom: 4px;
    color: var(--text-color);
    line-height: 1.4;
}

.related-article:hover h5 {
    color: var(--primary-color);
}

.related-article span {
    font-size: 12px;
    color: var(--text-muted);
}

.market-ticker {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ticker-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background-color: var(--bg-light);
    border-radius: 6px;
}

.ticker-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-color);
}

.ticker-value {
    font-size: 14px;
    font-weight: 600;
}

.ticker-change {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
}

.ticker-change.positive {
    background-color: #dcfce7;
    color: #166534;
}

.ticker-change.negative {
    background-color: #fee2e2;
    color: #991b1b;
}

.cta-widget {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--bg-white);
}

.cta-widget h4 {
    color: var(--bg-white);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.cta-widget p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 16px;
}

.cta-widget .btn {
    width: 100%;
    background-color: var(--accent-color);
    color: var(--primary-dark);
}

.category-list {
    list-style: none;
}

.category-list li {
    border-bottom: 1px solid var(--border-color);
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 14px;
    color: var(--text-color);
}

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

.category-list span {
    font-size: 12px;
    color: var(--text-muted);
    background-color: var(--bg-light);
    padding: 4px 10px;
    border-radius: 12px;
}

/* Related Section */
.related-section {
    padding: 60px 0 80px;
    background-color: var(--bg-light);
}

.related-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.related-section .section-header h2 {
    font-size: 28px;
}

/* ===================================
   NEWS PAGE RESPONSIVE STYLES
   =================================== */
@media (max-width: 1200px) {
    .featured-news-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-news-main .news-image {
        height: 300px;
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .article-grid {
        grid-template-columns: 1fr;
    }
    
    .article-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .featured-news-main .news-image {
        height: 220px;
    }
    
    .featured-news-main h2 {
        font-size: 22px;
    }
    
    .news-grid,
    .news-grid.three-columns {
        grid-template-columns: 1fr;
    }
    
    .filter-bar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-categories {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
    }
    
    .newsletter-box {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .article-header-content h1 {
        font-size: 28px;
    }
    
    .article-content {
        padding: 24px;
    }
    
    .article-body h2 {
        font-size: 22px;
    }
    
    .article-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-image {
        margin: 0 auto;
    }
}

/* ===================================
   LEGAL PAGES STYLES
   =================================== */

.content-section {
    padding: 60px 0 80px;
    background-color: var(--bg-light);
}

.content-grid {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 48px;
}

.content-main {
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.content-main h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.content-main h2:first-child {
    margin-top: 0;
}

.content-main h3 {
    font-size: 20px;
    margin: 32px 0 16px;
    color: var(--text-color);
}

.content-main p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}

.content-main ul,
.content-main ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.content-main li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 8px;
}

.content-main strong {
    color: var(--text-color);
}

.last-updated {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-muted);
}

/* Legal Navigation */
.legal-nav {
    list-style: none;
}

.legal-nav li {
    border-bottom: 1px solid var(--border-color);
}

.legal-nav li:last-child {
    border-bottom: none;
}

.legal-nav a {
    display: block;
    padding: 12px 0;
    font-size: 14px;
    color: var(--text-color);
    transition: var(--transition);
}

.legal-nav a:hover,
.legal-nav a.active {
    color: var(--primary-color);
    padding-left: 8px;
}

/* Risk Warning Page Styles */
.risk-warning-box {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 2px solid #f59e0b;
    border-radius: var(--border-radius-lg);
    padding: 40px;
    margin-bottom: 48px;
    text-align: center;
}

.risk-icon {
    font-size: 64px;
    color: #f59e0b;
    margin-bottom: 20px;
}

.risk-warning-box h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #92400e;
}

.risk-warning-box .lead {
    font-size: 18px;
    color: #78350f;
    max-width: 800px;
    margin: 0 auto;
}

.product-risk-card {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 24px;
    margin: 24px 0;
    border-left: 4px solid var(--primary-color);
}

.product-risk-card.warning {
    border-left-color: #f59e0b;
    background-color: #fefce8;
}

.product-risk-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    margin-bottom: 16px;
    margin-top: 0;
}

.product-risk-card h3 .iconify {
    font-size: 24px;
    color: var(--primary-color);
}

.product-risk-card.warning h3 .iconify {
    color: #f59e0b;
}

.product-risk-card ul {
    margin: 0;
}

.product-risk-card li {
    margin-bottom: 8px;
}

.product-risk-card li:last-child {
    margin-bottom: 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    margin: 40px 0;
}

.cta-box h3 {
    color: var(--bg-white);
    font-size: 22px;
    margin-bottom: 12px;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.cta-box .btn {
    background-color: var(--accent-color);
    color: var(--primary-dark);
    border: none;
}

.cta-box .btn:hover {
    background-color: var(--accent-light);
}

/* Warning Widget */
.warning-widget {
    background-color: #fefce8;
    border: 1px solid #fde047;
}

.warning-widget h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #854d0e;
}

.warning-widget h4 .iconify {
    color: #f59e0b;
}

/* Contact Widget */
.contact-widget .btn-block {
    width: 100%;
    justify-content: center;
    margin-top: 16px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .content-main {
        padding: 32px;
    }
    
    .content-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .content-main {
        padding: 24px;
    }
    
    .content-main h2 {
        font-size: 22px;
    }
    
    .content-main h3 {
        font-size: 18px;
    }
    
    .risk-warning-box {
        padding: 24px;
    }
    
    .risk-icon {
        font-size: 48px;
    }
    
    .risk-warning-box h2 {
        font-size: 20px;
    }
    
    .risk-warning-box .lead {
        font-size: 16px;
    }
    
    .cta-box {
        padding: 24px;
    }
}

/* ===================================
   SEARCH PAGE STYLES
   =================================== */

/* Search Section */
.search-section {
    padding: 60px 0 80px;
    background-color: var(--bg-light);
    min-height: 600px;
}

/* Search Form Box */
.search-form-box {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 48px;
}

.search-form-large {
    display: flex;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.search-input-large {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: var(--transition);
    background-color: var(--bg-white);
}

.search-input-large:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 51, 102, 0.1);
}

.search-btn-large {
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.search-btn-large:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Search Results */
.search-results {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.search-result-item {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.search-result-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.search-result-item .result-content {
    display: flex;
    gap: 24px;
}

.search-result-item .result-image {
    flex-shrink: 0;
    width: 200px;
    height: 140px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

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

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

.search-result-item .result-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.search-result-item .result-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.search-result-item .result-title a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.search-result-item .result-title a:hover {
    color: var(--accent-color);
}

.search-result-item .result-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-muted);
}

.search-result-item .meta-category {
    padding: 4px 12px;
    background-color: var(--bg-light);
    border-radius: 20px;
    color: var(--primary-color);
    font-weight: 500;
}

.search-result-item .result-excerpt {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 80px 40px;
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.no-results-icon {
    font-size: 80px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.no-results h3 {
    font-size: 24px;
    color: var(--text-color);
    margin-bottom: 12px;
}

.no-results p {
    font-size: 16px;
    color: var(--text-light);
    max-width: 400px;
    margin: 0 auto;
}

/* Search Page Responsive */
@media (max-width: 768px) {
    .search-section {
        padding: 40px 0 60px;
    }

    .search-form-box {
        padding: 24px;
        margin-bottom: 32px;
    }

    .search-form-large {
        flex-direction: column;
    }

    .search-input-large {
        padding: 14px 18px;
    }

    .search-btn-large {
        padding: 14px 24px;
        justify-content: center;
    }

    .search-result-item {
        padding: 24px;
    }

    .search-result-item .result-content {
        flex-direction: column;
    }

    .search-result-item .result-image {
        width: 100%;
        height: 180px;
    }

    .search-result-item .result-title {
        font-size: 18px;
    }

    .search-result-item .result-meta {
        flex-wrap: wrap;
        gap: 12px;
    }

    .no-results {
        padding: 60px 24px;
    }

    .no-results-icon {
        font-size: 64px;
    }

    .no-results h3 {
        font-size: 20px;
    }
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--bg-white);
    z-index: 1100;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu-header .logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-menu-header .logo img {
    height: 40px;
    width: auto;
}

.mobile-menu-header .logo-text {
    display: flex;
    flex-direction: column;
}

.mobile-menu-header .logo-main {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.mobile-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-color);
    font-size: 24px;
}

.mobile-nav {
    padding: 20px 0;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav ul li {
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav ul li a {
    display: block;
    padding: 16px 20px;
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition);
}

.mobile-nav ul li a:hover,
.mobile-nav ul li.active a {
    color: var(--primary-color);
    background-color: var(--bg-light);
}

.mobile-nav ul li a.btn {
    margin: 10px 20px;
    text-align: center;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}
