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

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

header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 70px;
}

.logo a {
    font-size: 24px;
    font-weight: bold;
    color: #e74c3c;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

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

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

.hero {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    margin: 20px 0;
    border-radius: 10px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background 0.3s;
    margin: 10px;
}

.cta-button:hover {
    background: #c0392b;
}

.cta-button.large {
    padding: 20px 40px;
    font-size: 1.3rem;
}

.benefits {
    padding: 60px 0;
}

.benefits h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: #2c3e50;
}

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

.benefit {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.benefit h3 {
    color: #e74c3c;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.cta-center {
    text-align: center;
}

.testimonials {
    background: white;
    padding: 60px 0;
    margin: 40px 0;
    border-radius: 10px;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: #2c3e50;
}

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

.testimonial {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #e74c3c;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 15px;
}

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

.local-info {
    padding: 40px 0;
}

.local-info h2 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.local-info p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.cta-link {
    color: #e74c3c;
    text-decoration: none;
    font-weight: bold;
}

.cta-link:hover {
    text-decoration: underline;
}

.page-header {
    text-align: center;
    padding: 40px 0;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.filters {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.filter-bar {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.filter-select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: white;
}

.filter-btn {
    background: #e74c3c;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.ads-grid, .profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.ad-card, .profile-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.ad-card h3, .profile-card h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.ad-info, .profile-info {
    color: #666;
    font-weight: bold;
    margin-bottom: 10px;
}

.ad-preview, .profile-preview {
    margin-bottom: 15px;
    color: #555;
}

.contact-btn, .profile-btn {
    background: #e74c3c;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    font-weight: bold;
}

.contact-btn:hover, .profile-btn:hover {
    background: #c0392b;
}

.profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.online-status {
    background: #27ae60;
    color: white;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
}

.offline-status {
    background: #95a5a6;
    color: white;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
}

.quick-access {
    text-align: center;
    margin-bottom: 40px;
}

.quick-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.quick-btn {
    background: #3498db;
    color: white;
    padding: 15px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.quick-btn:hover {
    background: #2980b9;
}

.local-members {
    background: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 40px;
}

.location-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #e74c3c;
}

.stat-label {
    color: #666;
}

.meeting-tips {
    margin-bottom: 40px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.tip-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.tip-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.recommended-places {
    margin-bottom: 40px;
}

.places-list {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.place-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.place-item h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.success-stories {
    background: white;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.story-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

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

.local-network, .final-cta {
    text-align: center;
    padding: 40px 0;
}

.network-stats, .community-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.stat, .stat-box {
    text-align: center;
}

.number, .stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #e74c3c;
}

.label, .stat-desc {
    color: #666;
    font-size: 0.9rem;
}

.signup-benefits {
    margin-bottom: 40px;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.benefit-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.benefit-item h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.signup-process {
    background: white;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.process-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    max-width: 250px;
}

.step-number {
    background: #e74c3c;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 15px;
}

.member-preview {
    margin-bottom: 40px;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.preview-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #f39c12;
}

.preview-card h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.preview-card p:last-child {
    font-style: italic;
    color: #555;
}

.privacy-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 20px;
}

footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .benefits-grid, .ads-grid, .profiles-grid {
        grid-template-columns: 1fr;
    }
    
    .location-stats, .network-stats, .community-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
}