/* Reset and Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --primary-navy: #0a192f;
    --secondary-navy: #112240;
    --gold-accent: #c5a059;
    --gold-highlight: #e6c888;
    --text-dark: #1f2937;
    --text-light: #e6f1ff;
    --text-muted: #8892b0;
    --white: #ffffff;
    --glass-bg: rgba(10, 25, 47, 0.85);
    --transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: #f8f9fa;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-navy);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-image {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.sunrise-text {
    color: var(--primary-navy);
}

.technology-text {
    color: var(--gold-accent);
}

.tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--primary-navy);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding-bottom: 5px;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-accent);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.bar {
    width: 30px;
    height: 2px;
    background: var(--primary-navy);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.header-placeholder {
    height: 90px;
    width: 100%;
    display: none; /* Not needed with current flex layout but kept for structure if needed */
}

/* Luxury Mesh Gradient Background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 40%, rgba(197, 160, 89, 0.15) 0%, rgba(10, 25, 47, 0) 60%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    animation: fadeInUp 1s ease-out;
}

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

.hero-title span {
    color: var(--gold-accent);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--gold-accent);
    color: var(--primary-navy);
    border: 1px solid var(--gold-accent);
}

.btn-primary:hover {
    background: var(--gold-highlight);
    border-color: var(--gold-highlight);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.3);
}

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

.btn-secondary:hover {
    background: rgba(197, 160, 89, 0.1);
    transform: translateY(-2px);
}

/* Updated Hero Visual - Elegant Abstract Network */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Solutions Section */
.solutions {
    padding: 8rem 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-navy);
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 300;
}

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

.solution-card {
    background: #fff;
    padding: 3rem 2rem;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--gold-accent);
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.solution-header {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.solution-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0;
}

.solution-badge {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-accent);
    border: 1px solid var(--gold-accent);
    padding: 4px 12px;
    border-radius: 100px;
}

.solution-card p {
    color: #555;
    margin-bottom: 2rem;
    font-weight: 300;
}

.solution-features {
    list-style: none;
    border-top: 1px solid #f0f0f0;
    padding-top: 1.5rem;
}

.solution-features li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    color: #444;
    font-size: 0.95rem;
}

.solution-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold-accent);
    font-weight: bold;
}

/* Feature Sections (Maritime, Events, Gov) */
.feature-section {
    padding: 8rem 0;
    position: relative;
}

.maritime {
    background-color: var(--secondary-navy);
    color: var(--white);
}

.maritime .vertical-text h2,
.maritime .vertical-feature h4 {
    color: var(--white);
}

.maritime .vertical-text p,
.maritime .vertical-feature p {
    color: var(--text-muted);
}

.live-events {
    background-color: var(--white);
}

.government {
    background-color: var(--primary-navy);
    color: var(--white);
}

.vertical-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.feature-section.reverse .vertical-content {
    direction: rtl;
}

.feature-section.reverse .vertical-content > * {
    direction: ltr;
}

.vertical-text h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.government .vertical-text h2 {
    color: var(--white);
}

.vertical-subtitle {
    font-size: 1.5rem;
    color: var(--gold-accent);
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.vertical-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.government .vertical-text p {
    color: var(--text-muted);
}

.vertical-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.vertical-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-navy);
}

.government .vertical-feature h4 {
    color: var(--white);
}

