:root {
    --primary-blue: #0056b3;
    --dark-blue: #002a5c;
    --light-blue: #e3f2fd;
    --accent-color: #00d4ff;
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;
    --bg-color: #f8f9fa;
    --card-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    --card-hover-shadow: 0 8px 25px rgba(0, 86, 179, 0.15);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* --- Blue Ribbon Header --- */
.blue-ribbon {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    color: var(--white);
    padding: 3rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.blue-ribbon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    animation: rotate 20s linear infinite;
    z-index: 0;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.blue-ribbon .container {
    position: relative;
    z-index: 1;
}

.blue-ribbon h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.blue-ribbon .highlight {
    color: var(--accent-color);
}

.blue-ribbon .subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

/* --- Navigation Tiles --- */
.tiles-container {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    padding: 1rem 1.5rem;
    /* Reduced vertical padding */
    gap: 1.5rem;
    background: var(--white);
    margin-top: -1.5rem;
    /* Slightly reduced overlap */
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: flex-start;
    align-items: center;
    /* Center items vertically */
    height: 140px;
    /* Fixed height for consistency */
}

/* Center tiles on large screens if they fit */
@media (min-width: 1200px) {
    .tiles-container {
        justify-content: center;
    }
}

.tiles-container::-webkit-scrollbar {
    display: none;
}

.tile {
    min-width: 180px;
    /* Slightly reduced width */
    height: 100%;
    /* Fill container height */
    padding: 15px;
    /* Compact padding */
    border-radius: 12px;
    background: var(--white);
    box-shadow: var(--card-shadow);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 86, 179, 0.05);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.tile:hover {
    transform: translateY(-3px);
    background: var(--primary-blue);
    /* Hover Blue Background */
    box-shadow: var(--card-hover-shadow);
    border-color: var(--primary-blue);
}

.tile .icon {
    font-size: 1.5rem;
    /* Smaller icon */
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.tile:hover .icon {
    transform: scale(1.1);
    color: var(--white);
    /* White icon on hover */
}

.tile h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    /* Smaller Font */
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--dark-blue);
    transition: color 0.3s ease;
}

.tile:hover h3 {
    color: var(--white);
    /* White text on hover */
}

.tile p {
    font-size: 0.8rem;
    color: var(--text-light);
    transition: color 0.3s ease;
    line-height: 1.2;
}

.tile:hover p {
    color: rgba(255, 255, 255, 0.8);
    /* Light white text on hover */
}

.tile-bg {
    display: none;
    /* Remove the gradient overlay to keep it clean blue */
}


/* --- Main Content --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.content-wrapper {
    padding-top: 3rem;
    padding-bottom: 4rem;
}

.content-section {
    margin-bottom: 5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header {
    border-left: 5px solid var(--accent-color);
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--dark-blue);
    font-weight: 700;
}

.section-body {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.grid-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    /* Content lists 2/3, News 1/3 */
    gap: 2rem;
}

/* --- Content Blocks --- */
.content-blocks {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.block {
    background: #f4f4f4;
    /* Light Grey Background */
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: none;
    /* Removed Shadow */
    border-left: 4px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.block:hover {
    background: #e9ecef;
    /* Slightly darker grey on hover */
    transform: translateX(5px);
}

.block h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--dark-blue);
    margin-bottom: 0.8rem;
}

.block p {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.impact {
    display: inline-block;
    background: var(--light-blue);
    color: var(--primary-blue);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    /* text-transform: uppercase; REMOVED per user request */
    letter-spacing: 0px;
}

/* --- Executive Snapshot Special --- */
.main-points ul {
    list-style: none;
    margin-top: 1.5rem;
}

.main-points li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.05rem;
}

.main-points i {
    color: var(--accent-color);
    margin-top: 0.3rem;
    background: var(--dark-blue);
    padding: 0.3rem;
    border-radius: 50%;
    font-size: 0.7rem;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* --- News Feed --- */
.news-feed {
    background: transparent;
    /* Removed background color */
    padding: 1.5rem;
    /* border-radius: 16px; Removed border radius since transparency makes it invisible */
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.news-feed h4 {
    font-family: var(--font-heading);
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(0, 86, 179, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-feed h4::before {
    content: '\f1ea';
    /* FontAwesome newspaper icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-blue);
}

.news-item {
    background: var(--light-blue);
    /* Light Blue Background */
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: none;
    /* Clean look */
    transition: transform 0.2s;
    text-decoration: none;
    display: block;
    color: inherit;
    border-left: 3px solid transparent;
}

.news-item:hover {
    transform: translateY(-2px);
    border-left-color: var(--primary-blue);
    background: #d0e7ff;
    /* Slightly darker light blue on hover */
}

.news-item .source {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.3rem;
    display: block;
}

.news-item .title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-blue);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --- Future 2026 --- */
.highlight-section {
    background: var(--dark-blue);
    color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.highlight-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05));
    pointer-events: none;
}

.highlight-section .section-header h2 {
    color: var(--white);
    border-left-color: var(--accent-color);
}

.takeaways-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.takeaways-list li {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.takeaways-list i {
    font-size: 1.8rem;
    color: var(--accent-color);
}


/* --- Footer --- */
footer {
    text-align: center;
    padding: 2rem;
    color: var(--text-light);
    font-size: 0.9rem;
    background: var(--white);
    margin-top: 3rem;
    border-top: 1px solid #eee;
}

/* --- Responsive Layout Adjustments --- */
@media (max-width: 900px) {
    .grid-layout {
        grid-template-columns: 1fr;
        /* Stack on smaller screens */
    }

    .tiles-container {
        padding-bottom: 1.5rem;
    }

    .blue-ribbon h1 {
        font-size: 2.5rem;
    }
}