   /* Body */
body {
    padding: 0px;
    font-family: 'Poppins', sans-serif;
    background-color: #f9fafb; /* Light gray for AdSense */
}

/* Container */
.container {
    width: 100%; /* Full width on small screens */
}

/* Format Buttons */
.format-btn {
    transition: all 0.3s ease;
}

.format-btn.active {
    background-color: #1e40af; /* Blue-800 */
    border-color: #ffffff;
}

/* Card Styles */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e7eb;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Expandable Section */
.expandable {
    transition: max-height 0.5s ease;
    background: #ffffff;
}

.expandable.open {
    max-height: 1200px;
}

/* List Items */
.expandable li {
    display: flex;
    padding: 0.75rem;
    background: #f9fafb;
    border-radius: 0.75rem;
    font-weight: 600;
    color: #374151; /* Gray-700 */
    transition: all 0.3s ease;
    border: 1px solid #d1d5db;
}

.expandable li:hover {
    background: #f3f4f6;
    transform: scale(1.02);
}

.expandable li::before {
    content: "\f11e"; /* Font Awesome trophy */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 0.25rem;
    color: #2563eb; /* Blue-600 */
}

/* Media Queries */
@media (max-width: 740px) {
    .container {
        padding-left: 0.1rem;
        padding-right: 0.1rem;
    }
    .card {
        padding: 0.3rem;
    }
    .expandable.open {
        padding: 0rem;
    }
    .format-btn {
        padding: 0.5rem;
        font-size: 0.875rem;
    }
    h1 {
        font-size: 1.875rem; 
			 color:white;
    }
}