/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #fafafa;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: #e91e63;
    transition: color 0.3s;
}

a:hover {
    color: #c2185b;
}

/* Header Styles - Unified */
header {
    position: relative;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 100;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #e91e63;
    display: flex;
    align-items: center;
}

.logo i {
    margin-right: 10px;
}

.nav-desktop {
    display: flex;
    align-items: center;
}

.nav-desktop a {
    color: #333;
    margin-left: 25px;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 20px;
    transition: background 0.3s;
}

.nav-desktop a:hover {
    background: rgba(233, 30, 99, 0.1);
}

.nav-desktop .join-btn {
    background: #e91e63;
    color: white;
    margin-left: 25px; /* Added spacing for JOIN NOW button */
}

.nav-desktop .join-btn:hover {
    background: #c2185b;
}

.hamburger {
    display: none;
    font-size: 24px;
    color: #333;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    z-index: 100;
}

.nav-mobile a {
    padding: 15px;
    color: #333;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.nav-mobile a:last-child {
    border-bottom: none;
}

/* Homepage Specific Header */
.homepage-header {
    height: 700px;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('bg.jpg') no-repeat center center/cover;
    color: white;
    display: flex;
    flex-direction: column;
}

.homepage-header .header-top {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
}

.homepage-header .nav-desktop a {
    color: white;
}

.homepage-header .nav-desktop a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.homepage-header .hamburger {
    color: white;
}

.header-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.header-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

.header-content h2 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 30px;
    max-width: 700px;
}

.cta-button {
    background: #e91e63;
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s, background 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.cta-button:hover {
    background: #c2185b;
    transform: translateY(-3px);
	color: #fff;
}

/* Content Sections */
.section {
    padding: 60px 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #e91e63;
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Why Choose Us - Redesigned */
.why-choose-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.why-choose-content {
    flex: 1;
    min-width: 300px;
}

.why-choose-content h3 {
    font-size: 26px;
    color: #e91e63;
    margin-bottom: 20px;
}

.why-choose-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.benefits-list i {
    color: #e91e63;
    margin-right: 10px;
    margin-top: 5px;
    font-size: 18px;
}

.why-choose-image {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    max-height: 600px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.why-choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Our Approach to Matching - Redesigned */
.approach-section {
    background: linear-gradient(to right, #f3e5f5, #e8eaf6);
}

.approach-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.approach-image {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    max-height: 600px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border: 5px solid white;
}

.approach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.approach-content {
    flex: 1;
    min-width: 300px;
}

.approach-content h3 {
    font-size: 26px;
    color: #7b1fa2;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.approach-content h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #7b1fa2;
}

.approach-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.approach-features {
    list-style: none;
    margin-top: 25px;
}

.approach-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.7);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #7b1fa2;
}

.approach-features i {
    color: #7b1fa2;
    margin-right: 10px;
    margin-top: 5px;
    font-size: 18px;
}

/* Features Section */
.features-section {
    background: #f9f9f9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: #fce4ec;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #e91e63;
    font-size: 28px;
}

.feature-item h3 {
    color: #e91e63;
    margin-bottom: 15px;
    font-size: 20px;
}

/* Success Stories */
.stories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.story {
    background: white;
    border-radius: 10px;
    padding: 30px;
    width: 100%;
    max-width: 550px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
}

.story:before {
    content: '"';
    font-size: 80px;
    color: #e91e63;
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.story-content {
    margin-bottom: 20px;
    font-style: italic;
    color: #555;
}

.story-author {
    display: flex;
    align-items: center;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #c5e1a5;
    margin-right: 15px;
    overflow: hidden;
}

.author-info h4 {
    color: #e91e63;
    margin-bottom: 5px;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(to right, #f8bbd0, #e1bee7);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #e91e63;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    max-height: 300px;
    padding: 0 20px 20px;
}

/* Blog List Header */
.blog-list-header {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: white;
    padding: 100px 20px 80px;
    text-align: center;
}

.blog-list-header h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

/* Blog Container */
.blog-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 60px 20px;
    justify-content: center;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card-img {
    height: 250px;
    background-color: #bbdefb;
    background-position: center;
    background-size: cover;
}

.blog-card-content {
    padding: 25px;
}

.blog-card-content h2 {
    color: #e91e63;
    margin-bottom: 15px;
    font-size: 22px;
}

.blog-card-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-card-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #888;
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more {
    display: inline-block;
    background: #e91e63;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 500;
    transition: background 0.3s;
}

.read-more:hover {
    background: #c2185b;
}

/* Blog Detail Header */
.blog-detail-header {
    background: linear-gradient(135deg, #f8bbd0, #e1bee7);
    color: #333;
    padding: 100px 20px 60px;
    text-align: center;
}

.blog-detail-header h1 {
    font-size: 36px;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
}

.blog-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.7);
    padding: 8px 15px;
    border-radius: 20px;
}

/* Blog Content */
.blog-content {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
}

.blog-content p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.8;
}

.blog-content h2 {
    color: #e91e63;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #fce4ec;
}

.blog-content img {
    width: 100%;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.blog-image-caption {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-top: -20px;
    margin-bottom: 30px;
}

.blog-content blockquote {
    border-left: 4px solid #e91e63;
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #666;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 0 10px 10px 0;
}

.blog-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.blog-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Article Image */
.article-image {
    width: 100%;
    margin: 40px 0;
    text-align: center;
}

.article-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.article-image .caption {
    margin-top: 10px;
    font-style: italic;
    color: #666;
    font-size: 16px;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    padding: 30px 20px;
    text-align: center;
}

.copyright {
    padding-top: 20px;
    color: #999;
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header-content h1 {
        font-size: 36px;
    }
    
    .header-content h2 {
        font-size: 20px;
    }
    
    .nav-desktop {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .nav-mobile.active {
        display: flex;
    }
    
    .why-choose-container, .approach-container {
        flex-direction: column;
    }
    
    .why-choose-image, .approach-image {
        max-width: 100%;
        max-height: 250px;
    }
    
    .story {
        max-width: 100%;
    }
    
    .blog-list-header h1, .blog-detail-header h1 {
        font-size: 28px;
    }
    
    .blog-card {
        max-width: 100%;
    }
    
    .blog-meta {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .header-content h1 {
        font-size: 28px;
    }
    
    .header-content h2 {
        font-size: 18px;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .why-choose-image, .approach-image {
        max-height: 200px;
    }
    
    .blog-list-header h1, .blog-detail-header h1 {
        font-size: 24px;
    }
    
    .blog-content {
        padding: 0 15px;
    }
    
    .blog-content p {
        font-size: 16px;
    }
    
    .blog-card-meta {
        flex-direction: column;
        gap: 8px;
    }
}