/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #FFF5F7;
}

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

/* Header and Navigation */
.navbar {
    background: linear-gradient(135deg, #8B1538 0%, #A91B3D 100%);
    color: white;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

.nav-links a:hover {
    color: #FFE4E9;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    color: white;
    text-decoration: none;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 8px;
    overflow: hidden;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
}

.dropdown-content a {
    color: #8B1538;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #FFE4E9;
    color: #8B1538;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    color: #FFE4E9;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #8B1538 0%, #A91B3D 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #FF6B8A;
    color: white;
}

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

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #8B1538;
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background: white;
}

.products-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #8B1538;
}

.search-filter {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.search-bar, .filter-select {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-bar {
    min-width: 300px;
}

.search-bar:focus, .filter-select:focus {
    border-color: #A91B3D;
}

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

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(139,21,56,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #FFE4E9;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139,21,56,0.2);
}

.product-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, #FFE4E9, #FFF5F7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.product-info p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.product-links {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.product-link {
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.amazon-link {
    background: #ff9900;
    color: white;
}

.amazon-link:hover {
    background: #e68900;
}

.doordash-link {
    background: #ff3008;
    color: white;
}

.doordash-link:hover {
    background: #e02808;
}

/* Education Section */
.education-section {
    padding: 80px 0;
    background: #FFE4E9;
}

.education-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #8B1538;
}

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

.education-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(139,21,56,0.1);
    transition: transform 0.3s ease;
    border: 1px solid #FFF5F7;
}

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

.education-card i {
    font-size: 3rem;
    color: #FF6B8A;
    margin-bottom: 1rem;
}

.education-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #8B1538;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: white;
}

.about-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #8B1538;
}

.about-section > .container > p {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #666;
}

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

.feature {
    text-align: center;
    padding: 1.5rem;
}

.feature i {
    font-size: 2.5rem;
    color: #FF6B8A;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #8B1538;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #8B1538 0%, #A91B3D 100%);
    color: white;
    text-align: center;
    padding: 3rem 0 2rem;
    margin-top: 3rem;
    box-shadow: 0 -5px 20px rgba(139, 21, 56, 0.2);
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

footer p {
    margin: 1rem 0;
    font-size: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 182, 193, 0.3);
    border-bottom: 1px solid rgba(255, 182, 193, 0.3);
}

.footer-links a {
    color: #FFE8ED;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 182, 193, 0.3);
}

.footer-links a:hover {
    color: white;
    background: rgba(255, 182, 193, 0.2);
    border-color: rgba(255, 182, 193, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.footer-disclaimer {
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 182, 193, 0.2);
    line-height: 1.6;
}

.footer-disclaimer small {
    font-size: 0.85rem;
    color: #FFE8ED;
    display: block;
}

/* Guides Section */
.guides-section {
    padding: 80px 0;
    background: white;
}

.guide-content {
    margin-bottom: 80px;
    scroll-margin-top: 80px;
}

.guide-content:last-child {
    margin-bottom: 0;
}

.guide-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #8B1538;
}

.guide-intro {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #666;
}

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

.guide-card {
    background: #FFF5F7;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #FFE4E9;
}

.guide-card h3 {
    color: #8B1538;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.guide-card h4 {
    color: #A91B3D;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    margin-top: 1rem;
}

.guide-card ul {
    list-style: none;
    padding-left: 0;
}

.guide-card ul li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.guide-card ul li::before {
    content: "•";
    color: #FF6B8A;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
}

.guide-card p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.learn-more-btn {
    margin-top: 1rem;
    padding: 8px 20px;
    background: #FF6B8A;
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    background: #FF8FA5;
    transform: translateY(-2px);
}

/* Partner Guide Specific Styles */
.cycle-stages {
    margin-top: 3rem;
}

.cycle-stages h3 {
    text-align: center;
    font-size: 2rem;
    color: #8B1538;
    margin-bottom: 2rem;
}

.stage-card {
    background: #FFF5F7;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid #FFE4E9;
}

.stage-card h4 {
    color: #8B1538;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.stage-info {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
}

.stage-info strong {
    color: #A91B3D;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.stage-info ul {
    list-style: none;
    padding-left: 0;
}

.stage-info ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.stage-info ul li::before {
    content: "✓";
    color: #FF6B8A;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.partner-tips {
    margin-top: 3rem;
    background: #FFE4E9;
    padding: 3rem;
    border-radius: 15px;
}

.partner-tips h3 {
    text-align: center;
    font-size: 2rem;
    color: #8B1538;
    margin-bottom: 2rem;
}

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

