/* Global Layout Fixes */
* {
    box-sizing: border-box;
}

/* Base44-Inspired Clean Design */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Clean Section Spacing */
section {
    padding: 80px 0;
    background: transparent;
    border: none;
}

section:first-of-type {
    padding-top: 40px;
}

/* Remove all borders and backgrounds */
.featured-section,
.articles-section,
.faq-section {
    background: transparent;
    border: none;
    box-shadow: none;
}

.featured-section::before,
.articles-section::before,
.faq-section::before {
    display: none;
}

/* Hero Section - Base44 Style */
.hero {
    background: linear-gradient(135deg, #f0f9ff 0%, #fef3f2 100%);
    padding: 120px 0 100px;
    text-align: center;
    border: none;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-value-props {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 32px 0;
    padding: 0 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.value-prop {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.value-prop:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.value-icon {
    font-size: 1.5rem;
    opacity: 0.8;
}

.value-prop span:last-child {
    font-weight: 500;
    color: #334155;
    font-size: 0.95rem;
}

/* Hero Features */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.feature-icon {
    font-size: 16px;
}

.feature-text {
    white-space: nowrap;
}

.btn {
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn--primary {
    background: #3b82f6;
    color: white;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
}

.btn--primary:hover {
    background: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.btn--secondary {
    background: #ffffff;
    color: #374151;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn--secondary:hover {
    background: #f9fafb;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Header and Navigation - Clean Base44 Style */
.header {
    position: relative;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
}

.navbar {
    padding: 20px 0;
    width: 100%;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.01em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    padding: 8px 0;
    position: relative;
}

.nav-link:hover,
.nav-link--active {
    color: #3b82f6;
}

.nav-link--primary {
    background: #3b82f6;
    color: white !important;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-link--primary:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

/* Featured Section - Clean Cards */
.featured-section {
    padding: 100px 0;
    background: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.highlight {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Featured Article Card */
.featured-article-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.featured-article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.15);
}

.featured-image-container {
    position: relative;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #f0f9ff, #fef3f2);
}

.featured-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}

.featured-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.3;
}

.featured-excerpt {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.featured-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.875rem;
    color: #64748b;
}

/* Article Grid - Base44 Style */
.beautiful-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.article-blog-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.article-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(59, 130, 246, 0.2);
}

.category-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.category-content {
    position: relative;
    z-index: 2;
}

.category-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f0f9ff, #fef3f2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #3b82f6;
}

.category-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.4;
}

.category-desc {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.article-meta-info {
    display: flex;
    gap: 8px;
    font-size: 0.8rem;
    color: #9ca3af;
    margin-bottom: 16px;
}

.article-count {
    display: inline-block;
    background: #f1f5f9;
    color: #64748b;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* FAQ Section - Clean & Minimal */
.faq-section {
    padding: 100px 0;
    background: #fafbfc;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-item:hover {
    border-color: rgba(59, 130, 246, 0.2);
}

.faq-question {
    width: 100%;
    border: none;
    background: transparent;
    padding: 24px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    transition: all 0.2s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-icon {
    color: #64748b;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: #ffffff;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 24px 24px;
}

.faq-item.active .faq-question {
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
}

.faq-item.active .faq-question .faq-icon {
    transform: rotate(180deg);
}

.faq-answer p {
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 16px 0;
    font-size: 0.95rem;
}

.faq-answer ul {
    color: #64748b;
    line-height: 1.6;
    margin: 16px 0;
    padding-left: 20px;
}

.faq-answer ul li {
    margin-bottom: 8px;
}

.faq-answer strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Footer - Clean */
.footer {
    background: #1a1a1a;
    color: #9ca3af;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand h2 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.footer-description {
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
}

.footer-title {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-list {
    list-style: none;
}

.footer-list a {
    color: #9ca3af;
    text-decoration: none;
    line-height: 1.8;
    transition: color 0.2s ease;
}

.footer-list a:hover {
    color: #3b82f6;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #374151;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-features {
        gap: 15px;
        margin: 30px 0;
    }
    
    .feature-item {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .hero-value-props {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 24px 0;
        padding: 0 16px;
    }
    
    .value-prop {
        padding: 12px 16px;
    }
    
    .value-prop span:last-child {
        font-size: 0.9rem;
    }
    
    .featured-article-card {
        grid-template-columns: 1fr;
    }
    
    .beautiful-articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    section {
        padding: 60px 0;
    }
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 50px;
}

.load-more-btn {
    background: white;
    color: #374151;
    border: 1px solid #e5e7eb;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.load-more-btn:hover {
    background: #f9fafb;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Smooth animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.brand-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-link img {
    height: 40px;
    width: auto;
}

.blog-badge {
    background: #ff6b9d;
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
    align-items: center;
}

.nav-menu li {
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: #2d3748;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: #ff6b9d;
}

.nav-link--primary {
    background: #2563eb;
    color: white !important;
    padding: 12px 24px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link--primary:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 3px;
    background: #2d3748;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section Fixes */
.hero {
    background: transparent;
    padding: 80px 0;
    color: #1a202c;
    text-align: center;
}

/* Page Header */
.page-header {
    background: #ffffff;
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #718096;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
}

.hero-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn--primary {
    background: #ff6b9d;
    color: white;
}

.btn--primary:hover {
    background: #e55590;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 157, 0.3);
}

.btn--secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn--secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
}

/* Enhanced Featured Section */
.featured-section {
    padding: 120px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.featured-section::before {
    display: none;
}

.featured-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.featured-section .section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.featured-section .section-title .highlight {
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    border-radius: 2px;
    margin: 0 auto;
}

.featured-article-link {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.featured-article-link:hover {
    transform: translateY(-5px);
}

.featured-article-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    transition: all 0.3s ease;
}

.featured-article-link:hover .featured-article-card {
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.18);
}

.featured-image-container {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.placeholder-content {
    text-align: center;
    max-width: 300px;
}

.placeholder-icon {
    margin-bottom: 20px;
    opacity: 0.8;
}

.placeholder-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.placeholder-content p {
    font-size: 1rem;
    opacity: 0.9;
    color: white;
}

.featured-article-link:hover .featured-image {
    transform: scale(1.05);
}

.featured-article-link:hover .featured-image-placeholder {
    transform: scale(1.05);
    transition: transform 0.5s ease;
}

.featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
}

.featured-badge {
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
}

.featured-category {
    background: rgba(255, 255, 255, 0.9);
    color: #1e293b;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    align-self: flex-start;
    backdrop-filter: blur(10px);
}

.featured-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.featured-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

.featured-date {
    color: #3b82f6;
    font-weight: 600;
}

.featured-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.01em;
}

.featured-excerpt {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.featured-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    border-top: 1px solid #e2e8f0;
}

.featured-author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f1f5f9;
}

.featured-author-avatar-placeholder {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    border: 3px solid #f1f5f9;
}

.featured-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.featured-author-name {
    font-weight: 700;
    color: #1e293b;
    font-size: 1rem;
}

.featured-author-title {
    color: #64748b;
    font-size: 0.9rem;
}

.featured-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #3b82f6;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.featured-article-link:hover .featured-cta {
    color: #ff6b9d;
    transform: translateX(5px);
}

.read-more-btn {
    font-size: 1.1rem;
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.featured-article-link:hover .arrow-icon {
    transform: translateX(5px);
}

.featured-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
}

.article-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.article-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.article-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.article-image:hover img {
    transform: scale(1.05);
}

.article-tag {
    position: absolute;
    top: 24px;
    left: 24px;
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.4);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.category {
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
}

.date, .read-time {
    color: #64748b;
    font-size: 15px;
    font-weight: 500;
}

.article-title {
    margin-bottom: 24px;
}

.article-title a {
    color: #1e293b;
    text-decoration: none;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    transition: color 0.3s ease;
    display: block;
}

.article-title a:hover {
    color: #ff6b9d;
}

.article-excerpt {
    color: #475569;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 32px;
    font-weight: 400;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    border-top: 1px solid #e2e8f0;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f1f5f9;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.author-name {
    font-weight: 700;
    color: #1e293b;
    display: block;
    font-size: 16px;
}

.author-title {
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    margin-top: 2px;
}
.articles-section {
    padding: 80px 0;
    background: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Categories Section Fixes */
.categories-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.categories-header {
    text-align: center;
    margin-bottom: 60px;
}

.categories-header .section-title {
    color: #2d3748;
}

.categories-header .highlight {
    color: #ff6b9d;
}

/* Footer Fixes */
.footer {
    background: #2d3748;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 10px;
}

.footer-list a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: #ff6b9d;
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 30px;
    text-align: center;
}

.copyright, .editorial-note {
    margin: 10px 0;
    color: #cbd5e0;
    font-size: 0.9rem;
}

/* Mobile Responsive Fixes */
@media (max-width: 768px) {
    .nav-container {
        padding: 12px 20px;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        gap: 15px;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        padding: 20px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .blog-badge {
        font-size: 10px;
        padding: 6px 12px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .featured-section {
        padding: 60px 0;
    }
    
    .featured-section .section-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
    
    .featured-article-card {
        grid-template-columns: 1fr;
        gap: 0;
        margin: 0 20px;
    }
    
    .featured-image-container {
        height: 250px;
        order: 1;
    }
    
    .featured-content {
        padding: 30px;
        order: 2;
    }
    
    .featured-title {
        font-size: 1.8rem;
    }
    
    .featured-excerpt {
        font-size: 1rem;
    }
    
    .featured-overlay {
        padding: 20px;
    }
    }
    
    .featured-article {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 20px;
        margin: 0 20px;
        border-radius: 16px;
    }
    
    .article-image {
        transform: none;
        order: -1;
    }
    
    .article-title a {
        font-size: 1.8rem;
    }
    
    .featured-section .section-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .beautiful-categories {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .category-item {
        margin: 0 auto !important;
        max-width: 300px !important;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    font-weight: 400;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #1a1a1a;
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
    border-radius: 4px;
}

.skip-link:focus {
    top: 6px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e5e5;
    z-index: 100;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-link {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.brand-link img {
    height: 40px;
    width: auto;
}

.blog-badge {
    background: #0066ff;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #0066ff;
}

.nav-link--primary {
    background: #0066ff;
    color: white !important;
    padding: 10px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link--primary:hover {
    background: #0052cc;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #1a1a1a;
    border-radius: 1px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.hero-content {
    max-width: 100%;
    margin: 0 auto;
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    word-spacing: 0.1em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-cta {
    display: flex;
    gap: 16px;
    align-items: center;
}

.hero-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    background: none;
}

.btn--primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    border: none;
}

.btn--primary:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #d4851a 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

.btn--secondary {
    color: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn--secondary:hover {
    border-color: rgba(255, 255, 255, 0.8);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

/* Main Content */
.main-content {
    background: #ffffff;
}

/* Featured Section */
.featured-section {
    padding: 80px 0;
    background: #ffffff;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 48px;
    text-align: center;
    letter-spacing: -0.01em;
}

.featured-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.article-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.article-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-image:hover img {
    transform: scale(1.05);
}

.article-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #0066ff;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #64748b;
}

.category {
    background: #f1f5f9;
    color: #475569;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.article-title a {
    text-decoration: none;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.article-title a:hover {
    color: #0066ff;
}

.article-excerpt {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: #1a1a1a;
    display: block;
}

.author-title {
    font-size: 14px;
    color: #64748b;
}

/* Articles Grid Cards */
.article-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 25px;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.card-title {
    margin-bottom: 15px;
}

.card-title a {
    color: #2d3748;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.card-title a:hover {
    color: #ff6b9d;
}

.card-excerpt {
    color: #718096;
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
}

.author {
    color: #4a5568;
    font-size: 14px;
    font-weight: 500;
}

.read-time {
    color: #718096;
    font-size: 12px;
}
.articles-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin-top: 16px;
    font-weight: 400;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.article-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.card-image {
    position: relative;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 24px;
}

.card-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 13px;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
}

.card-title a {
    text-decoration: none;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.card-title a:hover {
    color: #0066ff;
}

.card-excerpt {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #64748b;
    border-top: 1px solid #f1f5f9;
    padding-top: 16px;
}

.load-more-container {
    text-align: center;
}

.load-more-btn {
    padding: 16px 32px;
    font-size: 16px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: transparent;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 48px;
}

.faq-item {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #0066ff;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question[aria-expanded="true"] {
    background: #f8fafc;
    border-bottom: 1px solid #e5e5e5;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-icon {
    color: #64748b;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: #ffffff;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 24px;
}

.faq-item.active .faq-question {
    background: #f8fafc !important;
    border-bottom: 1px solid #e5e5e5;
}

.faq-item.active .faq-question .faq-icon {
    transform: rotate(180deg);
}

.faq-answer p {
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.faq-answer ul {
    color: #64748b;
    line-height: 1.6;
    margin: 16px 0;
    padding-left: 20px;
}

.faq-answer ul li {
    margin-bottom: 8px;
}

.faq-answer strong {
    color: #1a1a1a;
    font-weight: 600;
}

.faq-answer a {
    color: #0066ff;
    text-decoration: none;
    font-weight: 500;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Page Header */
.page-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    text-align: center;
}

.header-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.2;
}

.page-title .highlight {
    background: linear-gradient(135deg, #ff6b9d, #c44db0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 48px;
}

@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-title {
        font-size: 2.25rem;
    }
    
    .page-subtitle {
        font-size: 1.125rem;
        margin-bottom: 32px;
    }
}

/* Categories Page */
.categories-section {
    padding: 80px 0;
    background: #f8fafc;
}

.categories-header {
    text-align: center;
    margin-bottom: 64px;
}

.categories-header .highlight {
    background: linear-gradient(135deg, #ff6b9d, #c44db0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid #e5e5e5;
    border-radius: 50px;
    background: #ffffff;
    color: #64748b;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.filter-btn:hover {
    border-color: #ff6b9d;
    color: #ff6b9d;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #ff6b9d, #c44db0);
    border-color: #ff6b9d;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #ff6b9d;
}

.category-card.hidden {
    display: none;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b9d, #c44db0);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #ffffff;
}

.category-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.category-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
}

.category-count {
    display: inline-block;
    padding: 6px 16px;
    background: #f1f5f9;
    color: #64748b;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Beautiful Categories Section - Override all existing styles */
.beautiful-categories {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 24px !important;
    margin-top: 48px !important;
}

.category-item {
    position: relative !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    background: white !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

.category-item:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.category-gradient {
    height: 80px !important;
    position: relative !important;
    overflow: hidden !important;
}

.skincare-gradient {
    background: linear-gradient(135deg, #FF9A8B 0%, #FECFEF 50%, #FECFEF 100%) !important;
}

.makeup-gradient {
    background: linear-gradient(135deg, #FFB347 0%, #FFCC5C 50%, #FFE135 100%) !important;
}

.natural-gradient {
    background: linear-gradient(135deg, #A8E6CF 0%, #88D8A3 50%, #66BB6A 100%) !important;
}

.reviews-gradient {
    background: linear-gradient(135deg, #FFA726 0%, #FF8A65 50%, #FFAB91 100%) !important;
}

.wellness-gradient {
    background: linear-gradient(135deg, #CE93D8 0%, #F8BBD9 50%, #F48FB1 100%) !important;
}

.business-gradient {
    background: linear-gradient(135deg, #4FC3F7 0%, #81C784 50%, #AED581 100%) !important;
}

.category-content {
    padding: 20px !important;
    text-align: center !important;
    position: relative !important;
}

.category-item .category-icon {
    width: 40px !important;
    height: 40px !important;
    margin: 0 auto 12px !important;
    background: white !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    color: #FF6B35 !important;
    margin-top: -20px !important;
    position: relative !important;
    z-index: 2 !important;
}

.category-name {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #2D3748 !important;
    margin-bottom: 6px !important;
    line-height: 1.3 !important;
}

.category-desc {
    font-size: 0.85rem !important;
    color: #718096 !important;
    margin-bottom: 10px !important;
    line-height: 1.4 !important;
}

.article-count {
    display: inline-block !important;
    background: #F7FAFC !important;
    color: #4A5568 !important;
    padding: 4px 12px !important;
    border-radius: 20px !important;
    font-size: 0.8rem !important;
    font-weight: 500 !important;
}

@media (max-width: 768px) {
    .category-filters {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .category-card {
        padding: 24px;
    }
    
    .beautiful-categories {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-item {
        margin: 0 auto;
        max-width: 300px;
    }
}
.categories-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.category-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 32px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.category-card:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.category-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.category-card:hover .category-icon {
    transform: scale(1.1);
}

.category-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.category-description {
    color: #64748b;
    margin-bottom: 12px;
    font-size: 15px;
}

.category-count {
    font-size: 13px;
    color: #0066ff;
    font-weight: 500;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #d299c2 0%, #fef9d7 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-description {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.7;
}

.about-description a {
    color: #0066ff;
    text-decoration: none;
    font-weight: 500;
}

.about-description a:hover {
    text-decoration: underline;
}

.about-stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #94a3b8;
    padding: 64px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-brand img {
    margin-bottom: 16px;
}

.footer-description {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #334155;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #0066ff;
    color: white;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-title {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 8px;
}

.footer-list a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: #0066ff;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.editorial-note a {
    color: #0066ff;
    text-decoration: none;
}

.editorial-note a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container,
    .featured-article,
    .about-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .articles-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .about-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 80px 0 50px;
        text-align: center;
    }
    
    .hero-container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        word-spacing: 0.05em;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .featured-article,
    .article-card {
        margin: 0 -8px;
    }
    
    .card-content {
        padding: 20px;
    }
}

/* Performance Optimizations */
.article-card,
.category-card {
    contain: layout style paint;
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus States */
a:focus,
button:focus {
    outline: 2px solid #0066ff;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .hero-cta,
    .nav-toggle {
        display: none;
    }
    
    .main-content {
        margin-top: 0;
    }
    
    * {
        color: black !important;
        background: white !important;
    }
}

/* About Page Styles */
.about-page {
    min-height: 100vh;
}

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0 60px;
    color: white;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-title .highlight {
    color: #ffd700;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-content-section {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2d3748;
}

.about-text h3 {
    font-size: 1.5rem;
    margin: 30px 0 20px;
    color: #4a5568;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #718096;
    margin-bottom: 20px;
}

.coverage-list {
    list-style: none;
    padding: 0;
}

.coverage-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
}

.coverage-list li:last-child {
    border-bottom: none;
}

.about-visual img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stats-section {
    margin-bottom: 80px;
}

.stats-section h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: #2d3748;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #718096;
    font-weight: 500;
}

.team-section {
    margin-bottom: 80px;
}

.team-section h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 50px;
    color: #2d3748;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-member {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
}

.member-info h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #2d3748;
}

.member-title {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
}

.member-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #718096;
}

.mission-section {
    background: #f7fafc;
    padding: 60px 0;
    border-radius: 20px;
}

.mission-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.mission-content h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #2d3748;
}

.mission-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 40px;
}

.cta-section h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2d3748;
}

.cta-section p {
    font-size: 1rem;
    color: #718096;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn--primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Blog Page Styles */
.blog-page {
    min-height: 100vh;
}

.blog-page .page-header,
.blog-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 50%, #581c87 100%);
    padding: 100px 0 80px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.blog-page .page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    position: relative;
    z-index: 1;
}

.blog-page .page-title .highlight {
    color: #fbbf24;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.blog-page .page-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Categories Page Styles */
.categories-page {
    min-height: 100vh;
}

.categories-page .page-header {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44db0 100%);
    padding: 80px 0 60px;
    color: white;
    text-align: center;
}

.categories-page .page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.categories-page .page-title .highlight {
    color: #ffd700;
}

.categories-page .page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: white;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: white;
    color: #ff6b9d;
    border-color: white;
}

/* Blog page specific filter buttons */
.blog-page .filter-btn:hover,
.blog-page .filter-btn.active {
    background: #fbbf24;
    color: #1e3a8a;
    border-color: #fbbf24;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.articles-section {
    padding: 80px 0;
    background: #f8fafc;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.article-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.article-card.hidden {
    display: none;
}

.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 25px;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.category {
    display: inline-block;
    padding: 4px 12px;
    background: #ff6b9d;
    color: white;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.date {
    color: #718096;
    font-size: 14px;
}

.card-title {
    margin-bottom: 15px;
}

.card-title a {
    color: #2d3748;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.card-title a:hover {
    color: #ff6b9d;
}

.card-excerpt {
    color: #718096;
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
}

.author {
    color: #4a5568;
    font-size: 14px;
    font-weight: 500;
}

.read-time {
    color: #718096;
    font-size: 12px;
}

@media (max-width: 768px) {
    .categories-page .page-title {
        font-size: 2rem;
    }
    
    .category-filters {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================
   BEAUTY SERVICES SECTION
   ================================ */

.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="services-grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="0.5" fill="%23e2e8f0" fill-opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23services-grain)"/></svg>');
    opacity: 0.3;
}

.services-section .container {
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0 60px 0;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ec4899, #8b5cf6);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px auto;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 12px 0;
}

.service-description {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.service-list li {
    padding: 8px 0;
    color: #374151;
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

.service-list li::before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 8px;
}

/* Platform CTA */
.platform-cta {
    background: white;
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    margin-top: 40px;
}

.cta-content {
    margin-bottom: 40px;
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 15px 0;
}

.cta-subtitle {
    font-size: 18px;
    color: #64748b;
    margin: 0 0 30px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 30px;
    border-top: 1px solid #f1f5f9;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
}

.feature-icon {
    font-size: 18px;
}

/* Responsive Design for Services */
@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 40px 0 50px 0;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .platform-cta {
        padding: 30px 20px;
        margin-top: 30px;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .cta-subtitle {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
}

/* About Page Styles */
.about-content-section {
    padding: 60px 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-content h2 {
    font-size: 2.25rem;
    color: #2D3748;
    margin-bottom: 30px;
    font-weight: 700;
}

.about-content h3 {
    font-size: 1.75rem;
    color: #2D3748;
    margin: 40px 0 20px 0;
    font-weight: 600;
}

.about-content p {
    font-size: 1.125rem;
    color: #4A5568;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-content a {
    color: #667eea;
    text-decoration: none;
}

.about-content a:hover {
    text-decoration: underline;
}

.about-content strong {
    color: #2D3748;
    font-weight: 600;
}

@media (max-width: 768px) {
    .about-content {
        padding: 0 20px;
    }
    
    .about-content h2 {
        font-size: 1.875rem;
    }
    
    .about-content h3 {
        font-size: 1.5rem;
        margin: 30px 0 15px 0;
    }
    
    .about-content p {
        font-size: 1rem;
    }
}

.success-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.success-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="0.5" fill="%23e2e8f0" fill-opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.success-section .container {
    position: relative;
    z-index: 1;
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.success-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.success-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ec4899, #8b5cf6);
}

.success-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.success-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.success-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
}

.success-info {
    flex: 1;
}

.success-name {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
}

.success-title {
    margin: 2px 0 0 0;
    font-size: 14px;
    color: #64748b;
}

.success-badge {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border: 1px solid #0ea5e9;
    border-radius: 20px;
    padding: 6px 12px;
}

.badge-text {
    font-size: 11px;
    font-weight: 700;
    color: #0369a1;
    letter-spacing: 0.5px;
}

.success-quote {
    font-size: 16px;
    line-height: 1.6;
    color: #374151;
    font-style: italic;
    margin: 0 0 25px 0;
    position: relative;
    padding-left: 20px;
}

.success-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 30px;
    color: #ec4899;
    font-weight: bold;
}

.success-metrics {
    display: flex;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.metric-number {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    display: block;
}

.metric-label {
    font-size: 12px;
    color: #64748b;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Trust Section */
.trust-section {
    background: white;
    border-radius: 16px;
    padding: 40px;
    margin: 60px 0 40px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.trust-stat {
    text-align: center;
}

.trust-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.trust-label {
    font-size: 14px;
    color: #64748b;
    margin-top: 8px;
    display: block;
    max-width: 150px;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 16px;
    color: white;
}

.cta-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: white;
}

.cta-subtitle {
    font-size: 16px;
    color: #cbd5e1;
    margin: 0 0 30px 0;
    opacity: 0.9;
}

.cta-section .btn {
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
}

/* Responsive Design for Success Stories */
@media (max-width: 768px) {
    .success-section {
        padding: 60px 0;
    }
    
    .success-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 40px 0;
    }
    
    .success-card {
        padding: 25px;
    }
    
    .success-metrics {
        gap: 15px;
    }
    
    .trust-section {
        padding: 30px 20px;
        flex-direction: column;
        gap: 25px;
    }
    
    .trust-number {
        font-size: 28px;
    }
    
    .cta-section {
        padding: 30px 20px;
    }
    
    .cta-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .success-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .success-quote {
        font-size: 15px;
        padding-left: 15px;
    }
    
    .success-metrics {
        justify-content: center;
    }
}
