* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header */
.navbar {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #FF6600;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #FF6600;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FF6600, #FF8533);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #FF6600;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
    margin: 0.5rem;
}

.cta-button:hover {
    background-color: #E55A00;
    transform: translateY(-2px);
}

.cta-button.primary {
    background-color: #FF6600;
}

.cta-button.secondary {
    background-color: #333;
}

.cta-button.large {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
}

/* Benefits Section */
.benefits {
    padding: 4rem 0;
    background-color: #f8f8f8;
}

.benefits h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: #333;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.benefit-item h3 {
    color: #FF6600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.cta-section {
    text-align: center;
    margin-top: 3rem;
}

/* Testimonials */
.testimonials {
    padding: 4rem 0;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #FF6600;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial span {
    font-weight: bold;
    color: #666;
}

/* Local Info */
.local-info {
    padding: 4rem 0;
    background-color: #f8f8f8;
    text-align: center;
}

.local-info h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
}

.local-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #FF6600, #FF8533);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

/* Profiles */
.profiles {
    padding: 4rem 0;
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.profile-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.profile-avatar {
    width: 80px;
    height: 80px;
    background-color: #ddd;
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.profile-card h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.location {
    color: #FF6600;
    font-weight: bold;
    margin-bottom: 1rem;
}

.description {
    color: #666;
    margin-bottom: 1.5rem;
}

.profile-btn {
    background-color: #FF6600;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.profile-btn:hover {
    background-color: #E55A00;
}

/* Announcements */
.announcements {
    padding: 4rem 0;
}

.announcements-list {
    margin-bottom: 3rem;
}

.announcement-item {
    background: white;
    border: 1px solid #eee;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
}

.announcement-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.announcement-header h3 {
    color: #333;
    font-size: 1.2rem;
}

.age {
    color: #FF6600;
    font-weight: bold;
}

.announcement-item p {
    color: #666;
    margin-bottom: 1rem;
}

.announcement-btn {
    background-color: #FF6600;
    color: white;
    padding: 0.7rem 1.2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.announcement-btn:hover {
    background-color: #E55A00;
}

/* Meeting Spots */
.meeting-spots {
    padding: 4rem 0;
    background-color: #f8f8f8;
}

.meeting-spots h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.spots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.spot-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.spot-item h3 {
    color: #FF6600;
    margin-bottom: 1rem;
}

.spot-btn {
    background-color: #333;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
    display: inline-block;
    margin-top: 1rem;
}

.spot-btn:hover {
    background-color: #555;
}

/* Meeting Tips */
.meeting-tips {
    padding: 4rem 0;
}

.meeting-tips h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.tips-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.tip-item {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.tip-item h3 {
    color: #FF6600;
    margin-bottom: 1rem;
}

/* Active Members */
.active-members {
    padding: 4rem 0;
    background-color: #f8f8f8;
    text-align: center;
}

.active-members h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
}

.members-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
}

.number {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    color: #FF6600;
}

.label {
    color: #666;
    font-weight: bold;
}

/* Registration */
.registration-benefits {
    padding: 4rem 0;
    background-color: #f8f8f8;
}

.registration-benefits h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.registration-cta {
    padding: 4rem 0;
    text-align: center;
}

.cta-box {
    background: linear-gradient(135deg, #FF6600, #FF8533);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.cta-box h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.cta-box p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.disclaimer {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 1rem;
}

/* Success Stories */
.success-stories {
    padding: 4rem 0;
    background-color: #f8f8f8;
}

.success-stories h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.story-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #FF6600;
}

.story-item p {
    font-style: italic;
    margin-bottom: 1rem;
}

.story-item span {
    font-weight: bold;
    color: #666;
}

/* Final CTA */
.final-cta {
    padding: 4rem 0;
    text-align: center;
}

.final-cta h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.final-cta p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .members-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .announcement-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
    }
    
    .cta-button.large {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }
}