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

/* === Base === */
html, body {
    height: 100%;
    font-family: 'Poppins', sans-serif;
    background-color: #f4faff;
    color: #1d3557;
}

a {
    text-decoration: none;
}

/* === Layout for sticky footer === */
.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main.container {
    flex: 1;
    padding: 2rem 1rem;
}

/* === Container === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* === Header === */
.site-header {
    background-color: #8a8cf3;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1d3557;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 1.25rem;
}

/* Anchor styles inside nav links */
.nav-links a {
    font-size: 1.225rem; /* Change font size here (e.g., 1.25rem = 20px) */
    font-weight: 600;    /* Change font weight here (500 = medium, 700 = bold) */
    font-family: 'Poppins'; /* Change font family here */
    color: #1f2937;       /* Dark gray text */
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

/* Hover effects */
.nav-links a:hover {
    color: #55568b; /* Indigo hover */
    transform: translateY(-2px);
}


/* === Dropdown === */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 80%;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    margin-top: 0.5rem;
    padding: 0.5rem 0;
    z-index: 10;
    min-width: 200px;
}

.dropdown-menu li {
    padding: 0.5rem 1rem;
}

.dropdown-menu li a {
    color: #1d3557;
    display: block;
}

.dropdown-menu li a:hover {
    background-color: #f0f4f8;
}

.dropdown:hover .dropdown-menu {
    display: block;
}




/* === Footer === */
footer {
    background-color: #8a8cf3;
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-top: auto;
    font-size: 0.9rem;
}

/* === Buttons === */
button {
    background-color: #457b9d;
    color: white;
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #2a5a8e;
}

/* === About Page === */
.about-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 75vh;
    padding: 3rem 1rem;
    background-color: #f0f4f8;
}

.about-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    width: 100%;
    padding: 3rem;
}

.about-container h1 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

.about-container .highlight {
    color: #2563eb;
}

.about-container p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 1.2rem;
}

.about-container .thank-you {
    font-size: 1.2rem;
    color: #111827;
    font-weight: 500;
    text-align: center;
    margin-top: 2rem;
}
