/* ===============================
   GLOBAL
=================================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
     background: linear-gradient(135deg, #faf5de, #eaddff, #ffd6e8);
    color: #303153;
}

/* ===============================
   TOP BAR
=================================*/
.contact-top-bar {
    padding: 20px 40px;
    display: flex;
    flex-direction: column;   /* Stack vertically */
    align-items: flex-start;  /* Align left */
    gap: 40px;
}

/* Logo */
.logo-brand{
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
}
.brand-logo{
    height: 40px;
    width: 40px;
    border-radius: 50%;
    margin-right: 4px;
}

.logo-medi{
    color: #0055ff;
}

.logo-coupons{
    color: #ff1de1;
    margin-left: 2px;
}

.logo-brand:hover .logo-coupons{
    color: #ff4da6;
    transition: 0.3s ease;
}

/* Back Link */
.back-home-link{
    text-decoration: none;
    font-size: 0.95rem;
    color: #303153;
    font-weight: 500;
    transition: 0.3s ease;
}

.back-home-link:hover{
    color: #000;
}

/* ===============================
   PYQ SECTION
=================================*/

.pyq-section{
    padding: 10px 40px;
}

.pyq-container{
    max-width: 1100px;
    margin: auto;
}

.pyq-title{
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
}

.pyq-subtitle{
    text-align: center;
    margin-bottom: 40px;
    color: #555;
}

/* Grid */

.pyq-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
    gap: 30px;
}

/* Card */

.pyq-card{
    background: rgba(255,255,255,0.7);
    padding: 25px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.pyq-card h3{
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* List */

.pyq-list{
    list-style: none;
}

.pyq-list li{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* Download Button */

.download-btn{
    text-decoration: none;
    background: #0055ff;
    color: white;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    transition: 0.3s;
}

.download-btn:hover{
    background: #003cc5;
}

/* Responsive */

@media(max-width:768px){

.pyq-section{
    padding: 50px 20px;
}

.pyq-title{
    font-size: 1.6rem;
}

}
