body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
    color: #333;
    line-height: 1.6;
}

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

header {
    background-color: #28a745; /* A nice green */
    min-width: 480px;
    color: white;
    padding: 1em 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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

header h1 {
    margin: 0;
    font-size: 2em;
}

footer p {
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav a:hover, nav a.active {
    background-color: #1e7e34;
}

main {
    padding: 30px 0;
}

main h2 {
    color: #28a745;
    margin-bottom: 20px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
}

.hero {
    background-color: #e9fbea; /* Light green background */
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.hero-content {
    flex: 2;
}

.hero h2 {
    color: #28a745;
    margin-top: 0;
}

.hero .button {
    display: inline-block;
    background-color: #28a745;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.hero .button:hover {
    background-color: #1e7e34;
}

.hero-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    display: block;
    width: 100%;
    height: auto;
}

.announcements {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.announcements h3 {
    color: #555;
    margin-top: 0;
    margin-bottom: 15px;
}

.announcements ul {
    list-style: none;
    padding: 0;
}

.announcements li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.announcements li:last-child {
    border-bottom: none;
}

.announcements .date {
    font-weight: bold;
    color: #777;
    margin-right: 10px;
}

.about-us {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.about-us h3 {
    color: #555;
    margin-top: 0;
    margin-bottom: 15px;
}

.winners-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.tournament-winners {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.tournament-winners h3 {
    color: #333;
    margin-top: 0;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.tournament-winners ul {
    list-style: none;
    padding: 0;
}

.tournament-winners li {
    padding: 5px 0;
}

.tournament-winners .year {
    font-weight: bold;
    color: #777;
    margin-right: 10px;
}

.winners-list .note {
    margin-top: 20px;
    font-style: italic;
    color: #777;
}

.members-list table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.members-list th, .members-list td {
    border-bottom: 1px solid #eee;
    padding: 12px 15px;
    text-align: left;
}

.members-list th {
    background-color: #f9f9f9;
    font-weight: bold;
    color: #555;
}

.members-list tbody tr:last-child td {
    border-bottom: none;
}

.members-list td a {
    color: #28a745;
    text-decoration: none;
}

.members-list .note {
    margin-top: 20px;
}

.tournament-list ul {
    list-style: none;
    padding: 0;
}

.tournament-list li {
    margin-bottom: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.tournament-title {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 15px 20px;
    background-color: #f9f9f9;
    color: #333;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.tournament-title:hover {
    background-color: #eee;
}

.tournament-title i {
    margin-right: 10px;
    color: #28a745;
}

.tournament-scores {
    padding: 15px 20px;
    display: none; /* Initially hidden */
    background-color: #fff;
    border-top: 1px solid #eee;
}

.tournament-scores h3 {
    color: #555;
    margin-top: 0;
    margin-bottom: 10px;
}

.tournament-scores table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.tournament-scores th, .tournament-scores td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.tournament-scores th {
    background-color: #f0f0f0;
    font-weight: bold;
}

.contact-info {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.contact-info h3 {
    color: #555;
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info i {
    margin-right: 10px;
    color: #28a745;
}

.contact-info a {
    color: #28a745;
    text-decoration: none;
}

.contact-form {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    color: #555;
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: calc(100% - 12px);
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
}

.form-group textarea {
    resize: vertical;
}

.contact-form .button {
    display: inline-block;
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1em;
}

.contact-form .button:hover {
    background-color: #1e7e34;
}

.contact-form .button i {
    margin-right: 5px;
}

.contact-form .note {
    margin-top: 15px;
    font-size: 0.9em;
    color: #777;
}

/* ... previous CSS ... */

.member-info {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    text-align: center;
}

.member-info h2 {
    color: #555;
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.profile-details {
    margin-top: 20px;
}

.profile-details h3 {
    color: #333;
    margin-bottom: 10px;
}

.profile-details p {
    margin-bottom: 8px;
}

.profile-details i {
    margin-right: 8px;
    color: #28a745;
}

.profile-details a {
    color: #28a745;
    text-decoration: none;
}

.tournament-history {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.tournament-history h3 {
    color: #555;
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.tournament-history table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.tournament-history th, .tournament-history td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.tournament-history th {
    background-color: #f0f0f0;
    font-weight: bold;
}

.tournament-history tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.tournament-history .note {
    margin-top: 15px;
    font-size: 0.9em;
    color: #777;
}

.members-list table td a {
    color: #28a745;
    text-decoration: none;
    font-weight: bold;
}

.members-list table td a:hover {
    text-decoration: underline;
}

/* ... Member application ... */

.member-application {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.member-application h2 {
    color: #555;
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.member-application p {
    margin-bottom: 20px;
    color: #777;
}

.member-application .form-group {
    margin-bottom: 18px;
}

.member-application label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.member-application input[type="text"],
.member-application input[type="email"],
.member-application input[type="tel"],
.member-application input[type="number"],
.member-application textarea {
    width: calc(100% - 12px);
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
}

.member-application textarea {
    resize: vertical;
}

.member-application .radio-group {
    display: flex;
    gap: 20px;
    align-items: center;
}

.member-application .radio-group input[type="radio"] {
    margin-right: 5px;
}

.member-application .terms {
    margin-top: 20px;
    display: flex;
    align-items: center;
}

.member-application .terms input[type="checkbox"] {
    margin-right: 10px;
}

.member-application .terms a {
    color: #28a745;
    text-decoration: none;
}

.member-application .terms a:hover {
    text-decoration: underline;
}

.member-application .button {
    display: inline-block;
    background-color: #28a745;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1em;
    margin-top: 20px;
}

.member-application .button:hover {
    background-color: #1e7e34;
}

.member-application .button i {
    margin-right: 8px;
}