/* ===================================
   Richmond Terrace Capital Style Match
   =================================== */

:root {
    /* Exact RTC Color Palette */
    --primary-dark: #1a1a2e;
    --primary-navy: #16213e;
    --teal-accent: #4ecdc4;
    --teal-dark: #3db9b1;
    --gold-stars: #ffd700;
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #eeeeee;
    --gray-300: #e0e0e0;
    --gray-400: #bdbdbd;
    --gray-500: #9e9e9e;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;
    
    /* Typography */
    --font-primary: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 50px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    
    /* Container */
    --container-max-width: 1200px;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: #333;
    background-color: var(--white);
}

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

h1 { font-size: 3rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--teal-accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===================================
   Buttons - RTC Style
   =================================== */

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--teal-accent);
    color: var(--primary-dark);
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: var(--teal-dark);
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-primary::after {
    content: '↗';
    font-size: 1rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: transparent;
    color: var(--teal-accent);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    border: 2px solid var(--teal-accent);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background-color: var(--teal-accent);
    color: var(--primary-dark);
    text-decoration: none;
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: transparent;
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    border: 2px solid var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-teal {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--teal-accent);
    color: var(--primary-dark);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-teal::after {
    content: '↗';
}

.btn-teal:hover {
    background-color: var(--teal-dark);
}

/* ===================================
   Hero Section - RTC Style
   =================================== */

.hero {
    background: linear-gradient(rgba(22, 33, 62, 0.85), rgba(22, 33, 62, 0.9)), 
                url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1920&q=80') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 6rem 0 4rem;
}

.hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    color: var(--white);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-content > p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 500px;
}

/* Stats Display */
.hero-stats {
    margin-bottom: 2rem;
}

.stat-display {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--teal-accent);
    line-height: 1;
}

.stat-percent {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--teal-accent);
}

.stat-pa {
    font-size: 1.25rem;
    color: var(--white);
    margin-left: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--white);
    opacity: 0.9;
}

/* Hero Actions */
.hero-actions {
    margin-top: 2rem;
}

.hero-actions .btn-primary {
    margin-bottom: 1rem;
}

.action-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.action-link {
    color: var(--white);
    text-decoration: underline;
    font-size: 0.9rem;
}

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

/* Hero Card */
.hero-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
    max-width: 400px;
    margin-left: auto;
}

.hero-card-badge {
    width: 80px;
    height: 80px;
    background: var(--teal-accent);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary-dark);
    font-size: 0.7rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

.hero-card-stars {
    color: var(--gold-stars);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.hero-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.hero-card p {
    color: var(--gray-600);
    margin: 0;
}

/* ===================================
   Value Props - Below Hero
   =================================== */

.value-props {
    background: var(--white);
    padding: 2rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.value-props-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.value-prop {
    font-size: 1rem;
    color: var(--gray-700);
    font-weight: 500;
}

/* ===================================
   Section Labels - Badge Style
   =================================== */

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--teal-accent);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

/* ===================================
   Content Sections
   =================================== */

.content-section {
    padding: 5rem 0;
}

.content-section.alt {
    background: var(--gray-50);
}

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

.section-grid.reverse {
    direction: rtl;
}

.section-grid.reverse > * {
    direction: ltr;
}

.section-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.section-content p {
    color: var(--gray-700);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.section-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

.image-placeholder {
    background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-300) 100%);
    border-radius: var(--radius-lg);
    padding: 6rem 2rem;
    text-align: center;
    color: var(--gray-500);
    font-size: 1rem;
}

/* Best Performing Funds Badge */
.highlight-badge {
    display: inline-block;
    background: var(--teal-accent);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* ===================================
   Diverse Funds Section
   =================================== */

.diverse-funds {
    padding: 5rem 0;
    text-align: center;
}

.diverse-funds .section-header {
    max-width: 700px;
    margin: 0 auto 3rem;
}

.diverse-funds h2 {
    margin-bottom: 1rem;
}

.asset-types {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.asset-type {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.asset-type:hover {
    border-color: var(--teal-accent);
    box-shadow: var(--shadow-sm);
}

.asset-type h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0;
}

/* ===================================
   Top Performers Section
   =================================== */

.top-performers {
    background: var(--gray-50);
    padding: 5rem 0;
    text-align: center;
}

.top-performers .section-header {
    max-width: 700px;
    margin: 0 auto;
}

.return-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
    font-size: 1.125rem;
}

.return-stats .stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.return-stats .label {
    color: var(--gray-600);
}

.return-stats .value {
    font-weight: 700;
    color: var(--primary-dark);
}

.return-stats .divider {
    color: var(--gray-400);
    font-size: 1.5rem;
}

.performance-note {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-style: italic;
    max-width: 500px;
    margin: 1rem auto 2rem;
}

/* ===================================
   Unlock Wealth Section
   =================================== */

.wealth-potential {
    background: var(--primary-dark);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.wealth-potential h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.wealth-potential p {
    max-width: 900px;
    margin: 0 auto;
    opacity: 0.9;
    font-size: 1.0625rem;
    line-height: 1.8;
}

/* ===================================
   Three Column Features
   =================================== */

.features-three {
    padding: 5rem 0;
}

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

.feature-box {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-box:hover {
    border-color: var(--teal-accent);
    box-shadow: var(--shadow-md);
}

.feature-label {
    display: inline-block;
    background: rgba(78, 205, 196, 0.15);
    color: var(--teal-dark);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.feature-box h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.feature-box p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* ===================================
   Support Section
   =================================== */

.support-section {
    background: var(--gray-50);
    padding: 5rem 0;
}

.support-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.support-header h2 {
    margin-bottom: 1rem;
}

.support-header p {
    color: var(--gray-700);
    line-height: 1.7;
}

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

.question-box {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.question-box h3 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-800);
    line-height: 1.6;
    margin: 0;
}

/* ===================================
   CTA Section
   =================================== */

.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 100%);
    padding: 4rem 0;
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* ===================================
   Modal Styles
   =================================== */

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 2rem;
    border-radius: var(--radius-lg);
    max-width: 450px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-500);
}

