<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto Condensed', sans-serif;
}

body {
    background: linear-gradient(135deg, #e6f3ff, #b3d4fc); /* Light blue gradient */
    color: #2d3748; /* Dark slate text */
    line-height: 1.6;
}

/* Header Placeholder */
/* #header {
    min-height: 60px; /* Adjust based on your header */
/* }  */

/* Fact Section */
.fact-section {
    width: 70%;
    margin: 0 auto;
    padding: 20px 20px;
    line-height: 1.6;
}

/* Heading */
.heading-chapter {
    text-align: center;
    margin-bottom: 50px;
    animation: slideIn 1s ease-out;
}

.heading-chapter h1 {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #2b6cb0; /* Deep blue */
    background: linear-gradient(90deg, #2b6cb0, #63b3ed); /* Blue gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
}

.heading-chapter h3{
    font-size: 1.2rem;
    font-family: 'Roboto Condensed', sans-serif;
}


/* Fact Container */
.fact-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(1000px, 1fr));
    gap: 10px;
}

/* Individual Fact */
.fact {
    background: #ffffff;
    border-radius: 10px;
    padding: 10px 25px;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    position: relative;
    overflow: hidden;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.fact:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: #ebf8ff; /* Light blue hover */
}

/* Decorative Line Effect */
.fact::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #63b3ed; /* Light blue */
    transition: width 0.3s ease;
}

.fact:hover::after {
    width: 100%;
}



/* Animation */
@keyframes slideIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .heading-chapter h1 {
        font-size: 2.3rem;
    }

    .fact-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 15px;
    }

    .fact {
        font-size: 1rem;
        padding: 15px;
    }
}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
    .fact-section {
        padding: 20px 15px;
        width: 100%;
    }

    .heading-chapter h1 {
        font-size: 1.3rem;
    }

    .fact-container {
       flex-direction: column;
    }

    .fact{
        font-size: 0.95rem;
        padding: 10px;
    }
  
}</pre></body></html>