/* General styling */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

/* Header */
.header {
    background-color: #4CAF50; /* Primary color */
    color: white;
    padding: 20px 0;
    text-align: center;
}

.header h1 {
    margin: 0;
    font-size: 2.5em;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.1em;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background-image: url('../images/hero-bg.jpg'); /* Background image */
    background-size: cover;
    color: white;
    padding: 80px 0;
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}

.hero h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.cta-button {
    background-color: white;
    color: #4CAF50; /* Primary button color */
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
    border: 2px solid #4CAF50; /* Button border color */
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #4CAF50; /* Button hover color */
    color: white;
}

/* Encouragement Section */
.encouragement {
    padding: 50px 0;
    text-align: center;
}

.encouragement h2 {
    font-size: 2.2em;
    margin-bottom: 20px;
}

.encouragement p {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto;
}

/* Features Section */
.features {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
}

.feature-item {
    background-color: white;
    padding: 20px;
    width: 30%;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: scale(1.05);
}

.feature-item h3 {
    color: #4CAF50; /* Feature heading color */
    font-size: 1.5em;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 1em;
    color: #666;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

footer a {
    color: #4CAF50; /* Footer link color */
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Registration Section */
.registration-section {
    padding: 50px 20px;
    text-align: center;
}

.registration-section h2 {
    font-size: 2.2em;
    margin-bottom: 20px;
}

.registration-section p {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.registration-form {
    max-width: 600px;
    margin: 0 auto;
}

.registration-form label {
    display: block;
margin-bottom: 5px;}