.close:hover {
    color: var(--gray-900);
}

.modal-form {
    margin-top: 1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--gray-700);
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: var(--teal-accent);
}

.form-footer {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.btn-full {
    width: 100%;
}

/* ===================================
   Page Header
   =================================== */

.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 100%);
    color: var(--white);
    padding: 5rem 0 3rem;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.page-header p {
    opacity: 0.9;
    font-size: 1.125rem;
}

/* ===================================
   Utilities
   =================================== */

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

.section-cta {
    text-align: center;
    margin-top: 2rem;
}

/* ===================================
   Responsive
   =================================== */

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content > p {
        max-width: 100%;
    }
    
    .hero-card {
        margin: 2rem auto 0;
    }
    
    .section-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-grid.reverse {
        direction: ltr;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .asset-types {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .value-props-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .support-questions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .return-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .return-stats .divider {
        display: none;
    }
}

/* ===================================
   Page Hero - RTC Style
   =================================== */

.page-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #4ecdc4 100%);
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,
        rgba(78, 205, 196, 0.1) 10px,
        rgba(78, 205, 196, 0.1) 20px
    );
    pointer-events: none;
}

.page-hero h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    position: relative;
    z-index: 1;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

/* ===================================
   Story Card - RTC Style
   =================================== */

.story-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-md);
    margin-top: 2rem;
}

.story-card h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.story-card p {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

/* ===================================
   Mission Section - RTC Style
   =================================== */

.mission-section {
    background: var(--teal-accent);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 40%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.mission-card {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.mission-card h3 {
    font-size: 1.75rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    line-height: 1.4;
    font-weight: 600;
}

.mission-section .btn-primary {
    background: var(--primary-dark);
    color: var(--white);
}

.mission-section .btn-primary:hover {
    background: var(--primary-navy);
}

/* ===================================
   Content Cards - General
   =================================== */

.info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.info-card p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* ===================================
   Stats Grid
   =================================== */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

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

.stat-item .number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--teal-accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-item .label {
    font-size: 0.9375rem;
    color: var(--gray-600);
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .mission-card h3 {
        font-size: 1.25rem;
    }
}

/* ===================================
   Platform Page Styles
   =================================== */

.platform-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.platform-feature {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.platform-feature:hover {
    border-color: var(--teal-accent);
    box-shadow: var(--shadow-md);
}

.platform-feature .icon {
    width: 60px;
    height: 60px;
    background: rgba(78, 205, 196, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.platform-feature h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.platform-feature p {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

@media (max-width: 768px) {
    .platform-features {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   FAQ Accordion
   =================================== */

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

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.25rem;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--gray-50);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--teal-accent);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '−';
}

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

.faq-item.active .faq-answer {
    padding: 0 1.25rem 1.25rem;
    max-height: 500px;
}

.faq-answer p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* ===================================
   Contact Page
   =================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

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

.contact-form h2 {
    margin-bottom: 1.5rem;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    border: 1px solid var(--gray-200);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-card .icon {
    width: 50px;
    height: 50px;
    background: rgba(78, 205, 196, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-card h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.contact-card p {
    color: var(--gray-600);
    margin: 0;
    font-size: 0.9375rem;
}

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

/* ===================================
   News/Articles
   =================================== */

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

.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

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

.news-card-image {
    height: 200px;
    background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-300) 100%);
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

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

.news-card-date {
    font-size: 0.8125rem;
    color: var(--teal-accent);
    margin-bottom: 0.5rem;
}

.news-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

.news-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    line-height: 1.6;
}

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