body {
    background: #F7F8FB;
    overflow-x: hidden !important;
}

.info-icon {
    width: 25px;
    height: 25px;
    margin-right: 5px;
    vertical-align: middle;
    flex-shrink: 0;
}

.law-enf-req-hero {
    padding: 80px 60px;
    background: #F7F8FB;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0px 4px 20px 0px #C7D3FF;
    margin-bottom: 30px;
}

.law-enf-req-hero .wrapper {
    width: 100%;
    max-width: 1260px;
    display: flex;
    gap: 40px;
    /* align-items: center; */
    flex-direction: column;
    justify-content: center;
}

.law-enf-req-hero .wrapper h1 {
    color: #1E2F47;
    text-align: left;
    font-family: Poppins;
    font-size: 60px;
    font-style: normal;
    font-weight: 800;
    line-height: 60px;
    letter-spacing: 0.45px;
    text-transform: uppercase;
    margin: 0;
}

.law-enf-req-hero .wrapper .hero-text {
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.law-enf-req-hero .wrapper .hero-text h2 {
    font-size: 36px;
    font-weight: 800;
    line-height: 50px;
    letter-spacing: 1px;
    margin: 0;
    color: #1E2F47;
}

.law-enf-req-hero .wrapper .hero-text p {
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 1px;
    margin: 0;
    color: #1E2F47;
}

.law-enf-req-hero .wrapper .hero-text li {
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 1px;
    margin: 0;
    color: #1E2F47;
}

.law-enf-req-hero .wrapper .hero-text .link {
    color: #1C60DD;
    font-family: Poppins;
    font-size: 16px;
    text-decoration: none;
}

@media screen and (max-width: 768px) { 
    .law-enf-req-hero {
        padding: 40px 40px;
    }

    .law-enf-req-hero .wrapper h1 {
        font-size: 40px;
    }

    .law-enf-req-hero .wrapper .hero-text h2 {
        font-size: 26px;
    }

    .law-enf-req-hero .wrapper .hero-text p {
        font-size: 14px;
    }

    .law-enf-req-hero .wrapper .hero-text li {
        font-size: 14px;
    }

    .law-enf-req-hero .wrapper .hero-text .link {
        font-size: 14px;
    }
}

@media screen and (max-width: 425px) { 
    .law-enf-req-hero {
        padding: 40px 20px;
    }

    .law-enf-req-hero .wrapper h1 {
        font-size: 32px;
        line-height: normal;
    }

    .law-enf-req-hero .wrapper .hero-text h2 {
        font-size: 20px;
        line-height: normal;
    }
}

/* Law Enforcement Request Form Section */
.law-enf-req-form {
    padding: 80px 60px;
    background-color: #fff;
}

.law-enf-req-form .wrapper {
    width: 100%;
    max-width: 1260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    margin: 0 auto;
}

.law-enf-req-form h1 {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    line-height: 50px;
    margin: 0;
    color: #1E2F47;
    letter-spacing: 1px;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-field {
    margin-bottom: 25px;
}

.form-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1E2F47;
    font-size: 0.95rem;
}

.required {
    color: #1C60DD;
    margin-left: 2px;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #1C60DD;
}

.form-field textarea {
    min-height: 100px;
    resize: vertical;
}

/* File Upload Styling */
.file-field {
    margin-bottom: 30px;
}

.file-upload-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.file-upload-btn {
    background-color: white;
    border: 2px solid #e1e5e9;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    color: #1E2F47;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.file-upload-btn:hover {
    border-color: #1C60DD;
}

.file-status {
    color: #1E2F47;
    font-size: 0.9rem;
    flex: 1;
}

.file-info {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #1E2F47;
}

.info-icon-small {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.file-info p {
    margin: 0;
    line-height: 1.4;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    background-color: #1C60DD;
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.submit-btn:hover {
    background-color: #1b58c9;
}

/* Responsive Design */
@media screen and (max-width: 768px) { 
    .law-enf-req-form {
        padding: 40px 40px;
    }
    
    .law-enf-req-form h1 {
        font-size: 26px;
    }

    .form-container {
        padding: 20px;
        margin: 0 20px;
    }

    .file-upload-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .file-upload-btn {
        text-align: center;
    }
}

@media screen and (max-width: 425px) { 
    .law-enf-req-form {
        padding: 40px 20px;
    }

    .law-enf-req-form h1 {
        line-height: normal;
    }

    .law-enf-req-form h1 {
        font-size: 20px;
    }

    .form-container {
        margin: 0 10px;
        padding: 15px;
    }
}