/* Base styles */
:root {
    --primary-color: #4a90e2;
    --primary-dark: #3a71b0;
    --text-color: #333;
    --light-gray: #f5f7fa;
    --white: #fff;
    --dark-blue: #2c3e50;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-gray);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
header {
    background-color: white !important;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo img {
    height: 150px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: relative;
    width: 30px;
    height: 30px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark-blue);
    margin: 5px 0;
    transition: all 0.3s ease;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.mobile-menu-toggle span:nth-child(1) {
    top: 5px;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 12px;
}

.mobile-menu-toggle span:nth-child(3) {
    bottom: 5px;
}

/* Active state for hamburger */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateX(-50%) rotate(45deg);
    top: 12px;
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateX(-50%) rotate(-45deg);
    bottom: 12px;
}

/* Navigation styles */
.navigation {
    display: flex;
    align-items: center;
}

.navigation ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.navigation a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.navigation a:hover,
.navigation a.active {
    background-color: var(--primary-color);
    color: white;
}

/* Hero section styles */
.hero {
    padding: 20px 0 60px;
    background: linear-gradient(to bottom, var(--white), var(--light-gray));
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    color: #253B80;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero .subtitle {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 40px;
    font-weight: 400;
}

.feature-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
    gap: 30px;
}

.feature {
    flex-basis: calc(33.333% - 20px);
    margin-bottom: 30px;
    padding: 30px;
    border-radius: 10px;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature p {
    color: var(--text-color);
    font-size: 1rem;
}

/* Benefits section styles */
.benefits {
    padding: 60px 0;
    background-color: var(--light-gray);
    text-align: center;
}

.section-title {
    font-size: 2rem;
    color: #253B80;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.benefit-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #e6f0ff;
    margin-bottom: 20px;
    font-size: 28px;
}

.benefit-card h3 {
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.benefit-card p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive styles for benefits section */
@media (max-width: 991px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

/* Registration section styles */
.registration {
    padding: 80px 0;
    background-color: var(--light-gray);
    text-align: center;
}

.registration h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.registration p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--dark-blue);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--dark-blue);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: var(--primary-dark);
}

/* Footer styles */
footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 30px 0;
}

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

.footer-links a {
    color: var(--white);
    text-decoration: none;
    margin-left: 20px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

/* Responsive styles */
@media (max-width: 991px) {
    .feature {
        flex-basis: calc(50% - 15px);
    }
}

@media (max-width: 767px) {
    /* Mobile Menu Styles */
    .mobile-menu-toggle {
        display: block;
    }
    
    .logo img {
        height: 100px;
    }
    
    .navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        padding-top: 80px;
        overflow-y: auto;
    }
    
    .navigation.active {
        right: 0;
    }
    
    .navigation ul {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }
    
    .navigation li {
        width: 100%;
    }
    
    .navigation a {
        display: block;
        padding: 15px 20px;
        text-align: center;
        border-radius: 10px;
        margin-bottom: 10px;
    }
    
    .feature {
        flex-basis: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        margin-top: 15px;
    }
    
    .footer-links a {
        margin: 0 10px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .subtitle {
        font-size: 1.3rem;
    }
}

body::before {
    content: "";
    display: block;
    height: 5px;
    width: 100%;
    background-color: #4a90e2;
    position: absolute;
    top: 0;
    left: 0;
}
