body,
html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}
body, html {
  font-family: 'Poppins', sans-serif;
}


body, h1, h2, h3, h4, h5, h6, p, span, div {
  font-family: 'Poppins', sans-serif;
}

.contact-us-hero {
    height: 70vh;
    background-image: url('assets/abuse/abuse_heroimage.webp'); 
    background-size: cover;  
    background-position: top;   
    background-repeat: no-repeat;   
    background-color: #000033;      
    color: white;
    text-align: center;
    padding: 4rem 1rem;
    margin-top: -10vh;
    position: relative;
}

/* Overlay for better readability */
.contact-us-hero:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 51, 0.2); /* Dark overlay */
    z-index: 1;
}

/* Content Styling */
.contact-us-hero-content {
    position: relative;
    text-align: left;
    max-width: 1200px;
    margin: 22vh auto;
    z-index: 2; 
}

/* Title Styling */
.contact-us-hero-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    width: 60%;
}

/* Buttons Wrapper */
.contact-us-hero-buttons {
    display: flex;
    justify-content: start;
    gap: 1rem;
}

/* Button Styling */
.contact-us-hero-button {
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    text-decoration: none;
}

/* Primary Button */
.contact-us-hero-button-primary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.contact-us-hero-button-primary:hover {
    background-color: white;
    color: #000033;
}

/* Secondary Button (optional) */
.contact-us-hero-button-secondary {
    background-color: white;
    color: #000033;
    border: 2px solid white;
}

.contact-us-hero-button-secondary:hover {
    background-color: #f0f0f0;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .contact-us-hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .contact-us-hero-title {
        font-size: 2rem;
    }

    .contact-us-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-us-hero-button {
        width: 80%;
    }

    .contact-us-hero {
        margin-top: -15vh;
    }

    .contact-us-hero-content {
        margin-top: 20vh;
    }
}


.container-abuse {
    max-width: 1000px;
    margin: 5vh auto;
    background-color: white;
    padding: 30px;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Header Section */
.header-abuse h1 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* AUP Title Section */
.aup-title h2 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 5px;
}

.last-updated {
    text-align: center;
    color: gray;
    font-size: 14px;
    margin-bottom: 20px;
}

/* Content Section */
.aup-content h3 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.aup-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.aup-content ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.aup-content ul {
    margin-left: 40px;
    list-style-type: disc;
}

.aup-content li {
    margin-bottom: 10px;
    font-size: 14px;
}

