/* Base Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #F5F5F5; /* Light Gray Background */
    color: #333333; /* Dark Gray Text */
    margin: 0;
    padding: 0;
}

/* Header */
header {
    background-color: #1E3A5F; /* Dark Blue Header */
    color: #fff;
    padding: 20px;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 10px 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #D4AF37; /* Gold Text for Links */
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    color: #4C91B3; /* Light Blue on Hover */
}

/* Section Titles */
h2 {
    color: #1E3A5F; /* Dark Blue for Section Titles */
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

/* General Buttons */
button {
    background-color: #1E3A5F; /* Dark Blue Buttons */
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #4C91B3; /* Light Blue Button Hover */
}

/* Sign-Up Form */
#signup-form {
    background-color: #fff;
    padding: 30px;
    max-width: 600px;
    margin: 20px auto;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

#signup-form h2 {
    color: #D4AF37; /* Gold Title for Sign-Up */
    margin-bottom: 20px;
}

#signup-form label {
    font-size: 1rem;
    color: #333333;
    margin-bottom: 5px;
}

#signup-form input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    margin-bottom: 15px;
    width: 100%;
    box-sizing: border-box;
}

#signup-form button {
    width: 100%;
    background-color: #D4AF37; /* Gold Button */
    font-weight: bold;
}

/* Membership Tiers */
#membership-tiers {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 30px auto;
    max-width: 900px;
    text-align: center;
}

.membership-tiers {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.tier {
    background-color: #F5F5F5; /* Light Gray Background for Tiers */
    padding: 20px;
    width: 30%;
    margin: 10px;
    border-radius: 10px;
    border: 2px solid #D4AF37; /* Gold Border */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.tier h3 {
    color: #1E3A5F; /* Dark Blue Tier Title */
}

.tier p {
    color: #666666;
}

.tier button {
    background-color: #D4AF37; /* Gold Button for Tiers */
    color: #fff;
}

/* Dashboard */
#dashboard {
    background-color: #fff;
    padding: 20px;
    margin: 30px auto;
    max-width: 900px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.dashboard-options {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.dashboard-item {
    background-color: #F5F5F5;
    padding: 20px;
    border-radius: 10px;
    width: 30%;
    margin: 10px;
    border: 2px solid #4C91B3; /* Light Blue Border */
}

.dashboard-item h3 {
    color: #1E3A5F; /* Dark Blue for Dashboard Items */
}

.dashboard-item a {
    color: #D4AF37; /* Gold Links */
    font-weight: bold;
}

.dashboard-item a:hover {
    color: #4C91B3; /* Light Blue on Hover */
}

/* Exclusive Content */
#exclusive-content {
    background-color: #fff;
    padding: 30px;
    margin: 30px auto;
    max-width: 900px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.exclusive-post {
    background-color: #F5F5F5;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    border-left: 5px solid #D4AF37; /* Gold Accent on the Left */
}

.exclusive-post h3 {
    color: #1E3A5F;
}

.exclusive-post a {
    color: #4C91B3; /* Light Blue Links */
}

.exclusive-post a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #1E3A5F; /* Dark Blue Footer */
    color: #fff;
    padding: 20px;
    text-align: center;
}

footer p {
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .membership-tiers, .dashboard-options {
        flex-direction: column;
        align-items: center;
    }

    .tier, .dashboard-item {
        width: 80%;
    }
}
/* About Us Section */
#about-us {
    background-color: #fff;
    padding: 50px;
    margin: 30px auto;
    max-width: 900px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.about-container {
    text-align: center;
}

#about-us h2 {
    color: #1E3A5F; /* Dark Blue */
    font-size: 2rem;
    margin-bottom: 20px;
}

#about-us p {
    font-size: 1.2rem;
    color: #333333; /* Dark Gray Text */
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Team Section */
.team {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 30px;
}

.team-member {
    background-color: #F5F5F5; /* Light Gray */
    border: 2px solid #D4AF37; /* Gold Border */
    border-radius: 10px;
    padding: 20px;
    width: 30%;
    margin-bottom: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.team-member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.team-member h3 {
    color: #1E3A5F; /* Dark Blue */
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.team-member p {
    color: #666666;
    font-size: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .team {
        flex-direction: column;
        align-items: center;
    }

    .team-member {
        width: 80%;
    }
}
