
        body {
            background-color: #fa8501;
            display: relative;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            margin: 0;
            
        }
        .container {
            max-width: 1000px;
            width: 100%;
        }
        h1 {
            text-align: center;
            font-size: 5rem;
            font-weight: bold;
            margin-bottom: 20px;    
            animation: fadeIn 1s ease-in-out;
            
        }
        .headi{
            padding: 30px;
            background: #fa8501;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            display: flex;
            justify-content: center;
            
        }
        .form {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            background: #fa8501;
            padding: 70px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 5.3s, box-shadow 5.3s;
            
        }
        .form:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }
        .form2 {
            
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            background: #fa8501;
            padding: 70px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            
        }
        .form2:hover {
            transform: scale(1.01);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }
        .form img {
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 5.3s;
            width: auto;
            height: auto;
            max-width: 95%;
            max-height: 400px;
            margin-right: 100px;
            
        }
        .form img:hover {
            transform: scale(1.05);
        }
        .content {
            display: flex;
            flex-direction: column;
            padding-right: 20px;
            justify-content: center;
            color: #000080;
            
        }
        .content:hover {
            transform: scale(1.05);
        }
        .service {
            margin-bottom: 20px;
            animation: fadeIn 3s ease-in-out;
            
        }
        .service h2 {
            font-size: 1.25rem;
            font-weight: bold;
            display: flex;
            justify-content: space-between;
            align-items: center;
            
        }
        .service button {
            background: none;
            border: none;
            color: #1d4ed8;
            font-size: 1.5rem;
            cursor: pointer;
            transition: color 5.3s, transform 5.3s;
            
        }
        .service button:hover {
            color: #1e40af;
            transform: rotate(90deg);
        }
        .details {
            display: none;
            margin-top: 10px;
            transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out;
            overflow: hidden;
            max-height: 0;
            opacity: 0;
        }
        .details.show {
            max-height: 500px;
            opacity: 1;
        }
        .details p {
            margin-bottom: 10px;
            
        }
        .details ul {
            list-style-type: disc;
            padding-left: 20px;
        }
        .details ul li {
            margin-bottom: 5px;
        }
        .footer {
            animation: fadeIn 1s ease-in-out;
        }
        .footer a {
            transition: color 0.3s;
        }
        .footer a:hover {
            color: #1e40af;
        }
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        @keyframes slideIn {
            from {
                transform: translateY(50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        .slide-in {
            animation: slideIn 5.5s ease-in-out;
        }
    


    .hero-section {
        position: flex;
        width: 100%;
        height: 30vh;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: rgb(229, 14, 14);
        
        
    }


    .content h1 {
        color: #fa8501;
        font-size: 3em;
        margin: 0;
        margin-bottom: 30px;
       
    }
    .content p {
        font-size: 1.5em;
        margin: 10px 0 20px;
    }
    .buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
    }
    .buttons a {
        background-color: #1a2a6c;
        color: white;
        padding: 15px 30px;
        text-decoration: none;
        font-size: 1.2em;
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }
    .buttons a:hover {
        background-color: #0d1a4c;
    }
    .checklist ul {
        list-style-type: disc;    /* Sets bullet type to filled circle */
        padding-left: 20px;       /* Indents the list for better readability */
        margin-top: 10px;         /* Adds space above the list */
        font-size: 16px;          /* Adjusts font size for readability */
        line-height: 1.6;         /* Improves line spacing for multi-line items */
    }
    
    .checklist li {
        margin-bottom: 8px;
            /* Adds space between items */
    }
    /* Responsive Media Queries with Added Spacing */

/* Large screens (1200px and below) */
@media (max-width: 1200px) {
    .container, .form, .form2 {
        padding: 40px;
    }
    h1 {
        font-size: 4rem;
        
    }
    .content h1 {
        font-size: 2.5em;
        
    }
    .form img, .form2 img {
        margin-right: 50px; /* Added right margin for spacing */
    }
}

/* Medium screens (992px and below) */
@media (max-width: 992px) {
    .container, .form, .form2 {
        flex-direction: column;
        padding: 30px;
        text-align: center;
    }
    .content h1 {
        font-size: 2em;
        text-align: center;
    }
    .form img, .form2 img {
        max-width: 80%;
        height: auto;
        margin: 20px 0; /* Top and bottom margin to create space between image and content */
    }
    .content {
        margin-top: 20px; /* Space above content */
    }
}

/* Small screens (768px and below) */
@media (max-width: 768px) {
    .container, .form, .form2, .hero-section {
        padding: 20px;
        text-align: center;
    }
    .headi {
        flex-direction: column;
    }
    h1 {
        font-size: 3rem;
    }
    .content h1 {
        font-size: 1.8em;
        margin-bottom: 20px;
    }
    .form img, .form2 img {
        max-width: 100%;
        height: auto;
        margin: 0 auto 20px; /* Space between image and other content */
    }
    .content {
        margin-top: 20px; /* Additional space above content */
    }
    .buttons {
        flex-direction: column;
        gap: 15px; /* Increased gap for buttons */
    }
    .buttons a {
        padding: 10px 20px;
        font-size: 1em;
    }
}

/* Extra small screens (576px and below) */
@media (max-width: 576px) {
    .container, .form, .form2, .hero-section, .headi {
        padding: 15px;
        text-align: center;
    }
    .form, .form2 {
        flex-direction: column;
        padding: 10px;
        margin: 15px 0; /* Additional spacing between form sections */
    }
    h1 {
        font-size: 2.5rem;
    }
    .content h1 {
        font-size: 1.5em;
    }
    .form img, .form2 img {
        max-width: 100%;
        margin: 0 auto 20px; /* More space between image and text */
    }
    .content {
        margin-top: 20px; /* Extra space above content */
    }
    .service h2 {
        font-size: 1rem;
    }
}

/* Ultra small screens (375px and below) */
@media (max-width: 375px) {
    .container, .form, .form2, .hero-section {
        padding: 10px;
    }
    h1 {
        font-size: 2rem;
    }
    .content h1 {
        font-size: 1.2em;
    }
    .form img, .form2 img {
        max-width: 100%;
        margin: 0 auto 20px; /* Additional bottom margin for spacing */
    }
    .content {
        margin-top: 15px; /* Consistent gap above content */
    }
    .buttons a {
        font-size: 0.9em;
        padding: 8px 15px;
    }
    .checklist ul {
        font-size: 14px;
    }
}
