/* Reset some basic styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    padding: 20px;
}

/* General styling for the container */
section {
    padding: 40px 0;
    margin: 40px 0;
}

/* About Section */
#about {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

#about h2 {
    font-size: 2.5rem;
    color: #2C3E50;
    margin-bottom: 20px;
}

#about p {
    font-size: 1.1rem;
    color: #34495E;
    line-height: 1.8;
    margin-bottom: 20px;
}

#about .highlight-link {
    color: #3498db;
    text-decoration: none;
}

#about .highlight-link:hover {
    text-decoration: underline;
}

/* Purpose Section */
#purpose {
    background-color: #ecf0f1;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.purpose-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

#purpose h2 {
    font-size: 2.5rem;
    color: #2C3E50;
    margin-bottom: 20px;
}

#purpose p {
    font-size: 1.1rem;
    color: #34495E;
    margin-bottom: 30px;
}

.purpose-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.purpose-item {
    width: 45%;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    text-align: left;
}

.purpose-item h3 {
    font-size: 1.6rem;
    color: #3498db;
    margin-bottom: 15px;
}

.purpose-item p {
    font-size: 1rem;
    color: #34495E;
}

/* CTA Section */
#cta {
    background-color: #3498db;
    color: white;
    text-align: center;
}

.cta-container {
    padding: 40px;
}

#cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

#cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-btn {
    background-color: #2C3E50;
    color: white;
    padding: 15px 25px;
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-btn:hover {
    background-color: #34495E;
}

/* Responsive Design */
@media (max-width: 768px) {
    .purpose-list {
        flex-direction: column;
    }

    .purpose-item {
        width: 90%;
        margin: 10px auto;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}
