/* General Page Styles */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom right, #E3F2FD, #BBDEFB); /* Light Blue Gradient */
    margin: 0;
    padding: 0;
    color: #333;
}

/* Hero Section (Header + Quick Stats Combined) */
.hero-section {
    text-align: center;
    background: #90CAF9; /* Slightly Darker Light Blue */
    color: #003B6F; /* Deep Blue for Contrast */
    padding: 40px 20px;
    border-radius: 0 0 30px 30px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.hero-section .logo {
    width: 120px;
    margin-bottom: 15px;
}

.hero-section h1 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 5px;
}

.hero-section p {
    font-size: 16px;
    font-weight: 300;
}

/* Quick Stats */
.stats {
    font-size: 18px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 10px;
    display: inline-block;
    margin-top: 15px;
}

/* Join Section */
.join {
    text-align: center;
    margin: 40px 20px;
}

.join h2 {
    color: #005B96; /* Medium Blue */
    font-size: 24px;
    margin-bottom: 20px;
}

/* Join Buttons */
.join-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.join-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 12px 18px;
    border-radius: 12px;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #005B96;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}

.join-card img {
    width: 28px;
    margin-right: 8px;
}

.join-card:hover {
    background: #005B96;
    color: white;
    transform: translateY(-2px);
}

/* Achievements */
.achievements {
    background: white;
    text-align: center;
    padding: 30px;
    margin: 40px auto;
    width: 80%;
    border-radius: 12px;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.1);
}

.achievements h2 {
    color: #005B96;
}

.achievements ul {
    list-style: none;
    padding: 0;
}

.achievements li {
    font-size: 18px;
    font-weight: 500;
    margin: 10px 0;
}

/* Why Join AyurQuest */
.why-join {
    text-align: center;
    padding: 30px;
    background: #E3F2FD;
    margin: 20px auto;
    width: 80%;
    border-radius: 12px;
}

.why-join h2 {
    color: #005B96;
}

.why-join ul {
    list-style: none;
    padding: 0;
}

.why-join li {
    font-size: 18px;
    font-weight: 500;
    margin: 10px 0;
}
