/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --maroon: #631000;
    --yellow: #FFBF00;
    --grey: #D9D9D9;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
}

/* Navbar Styles */
.navbar {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: inline-block;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    transition: font-weight 0.2s ease;
    position: relative;
}

.nav-link:hover {
    font-weight: 700;
}

.dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    list-style: none;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 10px 0;
    margin-top: 10px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s ease;
}

.dropdown-menu a:hover {
    background: var(--grey);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Hero Section with Curved Maroon Shape */
.policy-hero {
    position: relative;
    width: 110%;
    height: 200px;
    overflow: hidden;
    margin-left: -5%;
}

.hero-curve {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--maroon);
    border-radius: 0 0 50% 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--yellow);
    text-align: center;
    letter-spacing: 2px;
}

/* Policy Content Section */
.policy-content {
    padding: 40px 0;
    margin-bottom: 40px;
}

.policy-grid {
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 60px;
    align-items:normal;
}

.policy-section {
    display: flex;
    gap: 8px;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
}

.policy-section:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.section-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--maroon);
    min-width: 40px;
    line-height: 1;
    padding-top: 3px;
}

.section-content {
    flex: 1;
}

.section-heading {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--maroon);
    margin-bottom: 12px;
    line-height: 1.3;
}

.section-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #333;
    margin-bottom: 10px;
}

.subsection {
    margin: 15px 0;
    padding-left: 15px;
    border-left: 3px solid var(--yellow);
}

.subsection-heading {
    font-size: 1rem;
    font-weight: 600;
    color: var(--maroon);
    margin-bottom: 8px;
}

.policy-list {
    list-style: none;
    padding-left: 0;
    margin: 10px 0;
}

.policy-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 5px;
    line-height: 1.5;
    color: #4f4f4f;
}

.policy-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--maroon);
    font-weight: bold;
    font-size: 1.2rem;
}

.highlight-box {
    background: var(--yellow);
    color: #fff;
    padding: 12px 15px;
    border-radius: 6px;
    margin: 15px 0;
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(99, 16, 0, 0.2);
}

/* Policy Image Boxes Section */
.policy-image-boxes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.image-box {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.image-box img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.image-name {
    padding: 10px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--maroon);
    margin: 0;
}

.contact-info {
    background: var(--yellow);
    padding: 12px 15px;
    border-radius: 6px;
    margin-top: 12px;
}

.contact-info p {
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info strong {
    color: var(--maroon);
    font-weight: 600;
}

/* Footer */
.footer {
    background: rgb(35, 0, 0);
    color: #fff;
    padding: 40px 10px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
}

.footer-text {
    font-size: 0.9rem;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.9);
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    background: #fff;
    overflow: hidden;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

.whatsapp-button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive Design */
@media (max-width: 968px) {
    .policy-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .policy-image-boxes {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .dropdown-menu {
        position: static;
        display: none;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        box-shadow: none;
        background: rgba(0,0,0,0.05);
        margin-top: 0;
        padding: 0;
        margin-left: 20px;
        transition: opacity 0.3s ease, max-height 0.3s ease, padding 0.3s ease;
    }

    .dropdown.active .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        padding: 10px 0;
        margin-top: 10px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .policy-hero {
        width: 110%;
        height: 250px;
        margin-left: -5%;
        margin-top: 0;
        margin-bottom: 40px;
    }

    .hero-curve {
        border-radius: 0 0 50% 50%;
        padding: 30px 20px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .policy-content {
        padding: 30px 0;
        margin-bottom: 30px;
    }

    .policy-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 25px;
    }

    .policy-section {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
        margin-bottom: 0;
    }

    .section-number {
        font-size: 1.8rem;
        min-width: auto;
        padding-top: 0;
    }

    .section-heading {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .section-content p {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }

    .subsection {
        padding-left: 12px;
        margin: 12px 0;
    }

    .subsection-heading {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }

    .policy-image-boxes {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 25px;
        margin-bottom: 25px;
    }

    .image-box img {
        height: 150px;
    }

    .image-name {
        padding: 8px;
        font-size: 0.85rem;
    }

    .whatsapp-button {
        width: 55px;
        height: 55px;
        bottom: 15px;
        left: 15px;
    }
}

@media (max-width: 480px) {
    .policy-hero {
        width: 110%;
        height: 200px;
        margin-left: -5%;
        margin-top: 0;
        margin-bottom: 30px;
    }

    .hero-curve {
        border-radius: 0 0 50% 50%;
        padding: 20px 15px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .policy-content {
        padding: 25px 0;
        margin-bottom: 25px;
    }

    .policy-grid {
        gap: 10px;
        margin-bottom: 20px;
    }

    .policy-section {
        padding: 12px;
        gap: 8px;
    }

    .section-number {
        font-size: 1.5rem;
    }

    .section-heading {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .section-content p {
        font-size: 0.8rem;
        line-height: 1.5;
        margin-bottom: 8px;
    }

    .subsection {
        padding-left: 10px;
        margin: 10px 0;
    }

    .subsection-heading {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }

    .policy-list li {
        font-size: 0.8rem;
        padding-left: 18px;
        margin-bottom: 4px;
    }

    .highlight-box {
        padding: 10px 12px;
        font-size: 0.85rem;
        margin: 12px 0;
    }

    .policy-image-boxes {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .image-box img {
        height: 180px;
    }

    .image-name {
        padding: 8px;
        font-size: 0.8rem;
    }

    .contact-info {
        padding: 10px 12px;
        margin-top: 10px;
    }

    .contact-info p {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
        bottom: 10px;
        left: 10px;
    }
}

