body {
    background: #f9f5f0;
    font-size: 18px;
    line-height: 1.6em;
    margin: 0 auto;
    padding: 0 5px;
    }
    
#site-header {
    background-color: white;
    color: blue;
    padding: 5px;
    position: relative;
    text-align: center;
    }
    
#site-header .site-title {
    font-size: 20px;
    letter-spacing: 1px;
    margin: 5px;
    white-space: nowrap;
    font-weight: bold;
    }
    
#site-header .tagline {
    font-size: 16px;
    margin: 5px 0 0;
    }

#site-header nav ul {
    display: flex;
    list-style-type: none;
    padding: 0;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    }

#site-header nav a {
    font-size: 12px;
    font-weight: bold;
    border: solid 1px;
    color: darkred;
    margin: 5px;
    text-decoration: none;
    white-space: nowrap;
    }
    
#page-header {
    text-align: center;
    margin-bottom: 20px;
    }
    
h1 {
    font-size: 1.6rem;
    line-height: 1.2;
    }

h2 {
    font-size: 1.4rem;
    line-height: 1.2;
    }

h3 {
    font-size: 1.2rem;
    line-height: 1.2;
    }
        
.rating {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    color: #333;
    margin: 10px 0;
    white-space: nowrap;
    }

.stars {
    font-size: 2.0em;
    color: gold;
    }

.update-status {
    font-size: 0.6em;
    }

img {
    display: block;
    margin: 15px auto;
    max-width: 100%;
    height: auto;
    width: 250px;
    }
    
a {
    color: darkblue;
    }
    
.download-btn {
    display: block;
    width: fit-content;
    margin: 10px auto;
    border: dotted 2px;
    border-color: red;
    border-radius: 50px;
    color: darkred;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    }

.download-notice {
    font-family: sans-serif;
    font-size: 16px;
    line-height: 1.5;
    background-color: #f0f8ff;
    border: 1px solid #c0d9e9;
    border-radius: 8px;
    padding: 15px 20px;
    margin: 20px 0;
    color: #333;
    font-weight: 500;
    text-align: center;
    }

.download-notice::before {
    content: "💡";
    margin-right: 10px;
    }

footer {
    background-color: white;
    color: blue;
    padding: 5px;
    text-align: center;
    }

.disclaimer {
    font-size: 14px;
    margin: 10px 0;
    }
    
.footer-policies {
    color: darkgreen;
    }
    
.footer-policies h4 {
    margin-bottom: 0;
    }
    
.footer-policies ul {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin-top: 0;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    }

.footer-policies a {
    font-size: 10px;
    border: dotted 1px;
    border-radius: 10px;
    color: darkgreen;
    margin: 0 3px;
    text-decoration: none;
    white-space: nowrap;
    }

.footer-links {
    margin-top: 15px;
    }

.footer-links a {
    border: dotted 1px;
    color: darkred;
    margin: 0 10px;
    text-decoration: none;
    font-size: 12px;
    white-space: nowrap;
    }
    
    .read-more {
    justify-content: center;
    text-align: center;
    margin: 20px;
    font-size: 13px;
    color: darkgreen;
    text-decoration: none;
    }
    
    /* Container for the related exams section */
    .related-exams {
    margin: 20px 0;
    padding: 20px;
    background-color: #f9f9f9; /* Light grey background for contrast */
    border-radius: 8px;
    }

    /* Grid layout for desktop, single column for mobile */
    .related-exams .grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    }

    /* Styling the group headers */
    .exam-group h4 {
    color: #0056b3; /* Primary blue to match your header */
    border-bottom: 2px solid #ddd;
    padding-bottom: 8px;
    margin-bottom: 15px;
    }

    /* Clean up the lists */
    .exam-group ul {
    list-style: none;
    padding-left: 0;
    }

    .exam-group li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    }

    .exam-group li a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
    }

    .exam-group li a:hover {
    color: #0056b3;
    text-decoration: underline;
    }
    
    .testimonials {
            padding: 30px 20px;
            background-color: var(--bg-light);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
    
        .container {
            max-width: 1100px;
            margin: 0 auto;
        }
    
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: var(--text-dark);
            margin-bottom: 20px;
        }
    
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }
    
        .testimonial-card {
            background: var(--white);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
    
        .testimonial-card:hover {
            transform: translateY(-5px);
        }
    
        .starss {
            color: #fbbf24;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }
    
        .quote {
            color: var(--text-dark);
            line-height: 1.6;
            font-style: italic;
            margin-bottom: 15px;
        }
    
        .user-info {
            display: flex;
            align-items: center;
            gap: 15px;
        }
    
        .name {
            margin: 0;
            font-size: 1rem;
            color: var(--text-dark);
        }
    
        .email {
            font-size: 0.85rem;
            color: var(--text-light);
        }
    
        /* Mobile Adjustments */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
        }
        
        /* Contact Section Styling */
.contact {
    margin: 20px 0;
    padding: 30px 20px;
    background-color: #ffffff;
    border: 2px solid #0056b3; /* Matching your primary blue */
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact h2 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 25px;
    line-height: 1.4;
}

.contact p {
    margin: 15px 0;
    font-weight: bold;
    color: #444;
}

/* Transform links into easy-to-tap buttons for mobile users */
.contact a {
    display: inline-block;
    padding: 12px 25px;
    margin-top: 5px;
    background-color: #f0f7ff;
    color: #0056b3;
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid #0056b3;
    transition: all 0.3s ease;
    width: 80%; /* Making them wide for easy thumb-tapping */
    max-width: 300px;
}

/* Specific styling for the WhatsApp link to build trust */
.contact a[href*="wa.me"] {
    background-color: #25D366; /* WhatsApp Green */
    color: maroon;
    border: none;
}

.contact a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    filter: brightness(1.1);
}

/* Responsive adjustment for desktop */
@media (min-width: 768px) {
    .contact a {
        width: auto;
    }
}
