/* styles.css */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Poppins:wght@400;700&display=swap');


---

body {
    background-color: white;
    font-family: 'Poppins', 'Inter', Arial, sans-serif;
    color: #000000;
}

/* Poppins Regular */
.poppins {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

/* Poppins Bold */
.poppins-bold {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

/* Poppins Bold Uppercase */
.poppins-bold-uppercase {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

/* Inter Regular */
.inter {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

/* Inter Bold */
.inter-bold {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

/* Inter Bold Uppercase */
.inter-bold-uppercase {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}


---

/* Header Styles */
h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #1D62AF; /* CUWCD blue */
}

h2 {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 700;
    font-style: italic;
    color: #1D62AF; /* CUWCD blue */
}

h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 700;
    text-decoration: underline;
    color: #1D62AF; /* CUWCD blue */
}

h4 {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    font-style: italic;
    text-decoration: underline;
    color: #1D62AF; /* CUWCD blue */
}
