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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Hero section styles */
.hero {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFD180 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem;
    padding-top: 80px;
    /* Adjust based on your header height */
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.hero-content {
    flex: 1;
    max-width: 550px;
}

.hero-title {
    font-size: 2.6rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #2C3E50;
    /* Matches the "Sticky" in logo */
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #34495e;
}

/* Updated button styles */
.cta-button,
.header-cta {
    display: inline-block;
    background-color: #FFA500;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    /* Rounded corners */
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(255, 165, 0, 0.3);
    /* Subtle shadow */
}

.cta-button:hover,
.header-cta:hover {
    background-color: #FF8C00;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.4);
}

.header-cta {
    background-color: transparent;
    color: #FFA500;
    border: 2px solid #FFA500;
}

.header-cta:hover {
    background-color: #FFA500;
    color: white;
}

.hero-image {
    flex: 0 0 auto;
    width: 50%;
    max-width: 600px;
    text-align: right;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.25)) drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
    transition: all 0.3s ease;
}

.hero-image:hover img {
    transform: translateY(-4px);

}

/* Responsive design */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

/* Header styles */
.header {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo svg {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    /* Modern, clean font */
    letter-spacing: -0.5px;
    /* Tighter letter spacing for a modern look */
}

.logo-text-sticky {
    color: #2C3E50;
}

.logo-text-hive {
    color: #FFA500;
    font-weight: 800;
    /* Slightly bolder for emphasis */
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    color: #34495e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #3498db;
}

/* Responsive design for header */
@media (max-width: 768px) {
    .header-container {
        gap: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .logo svg {
        width: 30px;
        height: 30px;
    }

    .logo-text {
        font-size: 1.2rem;
    }
}

/* Responsive logo */
@media (max-width: 768px) {
    .logo svg {
        width: 30px;
        height: 30px;
    }

    .logo-text {
        font-size: 1.2rem;
    }
}

/* Benefits section styles */
.benefits {
    background-color: #fff;
    padding: 4rem 2rem;
}

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

.benefits-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2C3E50;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.benefit-heading {
    font-size: 1.25rem;
    color: #2C3E50;
    margin-bottom: 0.5rem;
}

.benefit-description {
    font-size: 1rem;
    color: #34495e;
}

/* Four suites grid - 2x2 layout */
.benefits-grid-four {
    grid-template-columns: repeat(2, 1fr);
}

/* Responsive design for benefits section */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid-four {
        grid-template-columns: 1fr;
    }

    .benefits-title {
        font-size: 1.75rem;
        padding: 0 1rem;
    }
    
    .benefit-item {
        padding: 1.5rem 1rem;
    }
    
    .benefit-icon {
        font-size: 2.5rem;
    }
    
    .benefit-heading {
        font-size: 1.1rem;
    }
    
    .benefit-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-title {
        font-size: 1.5rem;
    }
    
    .benefit-item h4 {
        font-size: 1rem;
    }
    
    .benefit-item ul {
        font-size: 0.9rem;
    }
    
    .benefit-item p:last-child {
        font-size: 0.85rem;
    }
}

/* How It Works section styles */
.how-it-works {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2C3E50;
    margin-bottom: 3rem;
}

.steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.step {
    flex-basis: calc(25% - 2rem);
    text-align: center;
    padding: 1rem;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 2rem;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background-color: #FFA500;
}

.step-number {
    background-color: #FFA500;
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step-title {
    font-size: 1.25rem;
    color: #2C3E50;
    margin-bottom: 0.5rem;
}

.step-description {
    font-size: 1rem;
    color: #34495e;
}

/* Responsive design for How It Works section */
@media (max-width: 768px) {
    .steps {
        flex-direction: column;
    }

    .step {
        flex-basis: 100%;
        margin-bottom: 2rem;
    }

    .step:not(:last-child)::after {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Feature Highlights section styles */
.feature-highlights {
    padding: 4rem 2rem;
    background-color: #fff;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
}

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

.feature-content {
    flex: 1;
    padding: 2rem;
}

.feature-title {
    font-size: 1.75rem;
    color: #2C3E50;
    margin-bottom: 1rem;
}

.feature-description {
    font-size: 1rem;
    color: #34495e;
    line-height: 1.6;
}

.feature-image {
    flex: 1;
    padding: 1rem;
}

.feature-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive design for Feature Highlights section */
@media (max-width: 768px) {
    .feature {
        flex-direction: column;
    }

    .feature:nth-child(even) {
        flex-direction: column;
    }

    .feature-content,
    .feature-image {
        padding: 1rem;
    }
}

/* Social Proof / Testimonials section styles */
.social-proof {
    background-color: #fff;
    padding: 4rem 2rem;
}

.testimonials {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial {
    flex: 1;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: #34495e;
}

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

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
}

.author-name {
    font-weight: bold;
    color: #2C3E50;
}

.author-role {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.client-logos {
    text-align: center;
    margin-bottom: 3rem;
}

.client-logos h3 {
    margin-bottom: 1rem;
    color: #2C3E50;
}

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

.logo-grid img {
    max-width: 120px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.key-metrics {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: #FFA500;
    margin-bottom: 0.5rem;
}

.metric-label {
    color: #34495e;
}

/* Responsive design for Social Proof section */
@media (max-width: 768px) {
    .testimonials {
        flex-direction: column;
    }

    .key-metrics {
        flex-direction: column;
        gap: 2rem;
    }
}

/* CTA Section styles */
.cta-section {
    background: linear-gradient(135deg, #FFA500, #FF8C00);
    color: white;
    text-align: center;
    padding: 6rem 2rem;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: white;
    color: #FFA500;
    font-size: 1.25rem;
    font-weight: bold;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background-color: #2C3E50;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta-subtext {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive design for CTA section */
@media (max-width: 768px) {
    .cta-title {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
}

/* FAQ Section styles */
.faq-section {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
}

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

.faq-item {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.faq-question {
    font-size: 1.1rem;
    color: #2C3E50;
    margin-bottom: 0.5rem;
}

.faq-answer {
    font-size: 1rem;
    color: #34495e;
    line-height: 1.6;
}

/* Responsive design for FAQ section */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Pricing Section styles */
.pricing-section {
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    padding: 6rem 2rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #34495e;
    margin-bottom: 4rem;
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.urgency-banner-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.urgency-banner-text {
    font-size: 1rem;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 3rem 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    .section-subtitle br {
        display: none;
    }
    
    .urgency-banner {
        padding: 1rem 1rem;
        margin-bottom: 2rem;
        border-radius: 8px;
    }
    
    .urgency-banner-title {
        font-size: 1.1rem;
    }
    
    .urgency-banner-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .pricing-section {
        padding: 2rem 0.5rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
}

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

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    margin: 0 1rem;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked+.slider {
    background-color: #FFA500;
}

input:checked+.slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.save-text {
    color: #FFA500;
    font-weight: bold;
    margin-left: 1rem;
}

.pricing-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-plan {
    background: white;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.pricing-plan.popular {
    background: linear-gradient(145deg, #ffffff, #fff8f0);
    border: 2px solid #FFA500;
    transform: scale(1.02);
    z-index: 1;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFA500;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.plan-name {
    font-size: 1.5rem;
    color: #2C3E50;
    margin-bottom: 1rem;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #FFA500;
    margin-bottom: 1.5rem;
}

.plan-price span {
    font-size: 1rem;
    color: #34495e;
}

.pricing-plan ul.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features h4 {
    color: #2C3E50;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 165, 0, 0.2);
}

.plan-features li {
    text-align: left;
    padding: 0.7rem 1rem 0.7rem 2.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: #6B7280;
    font-size: 0.95rem;
    line-height: 1.4;
}

.plan-features li::before {
    content: "\2713";
    position: absolute;
    left: 1rem;
    color: #FFA500;
    font-weight: bold;
}

/* Hover effect */
.plan-features li:hover {
    background-color: rgba(255, 165, 0, 0.05);
    border-radius: 6px;
    transition: all 0.2s ease;
}

/* Style for the first h4 in each plan to remove extra top margin */
.plan-features h4:first-child {
    margin-top: 0;
}

.plan-features h4:first-child {
    color: #374151;
    font-style: italic;
    border-bottom: 2px solid #FFA500;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

/* Popular plan specific styles */
.pricing-plan.popular .plan-features li::before {
    color: #FFA500;
}

.pricing-plan.popular .plan-features h4 {
    color: #FFA500;
}

/* Enterprise plan specific styles */
.pricing-plan:last-child .plan-features li {
    padding-left: 2.5rem;
}

@media (max-width: 768px) {
    .plan-features li {
        font-size: 0.9rem;
        padding: 0.6rem 1rem 0.6rem 2.2rem;
    }

    .plan-features h4 {
        font-size: 1rem;
    }
}

.plan-cta {
    display: inline-block;
    background: #FFA500;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: auto;
}

.plan-cta:hover {
    background: #FF8C00;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

/* Responsive design for Pricing section */
@media (max-width: 1024px) {
    .pricing-plans {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .pricing-plan.popular {
        transform: none;
        z-index: auto;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        overflow-x: hidden;
    }
    
    .pricing-plans {
        gap: 1.5rem;
        max-width: 100%;
        padding: 0 1rem;
    }

    .pricing-plan {
        width: 100%;
        max-width: 100%;
    }
    
    .pricing-plan:hover {
        transform: none;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    }
    
    .pricing-plan.popular {
        transform: none;
        order: -1;
    }
    
    .popular-badge {
        top: -12px;
    }
}

@media (max-width: 480px) {
    .pricing-plans {
        gap: 1.25rem;
        padding: 0 0.75rem;
    }
    
    .pricing-plan {
        padding: 1.5rem 1rem;
        border-radius: 10px;
    }
    
    .popular-badge {
        font-size: 0.75rem;
        padding: 0.2rem 0.6rem;
        top: -10px;
    }
}

/* Footer styles */
.footer {
    background-color: #2C3E50;
    color: #fff;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-description {
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.social-link {
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #FFA500;
}

.footer-links {
    list-style-type: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FFA500;
}

.newsletter-form {
    display: flex;
    margin-top: 1rem;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 0.5rem;
    border: none;
    border-radius: 4px 0 0 4px;
}

.newsletter-form button {
    background-color: #FFA500;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #FF8C00;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.legal-links a {
    color: #fff;
    text-decoration: none;
    margin-left: 1rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #FFA500;
}

/* Responsive design for footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .legal-links {
        margin-top: 1rem;
    }

    .legal-links a {
        margin: 0 0.5rem;
    }
}

.community-challenges {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2C3E50;
    margin-bottom: 3rem;
}

.challenges-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.challenge-item {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.challenge-problem,
.challenge-solution {
    flex: 1;
}

.challenge-problem h3,
.challenge-solution h3 {
    font-size: 1.2rem;
    color: #2C3E50;
    margin-bottom: 0.5rem;
}

.challenge-problem p,
.challenge-solution p {
    font-size: 1rem;
    color: #34495e;
}

.challenge-problem {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 1rem;
}

.challenge-solution {
    padding-top: 1rem;
}

.challenge-solution h3 {
    color: #FFA500;
}

@media (min-width: 768px) {
    .challenge-item {
        flex-direction: row;
    }

    .challenge-problem {
        border-bottom: none;
        border-right: 1px solid #e0e0e0;
        padding-bottom: 0;
        padding-right: 1rem;
    }

    .challenge-solution {
        padding-top: 0;
        padding-left: 1rem;
    }
}

.bg-light {
    background-color: #f8f9fa;
}

.bg-white {
    background-color: #ffffff;
}

.faq {
    padding: 4rem 2rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1rem;
    background-color: #f8f9fa;
    border: none;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #e9ecef;
}

.faq-question::after {
    content: '\25BC';
    float: right;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    padding: 1rem;
    max-height: 1000px;
    /* Adjust this value as needed */
}

.community-showcase h3 {
    text-align: center;
    margin-bottom: 1rem;
}

.challenge-problem p,
.challenge-solution p {
    line-height: 1.6;
    margin-bottom: 0;
}

.challenge-item {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
}

/* Add these new styles */
.hamburger {
    display: none;
    cursor: pointer;
    width: 24px;
    height: 24px;
    position: relative;
    margin-left: auto;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #2C3E50;
    position: absolute;
    transition: all 0.3s ease;
}

.hamburger span:first-child {
    top: 2px;
}

.hamburger span:nth-child(2) {
    top: 11px;
}

.hamburger span:last-child {
    top: 20px;
}

.hamburger.active span:first-child {
    transform: rotate(45deg);
    top: 11px;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:last-child {
    transform: rotate(-45deg);
    top: 11px;
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
        z-index: 100;
    }

    .nav-items {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        padding: 80px 20px 20px;
        flex-direction: column;
        gap: 20px;
        transition: 0.3s ease;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .nav-items.active {
        right: 0;
    }

    .nav-items a {
        width: 100%;
        text-align: center;
    }

    .login-btn {
        margin: 10px 0;
    }

    /* Ensure the navbar has proper positioning */
    .navbar {
        position: relative;
        padding: 1rem;
    }
}

.challenges-section {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
    color: #2C3E50;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #FFA500;
    border-radius: 2px;
}

.challenges-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.challenge-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.challenge-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.challenge-problem,
.challenge-solution {
    padding: 1.5rem;
    border-radius: 8px;
}

.challenge-problem {
    background: #f8f9fa;
    border-left: 4px solid #FF6B6B;
}

.challenge-solution {
    background: #f0f9ff;
    border-left: 4px solid #4CAF50;
}

.challenge-problem h3,
.challenge-solution h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #2C3E50;
    font-weight: 600;
}

.challenge-problem p,
.challenge-solution p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .challenge-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .challenges-section {
        padding: 4rem 1rem;
    }
}





.testimonials-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.testimonial {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.testimonial-text {
    font-size: 1.75rem;
    line-height: 1.5;
    color: #2C3E50;
    margin-bottom: 2.5rem;
    font-weight: 300;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-image {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    text-align: left;
}

.author-name {
    font-size: 1.25rem;
    color: #2C3E50;
    margin: 0;
    font-weight: 600;
}

.author-role {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonial-text {
        font-size: 1.5rem;
    }
    
    .testimonials-section {
        padding: 4rem 1rem;
    }
    
    .testimonial-text::before {
        font-size: 3rem;
        left: -1rem;
    }
}

.content-insight {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.insight-container {
    max-width: 1000px;
    margin: 0 auto;
}

.insight-title {
    font-size: 2.5rem;
    color: #2C3E50;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.insight-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #FFA500;
    border-radius: 2px;
}

.insight-intro {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #2C3E50;
    margin-bottom: 3rem;
    text-align: center;
}

.content-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.traditional-content,
.community-content {
    padding: 2rem;
    border-radius: 12px;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.traditional-content {
    border-left: 4px solid #FF6B6B;
}

.community-content {
    border-left: 4px solid #4CAF50;
}

.content-comparison h3 {
    font-size: 1.3rem;
    color: #2C3E50;
    margin-bottom: 1.5rem;
}

.content-comparison ul {
    list-style: none;
    padding: 0;
}

.content-comparison li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: #4a5568;
}

.content-comparison li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #FFA500;
}

.key-takeaway {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #2C3E50;
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: #f0f9ff;
    border-radius: 12px;
    border-left: 4px solid #3498db;
}

@media (max-width: 768px) {
    .content-comparison {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .insight-title {
        font-size: 2rem;
    }
    
    .insight-intro,
    .key-takeaway {
        font-size: 1.2rem;
    }
}

/* Add highlight for plan features */
.plan-highlight {
    background: rgba(255, 165, 0, 0.1);
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.highlight-icon {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .plan-highlight {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .highlight-icon {
        font-size: 1.25rem;
    }
    
    .plan-name {
        font-size: 1.3rem;
    }
    
    .plan-price {
        font-size: 2rem;
    }
    
    .plan-subtitle {
        font-size: 0.85rem;
    }
    
    .plan-cta {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .popular-badge {
        font-size: 0.8rem;
        padding: 0.25rem 0.75rem;
    }
}

/* Note: Main pricing-plans and pricing-plan styles are defined earlier in this file */

/* Update feature list styling */
.plan-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 2rem 0;
}

.plan-features h4 {
    color: #2C3E50;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 165, 0, 0.2);
}

/* Add tooltip styles */
.tooltip {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1rem;
    background: #2C3E50;
    color: white;
    font-size: 0.8rem;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 10;
}

.tooltip:hover::after {
    opacity: 1;
    visibility: visible;
    bottom: calc(100% + 5px);
}

/* Update CTA button */
.plan-cta {
    background: #FFA500;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: auto;
}

.plan-cta:hover {
    background: #FF8C00;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

/* Add enterprise card */
.enterprise-card {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(145deg, #2C3E50, #34495E);
    border-radius: 12px;
    color: white;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.enterprise-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.enterprise-card .enterprise-cta {
    display: inline-block;
    background: white;
    color: #2C3E50;
    padding: 1rem 2rem;
    border-radius: 50px;
    margin-top: 2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.enterprise-card .enterprise-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .enterprise-card {
        margin-top: 2rem;
        padding: 2rem 1.5rem;
        border-radius: 10px;
    }
    
    .enterprise-card h3 {
        font-size: 1.5rem;
    }
    
    .enterprise-card p {
        font-size: 0.95rem;
    }
    
    .enterprise-card .enterprise-cta {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* =====================================================
   Press Logos / As Seen In Section
   ===================================================== */
.press-logos-section {
    background: #ffffff;
    padding: 2rem 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.press-logos-title {
    text-align: center;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #9CA3AF;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

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

.press-logo-link {
    display: block;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.press-logo-link:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.press-logo {
    height: 24px;
    width: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.press-logo-link:hover .press-logo {
    filter: grayscale(0%);
}

@media (max-width: 768px) {
    .press-logos-section {
        padding: 1.5rem 1rem;
    }
    
    .press-logos-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem 1rem;
        justify-items: center;
    }
    
    .press-logos-grid .press-logo-link:last-child {
        grid-column: 1 / -1;
    }
    
    .press-logo {
        height: 18px;
    }
}

@media (max-width: 480px) {
    .press-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem 0.75rem;
    }
    
    .press-logo {
        height: 16px;
    }
}

/* =====================================================
   Social Proof Stats Bar
   ===================================================== */
.social-proof-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: center;
}

.social-proof-stat {
    flex: 1;
    min-width: 100px;
}

.social-proof-stat .stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFA500;
}

.social-proof-stat .stat-label {
    color: #6B7280;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .social-proof-bar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 1rem;
        padding: 0 1rem;
    }
    
    .social-proof-stat {
        min-width: auto;
    }
    
    .social-proof-stat .stat-value {
        font-size: 1.3rem;
    }
    
    .social-proof-stat .stat-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .social-proof-bar {
        gap: 1.25rem 0.75rem;
    }
    
    .social-proof-stat .stat-value {
        font-size: 1.2rem;
    }
    
    .social-proof-stat .stat-label {
        font-size: 0.8rem;
    }
}

/* =====================================================
   Hero Stats (About Page)
   ===================================================== */
.hero-stats-grid {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.hero-stat-item {
    text-align: left;
}

.hero-stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #FFA500;
    margin-bottom: 0.5rem;
}

.hero-stat-item .stat-label {
    color: #2C3E50;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .hero-stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .hero-stat-item {
        text-align: center;
    }
    
    .hero-stat-item .stat-number {
        font-size: 1.8rem;
    }
    
    .hero-stat-item .stat-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero-stats-grid {
        gap: 1rem;
    }
    
    .hero-stat-item .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-stat-item .stat-label {
        font-size: 0.8rem;
    }
}