.tip-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
}

.tip-card h4 {
    color: #8B1538;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.tip-card ul {
    list-style: none;
    padding-left: 0;
}

.tip-card ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.tip-card ul li::before {
    content: "→";
    color: #FF6B8A;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Menopause Timeline */
.menopause-timeline {
    margin-top: 3rem;
    background: #FFE4E9;
    padding: 3rem;
    border-radius: 15px;
}

.menopause-timeline h3 {
    text-align: center;
    font-size: 2rem;
    color: #8B1538;
    margin-bottom: 2rem;
}

.timeline {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    gap: 2rem;
    flex-wrap: wrap;
}

.timeline-item {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    position: relative;
}

.timeline-item h4 {
    color: #8B1538;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.timeline-item p {
    color: #666;
    line-height: 1.6;
}

.timeline-item:not(:last-child)::after {
    content: "→";
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    color: #FF6B8A;
    font-size: 2rem;
    font-weight: bold;
}

@media (max-width: 768px) {
    .timeline {
        flex-direction: column;
    }
    
    .timeline-item:not(:last-child)::after {
        content: "↓";
        right: auto;
        top: auto;
        bottom: -2rem;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .search-bar {
        min-width: 250px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .search-bar {
        min-width: 100%;
    }
    
    .filter-select {
        width: 100%;
    }
    
    .search-filter {
        flex-direction: column;
    }
}

/* Utility classes */
.hidden {
    display: none;
}

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

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Products Hero Section */
.products-hero {
    background: linear-gradient(135deg, #FFB6C1, #FFC0CB);
    text-align: center;
    color: #8B1538;
}

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

.products-hero p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Blog Section Styles */
.blog-section {
    padding: 4rem 0;
    min-height: 100vh;
}

.blog-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Blog Card Styles (for preview cards) */
.blog-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(139, 21, 56, 0.1);
    border-left: 4px solid #A91B3D;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(139, 21, 56, 0.15);
}

.blog-preview {
    margin-top: 1rem;
}

.blog-preview p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: #A91B3D;
    font-weight: 600;
    font-size: 0.9rem;
}

.read-more i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.blog-card:hover .read-more i {
    transform: translateX(5px);
}

/* Individual Blog Post Page Styles */
.blog-post-page {
    padding: 4rem 0;
    min-height: 100vh;
}

.breadcrumb {
    margin-bottom: 2rem;
}

.breadcrumb a {
    color: #A91B3D;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #8B1538;
}

.full-blog-post {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 5px 30px rgba(139, 21, 56, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.full-blog-post h1 {
    font-size: 2.2rem;
    margin: 0;
}

.full-blog-post h2 {
    color: #8B1538;
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.full-blog-post h3 {
    color: #8B1538;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem;
    font-weight: 600;
}

/* Legacy blog post styles for compatibility */
.blog-post {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(139, 21, 56, 0.1);
    border-left: 4px solid #A91B3D;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(139, 21, 56, 0.15);
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.blog-header h3 {
    color: #8B1538;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.blog-category {
    background: linear-gradient(135deg, #FFB6C1, #FFC0CB);
    color: #8B1538;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
}

.blog-content {
    line-height: 1.7;
}

.blog-content p {
    margin-bottom: 1rem;
    color: #333;
}

.blog-content h4 {
    color: #8B1538;
    font-size: 1.1rem;
    margin: 1.5rem 0 0.8rem;
    font-weight: 600;
}

.blog-content ul {
    margin: 1rem 0 1.5rem 1.2rem;
}

.blog-content li {
    margin-bottom: 0.5rem;
    color: #444;
}

.blog-content li strong {
    color: #8B1538;
    font-weight: 600;
}

.blog-tip {
    background: linear-gradient(135deg, #FFF5F7, #FFE8ED);
    border: 1px solid #FFB6C1;
    border-radius: 10px;
    padding: 1.2rem;
    margin: 1.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.blog-tip i {
    color: #A91B3D;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.blog-tip strong {
    color: #8B1538;
}

/* Blog responsive design */
@media (max-width: 768px) {
    .blog-section {
        padding: 2rem 0;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-card,
    .blog-post {
        padding: 1.5rem;
    }
    
    .blog-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .blog-header h3 {
        font-size: 1.2rem;
    }
    
    .full-blog-post {
        padding: 2rem;
    }
    
    .full-blog-post h1 {
        font-size: 1.8rem;
    }
    
    .blog-tip {
        flex-direction: column;
        text-align: center;
    }
    
    .blog-tip i {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .blog-card,
    .blog-post {
        padding: 1rem;
    }
    
    .full-blog-post {
        padding: 1.5rem;
    }
    
    .full-blog-post h1 {
        font-size: 1.6rem;
    }
    
    .blog-content ul {
        margin-left: 1rem;
    }

    .footer-links {
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .footer-links a {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
    
    .footer-content {
        padding: 0 1rem;
    }
    
    .footer-disclaimer {
        padding: 1rem;
        margin: 1rem 0 0;
    }
    
    .footer-disclaimer small {
        font-size: 0.8rem;
    }
}

/* Page Section Styles */
.page-section {
    padding: 4rem 0;
    min-height: 100vh;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.content-wrapper h1 {
    color: #8B1538;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.content-wrapper h2 {
    color: #8B1538;
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    border-bottom: 2px solid #FFB6C1;
    padding-bottom: 0.5rem;
}

.content-wrapper h3 {
    color: #A91B3D;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem;
}

/* Contact Page Styles */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(139, 21, 56, 0.1);
    border-left: 4px solid #A91B3D;
}

.contact-card h2 {
    color: #8B1538;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    border: none;
    padding: 0;
}

.contact-card i {
    margin-right: 0.5rem;
    color: #A91B3D;
}

.medical-notice {
    background: #FFF5F7;
    border: 2px solid #FFB6C1;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
}

/* FAQ Styles */
.faq-section {
    margin-bottom: 3rem;
}

.faq-item {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 3px 10px rgba(139, 21, 56, 0.1);
    border-left: 4px solid #A91B3D;
}

.faq-item h3 {
    color: #8B1538;
    margin-top: 0;
    margin-bottom: 0.8rem;
}

/* Policy Notice */
.policy-note {
    background: #E8F4F8;
    border: 1px solid #A91B3D;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 2rem;
    text-align: center;
}

/* Quick Needs Section */
.quick-needs-section {
    padding: 3rem 0;
    background: white;
}

.quick-needs-section h2 {
    text-align: center;
    color: #8B1538;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.needs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.need-card {
    background: linear-gradient(135deg, #FFF5F7 0%, #FFE4E9 100%);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.need-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139,21,56,0.2);
    border-color: #A91B3D;
}

.need-card.active {
    background: linear-gradient(135deg, #8B1538 0%, #A91B3D 100%);
    color: white;
}

.need-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.need-card h3 {
    color: #8B1538;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.need-card.active h3 {
    color: white;
}

.need-card p {
    color: #666;
    font-size: 0.9rem;
}

.need-card.active p {
    color: #FFE4E9;
}

/* Preference Section */
.preference-section {
    padding: 2rem 0;
    background: #FFF5F7;
}

.preference-filters {
    margin-bottom: 2rem;
}

.filter-group {
    margin-bottom: 2rem;
}

.filter-group h3 {
    color: #8B1538;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.filter-btn {
    background: white;
    color: #8B1538;
    border: 2px solid #FFE4E9;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-btn:hover {
    border-color: #A91B3D;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: #A91B3D;
    color: white;
    border-color: #A91B3D;
}

.search-section {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.clear-filters-btn {
    background: transparent;
    color: #8B1538;
    border: 2px solid #8B1538;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.clear-filters-btn:hover {
    background: #8B1538;
    color: white;
}

/* Results Section */
.results-header {
    text-align: center;
    margin-bottom: 2rem;
}

.results-header h2 {
    color: #8B1538;
    margin-bottom: 0.5rem;
}

.results-header p {
    color: #666;
    font-size: 1.1rem;
}

.no-results {
    text-align: center;
    padding: 3rem;
    color: #666;
}

.no-results h3 {
    color: #8B1538;
    margin-bottom: 1rem;
}

.no-results a {
    color: #A91B3D;
    text-decoration: none;
    font-weight: 500;
}

.no-results a:hover {
    text-decoration: underline;
}

/* Enhanced Product Cards */
.product-card {
    position: relative;
    overflow: hidden;
}

.product-card .product-tags {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.product-tag {
    background: #A91B3D;
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
}

.product-tag.eco {
    background: #27ae60;
}

.product-tag.budget {
    background: #f39c12;
}

.product-tag.beginner {
    background: #e74c3c;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content-wrapper h1 {
        font-size: 2rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        padding: 1.5rem;
    }

    .needs-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1rem;
    }

    .need-card {
        padding: 1.5rem 1rem;
    }

    .filter-buttons {
        justify-content: flex-start;
    }

    .search-section {
        flex-direction: column;
    }
}