* {
    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 */
header {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav {
    padding: 1rem 0;
}

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

nav h1 a {
    color: white;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: bold;
}

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

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ff8e53, #ff6b6b);
    color: white;
    padding: 4rem 0;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.search-form {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.search-form h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.form-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.option-btn {
    background: white;
    color: #ff6b6b;
    padding: 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
}

.option-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Features */
.features {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

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

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

.feature h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* CTA Sections */
.cta, .cta-section {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

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

.cta p, .cta-section p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    opacity: 0.9;
}

.cta-button {
    background: white;
    color: #ff6b6b;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

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

/* Breadcrumb */
.breadcrumb {
    margin: 2rem 0 1rem 0;
    color: #666;
}

.breadcrumb a {
    color: #ff6b6b;
    text-decoration: none;
}

/* Main Content */
main {
    min-height: 60vh;
    padding: 2rem 0;
}

h1 {
    color: #ff6b6b;
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

/* Filters */
.filters {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.filters h3 {
    margin-bottom: 1rem;
    color: #333;
}

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

.filter-btn {
    background: #ff6b6b;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.filter-btn:hover {
    background: #ff5252;
}

/* Listings */
.listings {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.listing-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
}

.listing-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.listing-card h3 {
    color: #ff6b6b;
    margin-bottom: 0.5rem;
}

.listing-details {
    color: #666;
    font-size: 0.9rem;
    margin: 1rem 0;
}

.contact-btn, .profile-btn {
    background: #ff6b6b;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
    display: inline-block;
}

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

/* Tips Article */
.tips-article {
    max-width: 800px;
    margin: 0 auto;
}

.tips-article h2 {
    color: #ff6b6b;
    margin: 2rem 0 1rem 0;
    font-size: 1.5rem;
}

.tips-article p {
    margin-bottom: 1rem;
    text-align: justify;
}

/* Neighborhoods */
.neighborhoods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

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

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

.neighborhood-card h2 {
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.neighborhood-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1rem 0;
    color: #666;
    font-size: 0.9rem;
}

/* Partner Types */
.partner-types {
    margin: 2rem 0;
}

.partner-section {
    margin: 3rem 0;
}

.partner-section h2 {
    color: #ff6b6b;
    margin-bottom: 1rem;
}

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

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

.profile-card h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-menu a {
        font-size: 0.9rem;
    }
    
    .form-options {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .neighborhoods {
        grid-template-columns: 1fr;
    }
    
    .partner-profiles {
        grid-template-columns: 1fr;
    }
    
    .filter-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    nav .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .search-form {
        padding: 1rem;
    }
}