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

:root {
    --primary-color: #CE42ED;
    --secondary-color: #ec4899;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f8fafc;
    --primary-purple: #8b5cf6;
    --primary-purple-dark: #7c3aed;
    --light-purple: #f3f4f6;
    --text-muted: #6b7280;
    --border-color: #e5e7eb;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1f2937;
    background: linear-gradient(to bottom right, #f9f5ff, #fdf2f8, #fffbeb);
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

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


/* Container */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header/Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 50;
    transition: all 0.3s ease;
}

header.scrolled {
    background-color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

header.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

header.visible {
    transform: translateY(0);
    opacity: 1;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    padding: 0.5rem;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(to right, #9333ea, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Desktop Navigation */
.desktop-nav {
    display: none;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }
}

.nav-link {
    color: #4b5563;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #9333ea;
}

/* Desktop Auth Buttons */
.desktop-auth {
    display: none;
}

@media (min-width: 768px) {
    .desktop-auth {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
}

.login-link {
    color: #4b5563;
    padding: 0.5rem 0.75rem;
    transition: color 0.2s ease;
}

.login-link:hover {
    color: #9333ea;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: all 0.2s ease;
    padding: 0.5rem 1rem;
    cursor: pointer;
}

.button-primary {
    background: linear-gradient(to right, #9333ea, #ec4899);
    color: white;
    border: none;
}

.button-primary:hover {
    background: linear-gradient(to right, #7e22ce, #db2777);
}

.button-outline {
    background: transparent;
    border: 1px solid #d1d5db;
    color: #4b5563;
}

.button-outline:hover {
    background: #f9fafb;
}

.button-large {
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
}

/* Mobile Menu */
.mobile-menu-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 2.25rem;
    height: 2.25rem;
}

@media (min-width: 768px) {
    .mobile-menu-button {
        display: none;
    }
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    background: white;
    z-index: 100;
    padding: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
    .mobile-menu {
        width: 400px;
    }
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-left: 12px;
}

.mobile-nav-link {
    font-size: 1.125rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.mobile-nav-link:hover {
    color: #9333ea;
}

.mobile-auth {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0 12px;
}

.mobile-login-link {
    width: 100%;
    text-align: center;
    padding: 0.5rem 0;
    color: #4b5563;
    transition: color 0.2s ease;
}

.mobile-login-link:hover {
    color: #9333ea;
}

/* Spacer for fixed header */
.header-spacer {
    height: 4rem;
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    text-align: center;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-gradient {
    background: linear-gradient(to right, #9333ea, #ec4899, #f43f5e);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-description {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.hero-badge svg {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
}

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

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

/* Platforms Section */
.platforms {
    padding: 3rem 0;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

.section-description {
    color: #4b5563;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 2rem;
}

.platforms-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .platforms-grid {
        gap: 3rem;
    }
}

.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.platform-item:hover {
    transform: scale(1.05);
}

.platform-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.platform-item:hover .platform-icon {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.platform-item:hover .platform-icon svg {
    transform: scale(1.1);
}

.platform-icon svg {
    width: 2rem;
    height: 2rem;
    transition: transform 0.3s ease;
}

.platform-name {
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.platform-item:hover .platform-name {
    color: #9333ea;
}

/* Trusted Companies */
.trusted {
    padding: 3rem 0;
}

.trusted-title {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    margin-bottom: 2rem;
}

.trusted-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .trusted-grid {
        gap: 4rem;
    }
}

.trusted-company {
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.trusted-company:hover {
    opacity: 1;
}

.trusted-company svg {
    height: 100%;
    width: auto;
}

/* Feature Highlights */
.features {
    padding: 4rem 0;
}

.features-title {
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

/* Slick Carousel Customization */
.slick-slider {
    margin: 0 -1rem;
}

.slick-slide {
    padding: 0 1rem;
}

.slick-prev, .slick-next {
    width: 3rem;
    height: 3rem;
    background-color: white;
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.slick-prev:hover, .slick-next:hover {
    background-color: #f3e8ff;
}

.slick-prev {
    left: -1rem;
}

.slick-next {
    right: -1rem;
}

.slick-prev:before, .slick-next:before {
    color: #4b5563;
    font-size: 1.5rem;
}

.slick-dots {
    bottom: -2.5rem;
}

.slick-dots li button:before {
    font-size: 0.75rem;
    color: #d1d5db;
    opacity: 1;
}

.slick-dots li.slick-active button:before {
    color: #9333ea;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon-purple {
    background-color: #f3e8ff;
}

.feature-icon-pink {
    background-color: #fce7f3;
}

.feature-icon-amber {
    background-color: #fef3c7;
}

.feature-number {
    font-size: 1.25rem;
    font-weight: 700;
}

.feature-number-purple {
    color: #9333ea;
}

.feature-number-pink {
    color: #db2777;
}

.feature-number-amber {
    color: #d97706;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-description {
    color: #4b5563;
}

/* More Features Section */
.more-features {
    padding: 4rem 0;
}

.more-features-container {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    max-width: 64rem;
    margin: 0 auto;
    padding: 2rem;
}

.more-features-title {
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.more-features-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .more-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.more-feature-item {
    padding: 1.5rem;
    border-left: 4px solid;
}

.more-feature-purple {
    border-color: #9333ea;
}

.more-feature-pink {
    border-color: #db2777;
}

.more-feature-amber {
    border-color: #d97706;
}

.more-feature-rose {
    border-color: #e11d48;
}

.more-feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.more-feature-description {
    color: #4b5563;
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    display: grid;
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-amber {
    color: #d97706;
}

.stat-pink {
    color: #db2777;
}

.stat-purple {
    color: #9333ea;
}

.stat-description {
    color: #4b5563;
    max-width: 20rem;
    margin-left: auto;
    margin-right: auto;
}

/* Testimonials */
.testimonials {
    padding: 4rem 0;
}

.testimonials-title {
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
}

.testimonial-avatar-purple {
    background-color: #e9d5ff;
}

.testimonial-avatar-pink {
    background-color: #fbcfe8;
}

.testimonial-initials {
    font-weight: 700;
}

.testimonial-initials-purple {
    color: #9333ea;
}

.testimonial-initials-pink {
    color: #db2777;
}

.testimonial-name {
    font-weight: 600;
}

.testimonial-position {
    font-size: 0.875rem;
    color: #6b7280;
}

.testimonial-text {
    color: #4b5563;
}

/* Subscription Section */
.subscription {
    padding: 4rem 0;
}

.subscription-container {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    max-width: 48rem;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

.subscription-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.subscription-description {
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.subscription-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 32rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .subscription-form {
        flex-direction: row;
    }
}

.subscription-input {
    flex: 1;
    height: 2.5rem;
    border-radius: 0.375rem;
    border: 1px solid #d1d5db;
    background-color: white;
    padding: 0 0.75rem;
    font-size: 0.875rem;
}

.subscription-input:focus {
    outline: none;
    border-color: #9333ea;
    box-shadow: 0 0 0 2px rgba(147, 51, 234, 0.2);
}

/* Blog Section */
.blog {
    padding: 4rem 0;
}

.blog-title {
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.blog-description {
    color: #4b5563;
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 3rem;
}

.blog-grid {
    display: grid;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog-card {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: #f3e8ff;
    color: #9333ea;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.blog-category-pink {
    background-color: #fce7f3;
    color: #db2777;
}

.blog-category-amber {
    background-color: #fef3c7;
    color: #d97706;
}

.blog-post-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-excerpt {
    color: #4b5563;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    align-items: center;
    color: #6b7280;
    font-size: 0.875rem;
}

.blog-author {
    display: flex;
    align-items: center;
}

.blog-author-avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    margin-right: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-author-avatar-purple {
    background-color: #e9d5ff;
}

.blog-author-avatar-pink {
    background-color: #fbcfe8;
}

.blog-author-avatar-amber {
    background-color: #fef3c7;
}

.blog-author-initials {
    font-weight: 700;
    font-size: 0.75rem;
}

.blog-author-initials-purple {
    color: #9333ea;
}

.blog-author-initials-pink {
    color: #db2777;
}

.blog-author-initials-amber {
    color: #d97706;
}

.blog-date {
    margin-left: auto;
}

.blog-view-all {
    text-align: center;
    margin-top: 2.5rem;
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
}

.faq-title {
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-container {
    max-width: 48rem;
    margin: 0 auto;
}

.accordion {
    width: 100%;
}

.accordion-item {
    border-bottom: 1px solid #e5e7eb;
}

.accordion-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    text-align: left;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
}

.accordion-trigger:focus {
    outline: none;
}

.accordion-icon {
    transition: transform 0.3s ease;
}

.accordion-trigger[aria-expanded="true"] .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
    max-height: 0;
    opacity: 0;
}

.accordion-content.active {
    max-height: 500px;
    opacity: 1;
}

.accordion-content-inner {
    color: #4b5563;
    padding: 0 0 1rem 0;
}

/* Pricing Section */
.pricing {
    padding: 4rem 0;
}

.pricing-title {
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.pricing-description {
    color: #4b5563;
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 3rem;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.pricing-toggle-container {
    background: white;
    border-radius: 0.5rem;
    padding: 0.25rem;
    display: inline-flex;
}

.pricing-toggle-button {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    background: none;
}

.pricing-toggle-button.active {
    background-color: #f3e8ff;
    color: #9333ea;
}

.pricing-grid {
    display: grid;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card-highlighted {
    border: 2px solid #9333ea;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    position: relative;
}

.pricing-card-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #9333ea;
    color: white;
    padding: 0.25rem 1rem;
    border-bottom-left-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.pricing-card-header {
    padding: 1.5rem;
}

.pricing-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-card-subtitle {
    color: #4b5563;
    margin-bottom: 1rem;
}

.pricing-card-price {
    margin-bottom: 1rem;
}

.pricing-card-amount {
    font-size: 2.25rem;
    font-weight: 700;
}

.pricing-card-period {
    color: #4b5563;
}

.pricing-card-body {
    padding: 1.5rem;
    border-top: 1px solid #f3f4f6;
    flex-grow: 1;
}

.pricing-card-features {
    list-style: none;
}

.pricing-card-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.pricing-card-feature-icon {
    margin-right: 0.5rem;
    margin-top: 0.125rem;
}

.pricing-card-feature-disabled {
    color: #9ca3af;
}

/* CTA Section */
.cta {
    padding: 4rem 0;
    text-align: center;
}

.cta-container {
    background: linear-gradient(to right, #9333ea, #ec4899);
    border-radius: 0.75rem;
    padding: 3rem;
    max-width: 56rem;
    margin: 0 auto;
    color: white;
}

.cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 2.25rem;
    }
}

.cta-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background-color: white;
    color: #9333ea;
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
    border-radius: 0.375rem;
    font-weight: 500;
    display: inline-block;
    transition: background-color 0.2s ease;
}

.cta-button:hover {
    background-color: #f9fafb;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h5 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.h5, h5 {
    font-size: 1.25rem;
}

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

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
}

.trusted-purple-section {
    padding: 4rem 0;
    background: linear-gradient(to right, #f5f3ff, #faf5ff, #f3e8ff);
    position: relative;
    overflow: hidden;
}

.trusted-purple-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(to right, #9333ea, #c026d3);
    z-index: 1;
}

.trusted-title {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.trusted-title::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 4rem;
    height: 0.25rem;
    background: linear-gradient(to right, #9333ea, #c026d3);
    border-radius: 9999px;
}

.trusted-logo-container {
    height: 100px;
    margin: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.trusted-logo-container:hover {
    transform: translateY(-5px);
}

.trusted-logo {
    max-width: 80%;
    max-height: 70px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.7;
}

.trusted-logo-container:hover .trusted-logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Custom Slick Dots */
.trusted-slider .slick-dots li button:before {
    color: #9333ea;
}

.trusted-slider .slick-dots li.slick-active button:before {
    color: #c026d3;
}

/* Custom Slick Arrows */
.trusted-slider .slick-prev:before,
.trusted-slider .slick-next:before {
    color: #9333ea;
}

.trusted-slider .slick-prev,
.trusted-slider .slick-next {
    width: 3rem;
    height: 3rem;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    z-index: 10;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.trusted-slider .slick-prev:hover,
.trusted-slider .slick-next:hover {
    background-color: #f3e8ff;
}

.platform-icon.fb {
    background-color: #dbeafe;
}

.platform-icon.x {
    background-color: #eff6ff
}

.platform-icon.ig {
    background: linear-gradient(to bottom right, #f3e8ff, #fce7f3);
}

.platform-icon.linkedin {
    background-color: #dbeafe
}

.platform-icon.threads {
    background-color: #000000
}

.platform-icon.tiktok {
    background: linear-gradient(135deg, #25F4EE, #FE2C55)
}

.platform-icon.pinterest {
    background: #E60023
}

.platform-icon.whatsapp {
    background: #25D366
}

.platform-icon.telegram {
    background: #40B3E0
}

.platform-icon.bluesky {
    background: #ffffff
}

.platform-icon.tumblr {
    background: #ffffff
}

.feature-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    cursor: default;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.feature-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    cursor: default;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.feature-title {
    color: #333333; /* Default dark text color */
    margin-bottom: 10px;
}

.feature-description {
    color: #666666; /* Default light gray text color */
    line-height: 1.6;
}


.feature-card:hover {
    background: linear-gradient(135deg, #f3e8ff, #e9d5ff); /* Light purple gradient */
}

.feature-card:hover .feature-title {
    font-weight: bold;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.circle-image {
    border-radius: 50%;
    object-fit: cover;
    display: inline-block;
}

.hero-section {
    background: linear-gradient(135deg, #f9f5ff 0%, #fdf2f8 50%, #fffbeb 100%);
    padding: 4rem 0;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Search and Filter Section */
.search-filter-section {
    background: white;
    padding: 2rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.search-box {
    position: relative;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.search-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.1);
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

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

.filter-tab {
    padding: 0.5rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 2rem;
    background: white;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-tab:hover,
.filter-tab.active {
    background: linear-gradient(to right, #9333ea, #ec4899);
    color: white;
    text-decoration: none;
}

/* Blog Grid */
.blog-section {
    padding: 4rem 0;
    background: var(--bg-light);
}


.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.blog-category {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
}

.author-info {
    font-size: 0.875rem;
}

.author-name {
    font-weight: 500;
    color: var(--text-dark);
}

.author-date {
    color: var(--text-light);
}

/* Pagination */
.pagination-section {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.pagination {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.page-link {
    padding: 0.5rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    background: white;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.page-item.active .page-link,
.page-link:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
    text-decoration: none;
}

.page-link:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.newsletter-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
}

.newsletter-btn {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: transform 0.2s ease;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .filter-tabs {
        gap: 0.5rem;
    }

    .filter-tab {
        padding: 0.375rem 1rem;
        font-size: 0.875rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .search-filter-section {
        padding: 1.5rem 0;
    }

    .blog-section {
        padding: 2rem 0;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 2rem 0;
    }

    .blog-content {
        padding: 1rem;
    }

    .pagination {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: transform 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #7c3aed, #db2777);
}

li {
    list-style: none;
}

.not_found {
    color: red;
    text-align: center;
}
:root {
    --primary-color: #9333ea;
    --secondary-color: #ec4899;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f8fafc;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.5rem;
    text-decoration: none;
    color: var(--text-dark);
}

.brand-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 0.5rem;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: transform 0.2s ease;
    color: white;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #7c3aed, #db2777);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f9f5ff 0%, #fdf2f8 50%, #fffbeb 100%);
    padding: 4rem 0;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Story Section */
.story-section {
    padding: 5rem 0;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.story-text p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-image {
    background: linear-gradient(135deg, #f3e8ff, #fce7f3);
    border-radius: 1rem;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary-color);
}

/* Mission Section */
.mission-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

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

.mission-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.mission-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.mission-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.mission-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4rem 0;
    text-align: center;
}

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

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

.team-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

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

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 600;
    margin: 2rem auto 1rem;
}

.team-info {
    padding: 0 2rem 2rem;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.team-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-social a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

.team-social a:hover {
    color: var(--primary-color);
}

/* Values Section */
.values-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.value-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Timeline Section */
.timeline-section {
    padding: 5rem 0;
    background: white;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    width: calc(50% - 2rem);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 2rem;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 2rem;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.timeline-description {
    color: var(--text-light);
    line-height: 1.6;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    width: 1rem;
    height: 1rem;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.btn-white {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: transform 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-white:hover {
    transform: translateY(-2px);
    color: var(--primary-color);
    text-decoration: none;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: white;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Contact Form */
.form-container {
    background: var(--bg-light);
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-header p {
    color: var(--text-light);
    font-size: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: block;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.1);
}

.form-control.error {
    border-color: var(--error-color);
}

.form-control.success {
    border-color: var(--success-color);
}

.error-message {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 0.5rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
}
.success-message {
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
    padding: 0.5rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
}
.btn-submit {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(147, 51, 234, 0.3);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.loading-spinner {
    display: none;
    width: 1rem;
    height: 1rem;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 0.5rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success/Error Messages */
.alert {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    display: none;
}

.alert-success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
}

.alert-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
}

/* Contact Info */
.contact-info {
    padding: 2rem 0;
}

.contact-info h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 0.75rem;
    border-left: 4px solid var(--primary-color);
}

.info-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.info-content p {
    color: var(--text-light);
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

.info-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.info-content a:hover {
    text-decoration: underline;
}
.article-header {
    background: linear-gradient(135deg, #f9f5ff 0%, #fdf2f8 50%, #fffbeb 100%);
    padding: 3rem 0;
}

.article-category {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1rem;
}

.article-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.article-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.25rem;
}

.author-details h6 {
    margin: 0;
    font-weight: 600;
    text-transform: capitalize;
    font-size: 15px;
}

.author-details small {
    color: var(--text-light);
}

.article-stats {
    display: flex;
    gap: 1.5rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Article Content */
.article-content {
    padding: 4rem 0;
}

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

.article-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 1rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #f3e8ff, #fce7f3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary-color);
}

.article-body {
    font-size: 1.125rem;
    line-height: 1.8;
}

.article-body h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
}

.article-body h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
    color: var(--text-dark);
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body ul, .article-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-body li {
    margin-bottom: 0.5rem;
}

.article-body blockquote {
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.5rem;
    font-style: italic;
}

.highlight-box {
    background: linear-gradient(135deg, #f3e8ff, #fce7f3);
    padding: 2rem;
    border-radius: 1rem;
    margin: 2rem 0;
    border: 1px solid #e5e7eb;
}

.highlight-box h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Social Share */
.social-share {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 1rem;
    margin: 3rem 0;
    text-align: center;
}

.social-share h4 {
    margin-bottom: 1rem;
}

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

.share-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.share-btn:hover {
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.facebook {
    background: #4267b2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.copy {
    background: var(--text-light);
}

/* Author Bio */
.author-bio {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
    margin: 3rem 0;
}

.author-bio-content {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.author-bio-avatar {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.author-bio-text h5 {
    margin-bottom: 0.5rem;
}

.author-bio-text p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.author-social {
    display: flex;
    gap: 1rem;
}

.author-social a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

.author-social a:hover {
    color: var(--primary-color);
}

/* Related Posts */
.related-posts {
    background: var(--bg-light);
    padding: 4rem 0;
}

.related-posts h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.related-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
}

.related-image {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, #f3e8ff, #fce7f3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
}

.related-content {
    padding: 1.5rem;
}

.related-category {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.related-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.related-meta {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Comments Section */
.comments-section {
    padding: 4rem 0;
}

.comments-header {
    margin-bottom: 2rem;
}

.comment-form {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 3rem;
}

.comment-form h4 {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.form-control {
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 0.75rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.1);
}

.comment {
    border-bottom: 1px solid #e5e7eb;
    padding: 2rem 0;
}

.comment:last-child {
    border-bottom: none;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.comment-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.comment-info h6 {
    margin: 0;
    font-weight: 600;
}

.comment-info small {
    color: var(--text-light);
}

.comment-body {
    margin-left: 3.5rem;
    color: var(--text-light);
}

/* Newsletter CTA */
.newsletter-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4rem 0;
    text-align: center;
}

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

.newsletter-cta p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
}

.newsletter-btn {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: transform 0.2s ease;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h5 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
}

/* Responsive */
@media (max-width: 768px) {
    .article-title {
        font-size: 2rem;
    }

    .article-subtitle {
        font-size: 1rem;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .article-stats {
        flex-wrap: wrap;
    }

    .content-wrapper {
        padding: 0 1rem;
    }

    .article-body {
        font-size: 1rem;
    }

    .author-bio-content {
        flex-direction: column;
        text-align: center;
    }

    .share-buttons {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .comment-body {
        margin-left: 0;
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .article-header {
        padding: 2rem 0;
    }

    .article-content {
        padding: 2rem 0;
    }

    .related-posts {
        padding: 2rem 0;
    }

    .comments-section {
        padding: 2rem 0;
    }
}
.breadcrumb-section {
    background: var(--bg-light);
    padding: 1rem 0;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: var(--text-light);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--text-dark);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1050;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner .container {
    padding: 1.5rem 0;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cookie-icon {
    background: linear-gradient(to right, #9333ea, #ec4899);;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
}

.cookie-text h6 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.cookie-text p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.btn-accept {
    background: linear-gradient(to right, #9333ea, #ec4899);;
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.btn-accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
    color: white;
}

.btn-settings {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.btn-settings:hover {
    border-color: var(--primary-purple);
    color: var(--primary-purple);
    background: rgba(139, 92, 246, 0.05);
}
.subscription {
  padding: 60px 18px;
  text-align: center;
}

.subscription-container {
  max-width: 700px;
  margin: 0 auto;
}

.subscription-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
}

.subscription-description {
  font-size: 16px;
  color: #666;
  margin-bottom: 32px;
}

.subscription-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.subscription-input {
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  /*flex: 1 1 300px;*/
  max-width: 100%;
}

.subscription-form .button-primary {
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 6px;
}
.mobile-menu-close {
  font-size: 2rem;
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  color: #333;
  user-select: none;
  z-index: 1050; /* above overlay */
}

.mobile-menu-close:hover {
  color: #000;
}
.mobile-login-link{
    color: var(--text-dark);
}
.story-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.story-text {
  flex: 1;
}

.story-image {
  flex: 1;
  text-align: center;
}
.text-danger{
    color: darkred;
}
.select2-container {
    max-width: 100% !important;
    box-sizing: border-box;
}
.text-capitalize {
    text-transform: capitalize;
}
.nav-link.active {
    color: var(--primary-color);
}
