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

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

/* Header */
header {
    background: linear-gradient(135deg, #6b46c1, #9333ea);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo a {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
}

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

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

.nav-menu a:hover,
.nav-menu a.active {
    color: #fbbf24;
}

.btn-primary {
    background: #f59e0b;
    color: white;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #d97706;
}

.btn-secondary {
    background: #6b7280;
    color: white;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: #4b5563;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, #f3e8ff, #e0e7ff);
    border-radius: 15px;
    margin-bottom: 3rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #6b46c1;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #6b7280;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    margin-top: 2rem;
}

/* Search Section */
.search-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
}

.search-section h2 {
    color: #6b46c1;
    margin-bottom: 1rem;
}

.search-filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.search-filters select {
    padding: 0.5rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    font-size: 1rem;
}

/* Profiles Grid */
.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.profile-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.profile-card:hover {
    transform: translateY(-5px);
}

.profile-image {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

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

.profile-card p {
    color: #6b7280;
    margin-bottom: 0.5rem;
}

/* Info Section */
.info-section {
    margin: 3rem 0;
}

.info-section h2 {
    text-align: center;
    color: #6b46c1;
    margin-bottom: 2rem;
}

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

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

.info-card h3 {
    color: #6b46c1;
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, #6b46c1, #9333ea);
    color: white;
    border-radius: 15px;
    margin: 3rem 0;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

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

/* Page Headers */
.page-header {
    text-align: center;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #6b46c1;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    color: #6b7280;
}

/* Filters Section */
.filters-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.filters-container h2 {
    color: #6b46c1;
    margin-bottom: 1rem;
}

.filter-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-options select {
    padding: 0.5rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    font-size: 1rem;
}

/* Announcements */
.announcements-grid {
    display: grid;
    gap: 2rem;
}

.announcement-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    gap: 1rem;
}

.announcement-image {
    font-size: 2rem;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.announcement-content {
    flex: 1;
}

.announcement-content h3 {
    color: #6b46c1;
    margin-bottom: 0.5rem;
}

.location {
    color: #9333ea;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.description {
    color: #6b7280;
    margin-bottom: 1rem;
}

.announcement-meta {
    display: flex;
    gap: 1rem;
}

.announcement-meta span {
    background: #f3f4f6;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.9rem;
    color: #6b7280;
}

/* Specific Profile Cards */
.couple-card,
.woman-card,
.man-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.couple-card:hover,
.woman-card:hover,
.man-card:hover {
    transform: translateY(-5px);
}

.couple-image,
.woman-image,
.man-image {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.couple-info h3,
.woman-info h3,
.man-info h3 {
    color: #6b46c1;
    margin-bottom: 0.5rem;
}

.ages,
.age {
    color: #9333ea;
    font-weight: 600;
}

.couple-preferences,
.woman-preferences,
.man-preferences {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 1rem 0;
}

.couple-preferences span,
.woman-preferences span,
.man-preferences span {
    background: #f3e8ff;
    color: #6b46c1;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.9rem;
}

.couple-status,
.woman-status,
.man-status {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.online {
    background: #d1fae5;
    color: #065f46;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.9rem;
}

.offline {
    background: #fee2e2;
    color: #991b1b;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.9rem;
}

.verified,
.new,
.premium,
.active,
.experienced,
.beginner {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.9rem;
}

.verified {
    background: #dbeafe;
    color: #1e40af;
}

.new {
    background: #fef3c7;
    color: #92400e;
}

.premium {
    background: #fdf2f8;
    color: #9d174d;
}

.active {
    background: #dcfce7;
    color: #166534;
}

.experienced {
    background: #f3e8ff;
    color: #6b46c1;
}

.beginner {
    background: #fef3c7;
    color: #92400e;
}

/* Tips and Guidelines */
.couples-tips,
.women-advice,
.men-guidelines {
    margin-top: 3rem;
}

.couples-tips h2,
.women-advice h2,
.men-guidelines h2 {
    color: #6b46c1;
    margin-bottom: 2rem;
    text-align: center;
}

.tips-grid,
.advice-grid,
.guidelines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tip-card,
.advice-card,
.guideline-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.tip-card h3,
.advice-card h3,
.guideline-card h3 {
    color: #6b46c1;
    margin-bottom: 1rem;
}

/* Intro Sections */
.couples-intro,
.women-intro,
.men-intro {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
    text-align: center;
}

.couples-intro h2,
.women-intro h2,
.men-intro h2 {
    color: #6b46c1;
    margin-bottom: 1rem;
}

/* Pagination */
.pagination {
    text-align: center;
    margin-top: 3rem;
}

.pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.pagination-controls button {
    padding: 0.5rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    font-size: 1rem;
}

.pagination-controls button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-controls button:not(:disabled):hover {
    background: #f3f4f6;
}

/* Footer */
footer {
    background: #1f2937;
    color: white;
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .search-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .announcement-card {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .pagination-controls {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    main {
        padding: 1rem;
    }
    
    .hero {
        padding: 2rem 1rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .profiles-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid,
    .tips-grid,
    .advice-grid,
    .guidelines-grid {
        grid-template-columns: 1fr;
    }
}