
        /* ==========================
           Global Styles
        ========================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Times New Roman', Times, serif;
            background: #fff;
            color: #333;
            line-height: 1.6;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* ==========================
           Header
        ========================== */
        header {
            background: #c62828;
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 5%;
            position: relative;
        }

        header .logo {
            font-size: 22px;
            font-weight: bold;
            white-space: nowrap;
        }

        nav ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-end;
        }

        nav ul li {
            margin: 0 8px;
        }

        nav ul li a {
            text-decoration: none;
            color: white;
            font-weight: bold;
            font-size: 16px;
            white-space: nowrap;
            transition: all 0.3s ease;
        }

        nav ul li a:hover {
            text-decoration: underline;
            transform: translateY(-2px);
        }

        /* ==========================
           Home Page (Carousel)
        ========================== */
        .carousel {
            position: relative;
            width: 100%;
            height: auto;
            min-height: 500px;
            overflow: hidden;
            margin-bottom: 0px;
            display: flex;
            align-items: center;
        }

        .carousel .slide {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
            width: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            position: absolute;
            padding: 30px 5%;
        }

        .carousel .slide.active {
            opacity: 1;
            position: relative;
        }

        .carousel img {
            width: 100%;
            max-width: 500px;
            height: auto;
            object-fit: cover;
            border-radius: 50%;
            border: 8px solid #c62828;
        }

        .caption {
            width: 45%;
            color: black;
        }

        .caption h2 {
            font-size: 22px;
        }

        .caption h1 {
            font-size: 42px;
            color: #ff4444;
            margin: 10px 0;
        }

        .caption p {
            font-size: 18px;
            margin-top: 10px;
            margin-bottom: 30px;
        }

        .caption .btn {
            background: #c62828;
            color: white;
            padding: 12px 25px;
            text-decoration: none;
            font-weight: bold;
            border-radius: 20px;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .caption .btn:hover {
            background: #a81f1f;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        /* ==========================
           Footer
        ========================== */
        footer {
            background: #c62828;
            color: white;
            text-align: center;
            padding: 25px 35px;
            margin-top: 10px;
            font-size: 18px;
        }

        /* ==========================
           Services Page
        ========================== */
        .services-banner {
            background: linear-gradient(to right, #a81f1f, #0000);
            color: white;
            text-align: center;
            padding: 50px 20px;
            margin-top: 30px;
            height: auto;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .services-banner h1 {
            font-size: 50px;
            margin: 0;
        }

        .services-banner p {
            font-size: 16px;
        }

        .services-description {
            max-width: 1000px;
            margin: 40px auto;
            padding: 0 20px;
            font-size: 18px;
            line-height: 1.6;
            text-align: center;
        }

        .services-grid {
            display: flex;
            flex-direction: column;
            gap: 30px;
            max-width: 1100px;
            margin: 40px auto;
            padding: 0 20px;
        }

        .service-box {
            display: flex;
            align-items: center;
            gap: 20px;
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .service-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }

        .service-box:nth-child(odd) {
            flex-direction: row;
        }

        .service-box:nth-child(even) {
            flex-direction: row-reverse;
        }

        .service-box img {
            width: 40%;
            height: 250px;
            object-fit: cover;
            border-radius: 10px;
        }

        .service-box .content {
            flex: 1;
        }

        .service-box h2 {
            color: #c62828;
            margin-bottom: 5px;
            font-size: 30px;
        }

        .service-box h3 {
            font-size: 22px;
            margin-bottom: 10px;
        }

        .service-box h4 {
            font-size: 18px;
            margin-top: 10px;
            color: #333;
        }

        .service-box ul {
            font-size: 16px;
            margin: 10px 0;
            padding-left: 20px;
        }

        .service-box ul li {
            margin-bottom: 5px;
        }

        .services-facilities {
            display: flex;
            justify-content: space-between;
            gap: 30px;
            margin-top: 10px;
        }

        .services-col,
        .facilities-col {
            flex: 1;
        }

        .services-col h4,
        .facilities-col h4 {
            margin-bottom: 5px;
            color: #333;
        }

        /* ==========================
           About Us Page
        ========================== */
        .about-section {
            max-width: 1100px;
            margin: 30px auto;
            padding: 0 20px;
        }

        .about-heading {
            background: white;
            color: #c62828;
            text-align: center;
            padding: 40px 20px;
            font-size: 42px;
            margin-bottom: 10px;
            border-radius: 10px;
        }

        .about-box {
            display: flex;
            align-items: center;
            gap: 30px;
            margin-bottom: 50px;
            flex-direction: row;
        }

        .about-box.reverse {
            flex-direction: row-reverse;
        }

        .about-box img {
            width: 40%;
            border-radius: 12px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .about-box .content {
            flex: 1;
        }

        .about-box p,
        .about-box ul {
            font-size: 18px;
            line-height: 1.6;
            color: #555;
        }

        .about-box ul {
            list-style: disc inside;
        }

        .mission-vision {
            display: flex;
            flex-direction: column;
            gap: 60px;
        }

        .content p {
            font-size: 18px;
            color: black;
            text-align: justify;
        }

        .content h2 {
            font-size: 28px;
            font-weight: bold;
            color: black;
            margin-bottom: 15px;
        }

        .content ul {
            font-size: 18px;
            color: black;
        }

        /* ==========================
           FAQ Page
        ========================== */
        .questions {
            max-width: 1500px;
            margin: 40px auto;
            padding: 20px;
            font-family: 'Times New Roman', Times, serif;
        }

        .question-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
        }

        .faq-item {
            background: #f9f9f9;
            border-left: 5px solid #a81f1f;
            padding: 20px 30px;
            margin-bottom: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
            transition: transform 0.2s ease-in-out;
        }

        .faq-item:hover {
            transform: translateX(5px);
        }

        .arrow {
            display: inline-block;
            border-right: 3px solid black;
            border-bottom: 3px solid black;
            transform: rotate(45deg);
            width: 12px;
            height: 12px;
            cursor: pointer;
        }

        .dropdown-content {
            display: none;
            padding: 10px 0;
        }

        .faq-item .question-row:hover + .dropdown-content {
    display: block;
}

        .faq-item h2 {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            color: black;
            font-size: 22px;
        }

        .faq-item p {
            text-align: justify;
            font-size: 18px;
            line-height: 1.6;
            color: black;
        }

        /* ==========================
           Contact Page
        ========================== */
        .home-heading {
            text-align: center;
            font-size: 42px;
            margin: 20px 0;
            color: #c62828;
        }

        .home-heading a {
            text-decoration: none;
            color: #c62828;
        }

        .contact-section {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            padding: 50px 5%;
            gap: 40px;
        }

        .contact-left {
            flex: 1;
        }

        .contact-left h2 {
            font-size: 24px;
            color: #a81f1f;
            margin-bottom: 10px;
        }

        .contact-left p {
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .contact-right {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .contact-right img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }

        /* ==========================
           Responsive Media Queries
        ========================== */
        @media (max-width: 1024px) {
            .carousel .slide {
                padding: 30px 4%;
            }
            
            .caption h1 {
                font-size: 36px;
            }
            
            .services-banner h1 {
                font-size: 42px;
            }
            
            .service-box img {
                height: 220px;
            }
            
            .contact-section {
                padding: 40px 4%;
            }
            
            nav ul li {
                margin: 0 6px;
            }
            
            nav ul li a {
                font-size: 15px;
            }
        }

        @media (max-width: 900px) {
            .carousel .slide {
                flex-direction: column;
                text-align: center;
                padding: 20px 4%;
            }
            
            .carousel img {
                max-width: 400px;
                margin-top: 20px;
            }
            
            .caption {
                width: 100%;
                margin-top: 20px;
            }
            
            .caption h1 {
                font-size: 32px;
            }
            
            .caption p {
                font-size: 17px;
            }
            
            .services-banner h1 {
                font-size: 36px;
            }
            
            .service-box,
            .about-box {
                flex-direction: column;
                text-align: center;
            }
            
            .service-box img,
            .about-box img {
                width: 100%;
                max-width: 500px;
                height: auto;
            }
            
            .service-box:nth-child(odd),
            .service-box:nth-child(even),
            .about-box.reverse {
                flex-direction: column;
            }
            
            .services-facilities {
                flex-direction: column;
                gap: 20px;
            }
            
            .contact-section {
                flex-direction: column;
                align-items: center;
                padding: 30px 4%;
                text-align: center;
            }
            
            .contact-right img {
                margin-top: 30px;
            }
            
            header {
                padding: 15px 4%;
            }
            
            header .logo {
                font-size: 20px;
            }
            
            nav ul li a {
                font-size: 14px;
            }
        }

        @media (max-width: 768px) {
            header {
                flex-direction: column;
                padding: 15px 4%;
            }
            
            header .logo {
                margin-bottom: 15px;
            }
            
            nav ul {
                justify-content: center;
                width: 100%;
            }
            
            nav ul li {
                margin: 0 5px;
            }
            
            nav ul li a {
                font-size: 13px;
            }
            
            .carousel {
                min-height: 450px;
            }
            
            .carousel img {
                max-width: 320px;
            }
            
            .caption h1 {
                font-size: 28px;
            }
            
            .caption h2 {
                font-size: 20px;
            }
            
            .caption p {
                font-size: 16px;
            }
            
            .caption .btn {
                padding: 10px 20px;
                font-size: 14px;
            }
            
            .services-banner h1 {
                font-size: 32px;
            }
            
            .services-description,
            .service-box ul,
            .about-box p,
            .about-box ul {
                font-size: 16px;
            }
            
            .service-box h2 {
                font-size: 26px;
            }
            
            .about-heading {
                font-size: 36px;
                padding: 30px 15px;
            }
            
            .faq-item {
                padding: 15px 20px;
            }
            
            .faq-item h2 {
                font-size: 20px;
            }
            
            .faq-item p {
                font-size: 16px;
            }
            
            .home-heading {
                font-size: 36px;
            }
            
            footer {
                padding: 20px;
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            header {
                padding: 12px 3%;
            }
            
            .logo {
                font-size: 18px;
            }
            
            nav ul {
                flex-wrap: nowrap;
                overflow-x: auto;
                justify-content: flex-start;
                padding-bottom: 5px;
            }
            
            nav ul li {
                margin: 0 8px;
            }
            
            nav ul li a {
                font-size: 12px;
            }
            
            .carousel {
                min-height: 400px;
            }
            
            .carousel img {
                max-width: 250px;
                border-width: 5px;
            }
            
            .caption h1 {
                font-size: 24px;
            }
            
            .caption .btn {
                padding: 8px 16px;
                font-size: 13px;
            }
            
            .services-banner {
                padding: 30px 15px;
            }
            
            .services-banner h1 {
                font-size: 28px;
            }
            
            .services-grid,
            .about-section {
                margin: 20px auto;
            }
            
            .service-box,
            .about-box {
                padding: 15px;
            }
            
            .service-box h2 {
                font-size: 22px;
            }
            
            .service-box h3 {
                font-size: 18px;
            }
            
            .about-heading {
                font-size: 28px;
                padding: 20px 10px;
            }
            
            .content h2 {
                font-size: 22px;
            }
            
            .content p,
            .content ul {
                font-size: 15px;
            }
            
            .faq-item {
                padding: 12px 15px;
            }
            
            .faq-item h2 {
                font-size: 18px;
            }
            
            .home-heading {
                font-size: 28px;
            }
            
            .contact-section {
                padding: 20px 3%;
            }
            
            .contact-left h2 {
                font-size: 20px;
            }
            
            .contact-left p {
                font-size: 15px;
            }
            
            footer {
                padding: 15px;
                font-size: 14px;
            }
        }
    