.vertical-feature p {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Graphics/Visuals */
.visual-container {
    width: 100%;
    height: 400px;
    background: #e0e0e0;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.maritime-visual {
    background: url('../images/maritime-bg.jpg') center/cover no-repeat;
    /* Fallback/Placeholder style */
    background: linear-gradient(to top, #1a4a6b, #4a90e2);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Simplified CSS Graphics to replace complex animations for cleaner look */
.graphic-icon {
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 0 30px rgba(0,0,0,0.1);
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: #fdfdfd;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    background: var(--white);
    padding: 0;
    border-radius: 4px;
}

.contact-info {
    padding: 3rem;
    background: var(--primary-navy);
    color: var(--white);
    border-radius: 4px;
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

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

.contact-item h4 {
    color: var(--gold-accent);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.contact-item p {
    color: var(--text-muted);
}

.contact-form {
    padding: 3rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary-navy);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: #fcfcfc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-accent);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

/* Footer */
.footer {
    background: var(--primary-navy);
    color: var(--text-muted);
    padding: 5rem 0 2rem;
    border-top: 4px solid var(--gold-accent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

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

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

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

.footer-section ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

.peplink-inline {
    display: grid;
    grid-template-columns: auto 1fr;
    row-gap: 1.5rem;
    column-gap: 2rem;
    align-items: center;
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
}

.partner-item {
    display: contents; /* Allows children to participate in the grid directly */
}

.peplink-logo-img {
    height: 65px;
    width: auto;
    justify-self: center;
}

.brnkl-logo-svg {
    height: 35px;
    width: auto;
    opacity: 1;
    justify-self: center;
}

.peplink-line {
    font-size: 1rem;
    color: #fff;
}

.peplink-line.highlight {
    font-weight: 500;
    color: var(--gold-accent);
}

@media (max-width: 480px) {
    .peplink-inline {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .partner-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        width: 100%;
    }

    .peplink-logo-img,
    .brnkl-logo-svg {
        justify-self: start; /* Reset grid alignment */
        align-self: flex-start; /* For flex container */
    }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    left: 30px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
    fill: currentColor;
}

/* About Page Specifics */
.about-company {
    padding-top: 120px;
    background: var(--white);
}

.about-card {
    background: #fff;
    padding: 2rem;
    border: 1px solid #eee;
    text-align: center;
    transition: var(--transition);
}

.about-card:hover {
    border-color: var(--gold-accent);
    transform: translateY(-5px);
}

.card-icon {
    color: var(--gold-accent);
    margin-bottom: 1.5rem;
}

.founder-photo {
    position: relative;
}

.founder-photo::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold-accent);
    z-index: 0;
}

.founder-image {
    width: 100%;
    border-radius: 2px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.about-hero-simple {
    padding: 8rem 0;
    background: #fdfdfd;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.founder-intro h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.founder-title {
    color: var(--gold-accent);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 2rem;
}

.founder-description {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.founder-intro p {
    color: #555;
    margin-bottom: 1.5rem;
}

.founder-expertise {
    margin-top: 2rem;
    background: #fff;
    padding: 2rem;
    border: 1px solid #eee;
    border-radius: 2px;
}

.founder-expertise h4 {
    margin-bottom: 1rem;
    color: var(--primary-navy);
}

.expertise-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.expertise-list li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
    color: #666;
}

.expertise-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold-accent);
}

.about-cta {
    padding: 6rem 0;
    background: var(--primary-navy);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 2rem;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-visual {
        display: none; /* Hide complex visual on tablet/mobile for simplicity */
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .founder-intro h1 {
        font-size: 2.5rem;
    }
    
    .expertise-list {
        text-align: left;
    }
    .vertical-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .feature-section.reverse .vertical-content {
        direction: ltr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer {
        padding-bottom: 120px; /* Space for fixed action buttons */
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2.25rem;
    }
}
/* Enhanced Hero Radar Visuals */
.radar-container {
    width: 450px;
    height: 450px;
    position: relative;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(10, 25, 47, 0.8), rgba(17, 34, 64, 0.4));
    border: 1px solid rgba(197, 160, 89, 0.2);
    box-shadow: 0 0 50px rgba(10, 25, 47, 0.5), inset 0 0 30px rgba(10, 25, 47, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.radar-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, transparent 69%, rgba(197, 160, 89, 0.1) 70%, transparent 71%),
        radial-gradient(circle, transparent 49%, rgba(197, 160, 89, 0.1) 50%, transparent 51%),
        radial-gradient(circle, transparent 29%, rgba(197, 160, 89, 0.1) 30%, transparent 31%),
        linear-gradient(0deg, transparent 49.5%, rgba(197, 160, 89, 0.1) 50%, transparent 50.5%),
        linear-gradient(90deg, transparent 49.5%, rgba(197, 160, 89, 0.1) 50%, transparent 50.5%);
    border-radius: 50%;
    animation: pulseGrid 4s ease-in-out infinite;
}

.radar-sweep {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 270deg, rgba(197, 160, 89, 0.2) 360deg);
    animation: radarSpin 4s linear infinite;
}

.radar-core {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--gold-accent);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--gold-accent);
    z-index: 10;
    animation: pulseCore 2s ease-in-out infinite;
}

/* Blips/Nodes */
.radar-blip {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px #fff;
    z-index: 5;
    opacity: 0; /* Starts hidden, revealed by animation */
}

.radar-blip::after {
    content: attr(data-label);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold-accent);
    font-size: 0.7rem;
    white-space: nowrap;
    opacity: 0.8;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

.blip-1 { top: 25%; right: 30%; animation: blipFade 4s linear infinite 0.5s; }
.blip-2 { bottom: 35%; left: 25%; animation: blipFade 4s linear infinite 2.2s; }
.blip-3 { top: 60%; right: 15%; animation: blipFade 4s linear infinite 3.1s; }

/* Connecting Lines */
.radar-line {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 1px;
    background: linear-gradient(90deg, var(--gold-accent), transparent);
    transform-origin: left center;
    z-index: 2;
    opacity: 0;
}

.line-1 { width: 140px; transform: rotate(-45deg); animation: lineConnect 4s linear infinite 0.5s; }
.line-2 { width: 120px; transform: rotate(145deg); animation: lineConnect 4s linear infinite 2.2s; }
.line-3 { width: 160px; transform: rotate(20deg); animation: lineConnect 4s linear infinite 3.1s; }


@keyframes radarSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulseGrid {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.02); }
}

@keyframes pulseCore {
    0%, 100% { box-shadow: 0 0 15px var(--gold-accent); transform: scale(1); }
    50% { box-shadow: 0 0 30px var(--gold-accent); transform: scale(1.2); }
}

@keyframes blipFade {
    0% { opacity: 0; }
    20% { opacity: 1; transform: scale(1.2); }
    40% { opacity: 0.6; transform: scale(1); }
    100% { opacity: 0; }
}

@keyframes lineConnect {
    0% { width: 0; opacity: 0; }
    20% { width: 100%; opacity: 0.6; }
    40% { opacity: 0.3; }
    100% { opacity: 0; }
}

@media (max-width: 768px) {
    .radar-container {
        width: 300px;
        height: 300px;
    }
}
/* Blog Section */
.blog-header {
    padding: 100px 20px;
    text-align: center;
    background-color: #f4f4f4;
}

.blog-posts {
    padding: 60px 20px;
}

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

.blog-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.blog-content {
    padding: 20px;
}

.blog-date {
    color: #666;
    font-size: 0.9em;
    display: block;
    margin-bottom: 0.5rem;
}

.blog-content h3 {
    margin: 10px 0;
    color: var(--primary-navy);
}

.blog-content p {
    color: #555;
    line-height: 1.6;
}

