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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #007bff;
    color: white;
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.btn-accept {
    background-color: #28a745;
    color: white;
}

.btn-accept:hover {
    background-color: #218838;
}

.btn-reject {
    background-color: #6c757d;
    color: white;
}

.btn-reject:hover {
    background-color: #545b62;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

/* ===== HEADER ===== */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    padding: 15px 0;
}

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

.nav-brand img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #007bff;
    margin: 0;
    text-decoration: none;
    background: linear-gradient(135deg, #007bff, #0056b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

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

.nav-list {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
}

.nav-link {
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #007bff;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #007bff;
}

.search-box {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    border-radius: 25px;
    padding: 8px 15px;
    min-width: 250px;
}

.search-box input {
    border: none;
    background: none;
    flex: 1;
    padding: 5px;
    outline: none;
}

.search-box button {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

/* ===== MAIN CONTENT ===== */
.main {
    min-height: calc(100vh - 200px);
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
}

/* ===== AD PLACEHOLDERS ===== */
.ad-placeholder {
    background-color: #e9ecef;
    border: 2px dashed #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    font-weight: bold;
    color: #6c757d;
}

.ad-banner {
    width: 728px;
    height: 90px;
    max-width: 100%;
}

.ad-square {
    width: 300px;
    height: 250px;
    float: right;
    margin: 0 0 20px 20px;
}

/* ===== MARKET DATA ===== */
.market-data {
    background-color: white;
    padding: 40px 0;
    border-bottom: 1px solid #e9ecef;
}

.market-data h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

.market-item {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.market-item:hover {
    transform: translateY(-2px);
}

.market-name {
    font-weight: 600;
    color: #2c3e50;
}

.market-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
}

.market-change {
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.market-change.positive {
    background-color: #d4edda;
    color: #155724;
}

.market-change.negative {
    background-color: #f8d7da;
    color: #721c24;
}

.market-value.updating,
.market-change.updating {
    animation: pulse 0.5s ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); background-color: rgba(0, 123, 255, 0.1); }
    100% { transform: scale(1); }
}

/* ===== SECTIONS ===== */
section {
    padding: 60px 0;
}

section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
    position: relative;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #007bff;
    border-radius: 2px;
}

/* ===== FEATURED ARTICLES ===== */
.featured-articles {
    background-color: white;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.article-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.article-card.featured {
    grid-column: span 2;
}

.article-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.article-content {
    padding: 25px;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.category {
    background-color: #007bff;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.8rem;
}

.article-content h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    line-height: 1.4;
}

.article-content h3 a {
    color: #2c3e50;
    transition: color 0.3s ease;
}

.article-content h3 a:hover {
    color: #007bff;
}

.article-content p {
    color: #6c757d;
    margin-bottom: 15px;
    line-height: 1.6;
}

.article-author {
    font-size: 0.9rem;
    color: #007bff;
    font-weight: 500;
}

/* ===== CATEGORIES ===== */
.categories {
    background-color: #f8f9fa;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.category-card {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.category-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.category-card h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.category-card p {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.category-link {
    color: #007bff;
    font-weight: 600;
    text-decoration: underline;
}

.category-link:hover {
    color: #0056b3;
}

/* ===== LATEST ARTICLES ===== */
.latest-articles {
    background-color: white;
}

.articles-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

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

/* ===== NEWSLETTER ===== */
.newsletter {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    text-align: center;
}

.newsletter-content h2 {
    color: white;
    margin-bottom: 20px;
}

.newsletter-content h2::after {
    background-color: white;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    outline: none;
}

.newsletter-form button {
    padding: 15px 30px;
    border-radius: 6px;
    background-color: white;
    color: #2c3e50;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #3498db;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 10px;
    opacity: 0.8;
}

.disclaimer {
    font-size: 0.9rem;
    font-style: italic;
    color: #f39c12 !important;
    opacity: 1 !important;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
        margin-bottom: 20px;
    }
    
    .nav-list li {
        border-bottom: 1px solid #e9ecef;
    }
    
    .nav-link {
        display: block;
        padding: 15px 0;
        width: 100%;
    }
    
    .search-box {
        min-width: auto;
        width: 100%;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .articles-grid,
    .articles-list {
        grid-template-columns: 1fr;
    }
    
    .article-card.featured {
        grid-column: span 1;
    }
    
    .ad-square {
        float: none;
        margin: 20px auto;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .market-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    section {
        padding: 40px 0;
    }
    
    section h2 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .article-content {
        padding: 20px;
    }
    
    .category-card {
        padding: 20px;
    }
    
    .footer-content {
        gap: 30px;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
button:focus,
input:focus,
a:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .article-card,
    .category-card,
    .market-item {
        border: 2px solid #000;
    }
}

/* ===== ARTICLE PAGE STYLES ===== */
.article-page {
    background-color: white;
    padding: 40px 0;
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.article-main {
    min-width: 0;
}

.article-header {
    margin-bottom: 30px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #6c757d;
}

.article-meta .category {
    background-color: #007bff;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.8rem;
}

.article-meta time,
.article-meta .read-time {
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-header h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c3e50;
}

.article-author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.article-author-info img {
    border-radius: 50%;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: #2c3e50;
}

.author-title {
    font-size: 0.9rem;
    color: #6c757d;
}

.article-image {
    margin-bottom: 30px;
}

.article-image img {
    width: 100%;
    border-radius: 10px;
}

.article-content {
    line-height: 1.8;
}

.content-text {
    font-size: 1.1rem;
}

.content-text .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: #495057;
    margin-bottom: 30px;
    line-height: 1.6;
}

.disclaimer {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 15px;
    margin: 25px 0;
    color: #856404;
}

.content-text h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-size: 1.8rem;
}

.content-text h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-size: 1.4rem;
}

.content-text blockquote {
    background-color: #f8f9fa;
    border-left: 4px solid #007bff;
    padding: 20px;
    margin: 25px 0;
    font-style: italic;
    border-radius: 0 8px 8px 0;
}

.content-text blockquote cite {
    display: block;
    margin-top: 10px;
    font-weight: 600;
    color: #007bff;
    font-style: normal;
}

.info-box {
    background-color: #e7f3ff;
    border: 1px solid #b3d7ff;
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
}

.info-box h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #0056b3;
}

