/* body {
    background-color: #ffffff;
    color: #333;
    padding: 40px 20px;
} */

/* --- Quick Access Styles --- */
.quick-access-section {
    text-align: center;
    margin-bottom: 40px;
    width: 100%;
}

.section-title {
    font-size: 0.85rem;
    color: #0077b6;
    padding-top: 10px;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    font-weight: 700;
}

.tags-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    max-width: 100%;
    margin: 0 auto;
}

.tag-btn {
    text-decoration: none;
    color: #4a5568;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    transition: all 0.2s ease;
}

.tag-btn:hover {
    border-color: #0077b6;
    color: #0077b6;
    box-shadow: 0 4px 8px rgba(0,71,182,0.1);
}

.section-divider {
    border: 0;
    height: 1px;
    background: #f0f0f0;
    margin: 40px auto;
    max-width: 100%;
}

/* --- Info Card Section Styles --- */
.info-card-section {
    max-width: 1100px;
    margin: 0 auto;
}

.container {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* Left Image Card */
.image-card {
    flex: 1;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    display: flex;
}

.image-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 24px;
}

/* Right Content Side */
.content-side {
    flex: 1;
}

.sub-title {
    font-size: 0.8rem;
    color: #0077b6;
    letter-spacing: 1.5px;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.main-heading {
    font-size: 2.2rem;
    color: #1a365d;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.description {
    color: #718096;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Features List styling */
.features-list {
    list-style: none;
    margin-bottom: 30px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #4a5568;
}

/* Shield/Tick Icon (Aap image ke blue shields ki tarah custom SVG bhi use kar sakte hain) */
.features-list .icon {
    color: #38bdf8;
    font-size: 1.1rem;
}

/* Call to Action Buttons */
.btn-group {
    display: flex;
    gap: 15px;
}

.btn {
    text-decoration: none;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: #f59e0b; /* Yellow/Orange shade from "quick_access.PNG" */
    color: #fff;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
    background-color: #d97706;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
    background-color: #f8fafc;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.btn-secondary:hover {
    background-color: #f1f5f9;
    border-color: #cbd5e1;
}

/* --- Responsive Layout --- */
@media (max-width: 900px) {
    .container {
        flex-direction: column;
        gap: 30px;
    }
    
    .image-card, .content-side {
        width: 100%;
    }
    
    .main-heading {
        font-size: 1.8rem;
    }
}


/* --- Responsive / Mobile Styles --- */
@media screen and (max-width: 768px) {
    .info-card-section {
        padding: 0 20px; /* Screen ke kinaron se space dene ke liye */
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .container {
        flex-direction: column; /* Image aur content ko upar-neeche stack karne ke liye */
        gap: 30px; /* Beech ka gap thoda kam kiya */
    }

    .image-card, .content-side {
        width: 100%; /* Mobile par full width lene ke liye */
    }

    .main-heading {
        font-size: 1.8rem; /* Mobile par heading thodi chhoti ki hai */
        margin-bottom: 15px;
    }

    .description {
        font-size: 0.9rem;
    }

    .features-list li {
        font-size: 0.9rem;
    }

    .btn-group {
        flex-direction: column; /* Buttons ko upar-neeche lagane ke liye */
        gap: 12px;
        width: 100%;
    }

    .btn {
        width: 100%; /* Buttons mobile screen par full width ache lagte hain */
        text-align: center;
        padding: 14px 28px;
    }
}