:root {
    --primary-color: #240046;
    --secondary-color: #5A189A;
    --accent-color: #9D4EDD;
    --light-color: #ece4f0;
    --dark-color: #10002B;
    --text-light: #F8F9FA;
}

/* Global Styling */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: var(--light-color);
    color: var(--dark-color);
    font-family: 'Arial', sans-serif;
}

/* Navbar */
.navbar {
    background-color: var(--primary-color);
    padding: 15px 0;
}

.navbar .nav-link {
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}

.navbar .nav-link:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    padding: 60px 0;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 500;
}

.hero .btn-light {
    background-color: var(--light-color);
    color: var(--primary-color);
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 30px;
}

.hero .btn-light:hover {
    background-color: var(--accent-color);
    color: white;
}

/* Core Values */
.value-box {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease-in-out;
}

.value-box:hover {
    transform: translateY(-5px);
}

.value-box h4 {
    color: var(--primary-color);
    font-weight: bold;
}

.value-box p {
    color: #555;
    font-size: 16px;
}

/* Goals Section */
.goals-section {
    background: var(--light-color);
    padding: 40px 0;
}

.goal-box {
    background: white;
    border-radius: 10px;
    padding: 10px;
    min-height: 75px;
    margin-bottom: 5px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.goal-box p {
    font-size: 16px;
    color: var(--dark-color);
    margin: 0;
    display: flex;
    align-items: center;
}

.goal-box i {
    margin-right: 8px;
    font-size: 18px;
    color: var(--primary-color);
}

/* Why Choose Us */
.why-box {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease-in-out;
}

.why-box:hover {
    transform: translateY(-5px);
}

.why-box h5 {
    color: var(--primary-color);
    font-weight: bold;
}

.why-box ul {
    padding-left: 0;
}

.why-box li {
    font-size: 16px;
    color: #333;
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.why-box i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 18px;
}

/* Registration Groups */
.registration-groups, .why-list {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
}

.registration-groups ul {
    padding: 0;
}

.registration-groups li {
    font-size: 16px;
    color: #333;
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.registration-groups i {
    margin-right: 8px;
    font-size: 18px;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: auto;
    width: 100%;
}

.footer img.logo {
    height: 100px; /* Adjust height as needed */
    width: auto; /* Maintain aspect ratio */
    margin-bottom: 5px; /* Space between logo and text */
}

section:last-of-type {
    padding-bottom: 50px;
}

main {
    flex-grow: 1;
}