.comparison-table,
.risk-table,
.expectations-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td,
.risk-table th,
.risk-table td,
.expectations-table th,
.expectations-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.comparison-table th,
.risk-table th,
.expectations-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.article-tags {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.article-tags h3 {
    margin-bottom: 15px;
    color: #2c3e50;
    font-size: 1.2rem;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background-color: #f8f9fa;
    color: #495057;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.tag:hover {
    background-color: #007bff;
    color: white;
}

.author-bio {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.author-bio img {
    border-radius: 50%;
    flex-shrink: 0;
}

.bio-content h3 {
    margin-bottom: 5px;
    color: #2c3e50;
}

.bio-title {
    color: #007bff;
    font-weight: 600;
    margin-bottom: 10px;
}

.bio-text {
    line-height: 1.6;
    margin-bottom: 10px;
}

.bio-specialties {
    font-size: 0.9rem;
    color: #6c757d;
}

/* ===== SIDEBAR STYLES ===== */
.article-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    margin-bottom: 20px;
    color: #2c3e50;
    font-size: 1.2rem;
}

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

.related-article {
    display: flex;
    gap: 15px;
}

.related-article img {
    border-radius: 8px;
    flex-shrink: 0;
}

.related-content h4 {
    margin-bottom: 5px;
    font-size: 0.95rem;
    line-height: 1.3;
}

.related-content h4 a {
    color: #2c3e50;
    transition: color 0.3s ease;
}

.related-content h4 a:hover {
    color: #007bff;
}

.related-content time {
    font-size: 0.8rem;
    color: #6c757d;
}

.sidebar-newsletter {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-newsletter input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    outline: none;
}

.sidebar-newsletter button {
    padding: 10px;
}

.popular-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.popular-tags .tag {
    font-size: 0.8rem;
}

/* ===== BREADCRUMB STYLES ===== */
.breadcrumb {
    background-color: #f8f9fa;
    padding: 15px 0;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '›';
    margin: 0 10px;
    color: #6c757d;
}

.breadcrumb-list a {
    color: #007bff;
    text-decoration: none;
}

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

.breadcrumb-list li:last-child {
    color: #6c757d;
}

/* ===== PAGE STYLES ===== */
.page-header {
    text-align: center;
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    margin-bottom: 40px;
}

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

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ===== LEGAL PAGES STYLES ===== */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.8rem;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
}

.legal-section h3 {
    color: #495057;
    margin: 25px 0 15px;
    font-size: 1.3rem;
}

.legal-section ul,
.legal-section ol {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-section li {
    margin-bottom: 8px;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

/* ===== ABOUT PAGE STYLES ===== */
.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.value-item h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.team-member {
    text-align: center;
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-member img {
    border-radius: 50%;
    margin-bottom: 20px;
}

.team-title {
    color: #007bff;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-bio {
    line-height: 1.6;
    margin-bottom: 20px;
    color: #6c757d;
}

.team-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.team-specialties span {
    background-color: #e7f3ff;
    color: #0056b3;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
}

.content-policy {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    list-style: none;
}

.content-policy li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.content-policy li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.disclaimer-box {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 25px;
    margin: 20px 0;
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-page {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #007bff;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-weight: normal !important;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
}

.contact-info-section {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

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

.contact-icon {
    font-size: 1.5rem;
    margin-top: 5px;
}

.contact-details h3 {
    margin-bottom: 5px;
    color: #2c3e50;
    font-size: 1.1rem;
}

.contact-details p {
    margin-bottom: 5px;
    color: #495057;
}

.contact-note {
    font-size: 0.9rem;
    color: #6c757d !important;
    font-style: italic;
}

.response-time {
    background-color: #e7f3ff;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #b3d7ff;
}

.response-time h3 {
    margin-bottom: 10px;
    color: #0056b3;
    font-size: 1.1rem;
}

.faq-section {
    margin-top: 50px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.faq-item {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.faq-item p {
    color: #6c757d;
    line-height: 1.6;
}

/* ===== RESPONSIVE UPDATES ===== */
@media (max-width: 768px) {
    .article-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .article-sidebar {
        position: relative;
        top: auto;
    }
    
    .article-header h1 {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .author-bio {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .ad-placeholder,
    .newsletter,
    .article-sidebar {
        display: none;
    }
    
    body {
        background-color: white;
        color: black;
    }
    
    .main {
        margin: 0;
        padding: 0;
    }
    
    .article-layout {
        grid-template-columns: 1fr;
    }
}
