body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    padding-top: 120px; /* Reserve space for fixed header on this page */
  }

.experienced-breach-top-gap {
    display: none;
}
/* Section container for the breach banner */
.breach-banner {
    background: linear-gradient(
        90deg,
        #fc6630 10%,
        #f38664 45%,
        #ef495D 75%
    ); /* Gradient background for the banner */
    color: #ffffff; /* White text for readability */
    text-align: center; /* Centers the text content */
    padding: 100px 20px; /* Normal section spacing; top offset handled by spacer */
    font-family: Arial, sans-serif; /* Consistent font style */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 200px; /* Ensures a minimum height for the banner */
}

/* Inner content container for better control */
.breach-banner .banner-content h1 {
    font-size: 36px; /* Large, bold headline */
    font-weight: bold; /* Ensures emphasis */
    margin-bottom: 20px; /* Adds spacing below the heading */
}

.breach-banner .banner-content p {
    font-size: 18px; /* Standard paragraph size */
    margin: 5px 0; /* Adds minimal spacing between paragraphs */
    max-width: 800px; /* Limits the width for readability */
    line-height: 1.5; /* Improves text readability */
}





/* Emergency Section Styling */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
}

.emergency-dropdown-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 50px;
    background-color: #ffffff;
    text-align: center;
    margin-top: 20px;
}

.emergency-text {
    margin-bottom: 20px;
}

.emergency-text p {
    font-size: 20px;
    color: #333;
    line-height: 1.5;
    margin: 0;
}

.emergency-text .sub-text {
    font-size: 16px;
    color: #666;
    display: block;
    margin-top: 5px;
}

.emergency-contact {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Wraps cards if the screen width is small */
    gap: 20px; /* Adds spacing between the cards */
    margin-top: 20px;
}

/* Contact box styles */
.contact-box {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 200px; /* Consistent card width */
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-box:hover {
    transform: translateY(-5px); /* Adds hover effect */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.country-info {
    text-align: center;
}

.country-info strong {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    display: block;
}

.country-info p {
    font-size: 14px;
    color: #000;
    margin: 5px 0 0;
}

















/* Main container for the entire form box */
.form-section-box {
    background: linear-gradient(135deg, #cfccc9 0%, #575556 97.4%);
    padding: 40px;
    border-radius: 15px; /* Rounds the corners of the box */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Adds a subtle shadow for depth */
    max-width: 800px;
    margin: 20px auto; /* Centers the box horizontally on the page */
}

/* Inner section styling */
.form-section {
    background-color: #ffffff; /* White background inside the gradient box */
    border-radius: 10px; /* Rounds the inner box corners */
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); /* Slight inner shadow */
}

/* Header text styles */
.form-header p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.5;
    color: #333;
}

/* Link style in the header for "Request Information" */
.form-header .request-link {
    color: #ff0000;
    font-weight: bold;
    text-decoration: none;
}

/* Form container */
.form-container {
    max-width: 600px;
    margin: 0 auto;
}

/* Input field styles */
.credentials-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-input {
    width: 100%;
    padding: 10px 15px;
    font-size: 14px;
    border: none;
    border-bottom: 1px solid #ccc;
    outline: none;
    transition: border-color 0.3s;
}

.form-input:focus {
    border-color: #ff0000;
}

/* Submit button styles */
.submit-button {
    background-color: #ff0000;
    color: #ffffff;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #cc0000;
}

/* Footer text styles */
.form-footer {
    margin-top: 20px;
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

.form-footer .privacy-link {
    color: #ff0000;
    text-decoration: none;
}

.form-footer .privacy-link:hover {
    text-decoration: underline;
}

/* Page-specific dark mode readability fixes */
body.dark-mode .emergency-dropdown-section {
    background-color: #0b0f14 !important;
}

body.dark-mode .contact-box {
    background-color: #151c24 !important;
    border: 1px solid #2b3542;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.45);
}

body.dark-mode .country-info strong,
body.dark-mode .country-info p {
    color: #eef3fb !important;
}

body.dark-mode .form-section-box {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%) !important;
}

body.dark-mode .form-section {
    background-color: #0f1622 !important;
    border: 1px solid #263241;
}

body.dark-mode .form-header p,
body.dark-mode .form-footer {
    color: #d6deea !important;
}

body.dark-mode .form-input {
    background-color: #101926 !important;
    color: #eef3fb !important;
    border-bottom-color: #3a4759 !important;
}

body.dark-mode .form-input::placeholder {
    color: #b8c4d4 !important;
    opacity: 1;
}

body.dark-mode .form-input option {
    background-color: #101926;
    color: #eef3fb;
}

body.dark-mode .form-input:focus {
    border-bottom-color: #ff6b6b !important;
}














@media (max-width: 992px) {
  body {
    padding-top: 96px;
  }

  .breach-banner {
    padding: 72px 16px;
  }

  .breach-banner .banner-content h1 {
    font-size: clamp(28px, 6.5vw, 36px);
    margin-bottom: 12px;
  }

  .breach-banner .banner-content p {
    font-size: 16px;
    line-height: 1.6;
  }

  .emergency-dropdown-section {
    padding: 20px 16px;
  }

  .emergency-text p {
    font-size: 18px;
  }

  .contact-box {
    width: min(220px, 100%);
  }

  .form-section-box {
    padding: 20px 14px;
    margin: 16px;
  }

  .form-section {
    padding: 18px 14px;
  }
}

@media (max-width: 576px) {
  .breach-banner {
    padding: 56px 12px;
  }

  .emergency-contact {
    gap: 12px;
  }

  .contact-box {
    width: 100%;
  }

  .submit-button {
    width: 100%;
  }
}
