* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: black;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    color:black;
    background: white;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

header h1 {
    font-size: 2rem;
    margin-bottom: 0;
    color: black
}

header .header-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

header .header-nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

header a {
    color: #cd2653;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.25rem;
}

header input[type="search"] {
    padding: 0.5rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100px;
    transition: width 0.3s ease;
}

header input[type="search"]:focus {
    width: 250px;
    outline: none;
    border-color: #1e73be;
    box-shadow: 0 0 5px rgba(30, 115, 190, 0.3);
}

.header-links {
    display: flex;
    gap: 3rem;
    align-items: center;
    color: #cd2653;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.25rem;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 3rem
}

main {
    background: #1e73be;
    color: white;
    flex: 1;
    padding: 3rem 2rem;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

main h2 {
    margin-bottom: 1rem;
    font-size: 3rem;
}

main p {
    font-family: NonBreakingSpaceOverride, "Hoefler Text", Garamond, "Times New Roman", serif;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    line-height: 1.8;
}

main a {
    color: white;
    text-decoration: underline;
    font-weight: bold;
    font-size: 1.25rem;
}

.main-content {
    max-width: 40%;
    margin: 0 auto;
    text-align: left;
}

.content-head {
    max-width: 70%;
    margin: 1.5rem auto 2rem auto;
    text-align: center;
    font-size: 3rem;
    line-height: 1.1;
}

footer {
    background-color: white;
    color: black;
    padding: 3rem 2rem;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #cd2653;
}

.footer-section a {
    color: #cd2653;
    text-decoration: none;
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.9;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 1.5rem;
    opacity: 0.8;
}