* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Navbar */
.navbar {
    background-color: #844C9E; /* Matching the purple in the image */
    padding: 15px 0;
    width: 100%;
}

.nav-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.login-link {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 14px;
}

/* Main Content */
.content {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.logo-f {
    margin-bottom: 40px;
}

.content h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 50px;
}

.section {
    margin-bottom: 40px;
}

.section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 5px;
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: #5E3278; /* Matching the darker purple footer */
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.footer-section {
    max-width: 900px;
    margin: 0 auto 50px;
}

.footer-section:last-child {
    margin-bottom: 0;
}

.footer p {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 2px;
    font-weight: 500;
}
