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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #FFFFFF;
}


/* Header Styles */
.site-header {
    background-color: #FFFFFF;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-section a {
    text-decoration: none;
    display: block;
}

.logo {
    height: 70px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: #000000;
    margin: 0;
    line-height: 1;
}

.brand-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #00FF00;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-navigation {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #000000;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #00FF00;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 720px;
    background-image: url('Images/Home-Banner-Img.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-banner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 70px;
    width: 100%;
}

.hero-content {
    max-width: 720px;
    z-index: 2;
}

.hero-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 108px;
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.hero-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
    color: #FFFFFF;
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    padding: 20px 30px;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button.primary {
    background-color: #0A4734;
    color: #FFFFFF;
}

.cta-button.secondary {
    background-color: #6CF381;
    color: #000000;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Intro Section */
.intro-section {
    padding: 80px 70px;
    background-color: #FFFFFF;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    max-width: 1440px;
    margin: 0 auto;
}

.intro-left {
    padding-top: 40px;
}

.intro-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
    color: #000000;
    max-width: 300px;
}

.intro-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.intro-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 48px;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 20px;
}

.intro-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
    color: #000000;
    margin-bottom: 20px;
}

/* App Categories Section */
.categories-section {
    padding: 80px 70px;
    background-color: #FFFFFF;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1440px;
    margin: 0 auto;
}

.category-card {
    background-color: #CFEAFE;
    border-radius: 20px;
    padding: 30px 15px;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.category-card:nth-child(2) {
    background-color: #DFFFE8;
}

.category-card:nth-child(3) {
    background-color: #E9DFFF;
}

.category-card:nth-child(4) {
    background-color: #FFF8DF;
}

.category-card:nth-child(5) {
    background-color: #FFE0F5;
}

.category-card:nth-child(6) {
    background-color: #E0F6FF;
}

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

.category-icon {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    display: block;
}

.category-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.5;
    color: #000000;
    margin-bottom: 15px;
}

.category-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
}

/* Trusted Section */
.trusted-section {
    background-color: #EDF6FF;
    padding: 80px 0;
}

.trusted-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 70px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.trusted-image {
    width: 100%;
    max-width: 546px;
    height: 598px;
    border-radius: 55px;
    object-fit: cover;
}

.trusted-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.trusted-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 48px;
    line-height: 1.2;
    color: #000000;
}

.trusted-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.benefit-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    margin-top: 5px;
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
    color: #000000;
    margin-bottom: 5px;
}

.benefit-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: #8D8D8D;
}

/* Articles Section */
.articles-section {
    padding: 80px 70px;
    background-color: #FFFFFF;
}

.articles-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 48px;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 40px;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1440px;
    margin: 0 auto;
}

.article-card {
    background-color: #EDF6FF;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.article-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.article-content {
    padding: 20px;
}

.article-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
    color: #000000;
    margin-bottom: 10px;
}

.article-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #8D8D8D;
    margin-bottom: 15px;
}

.article-link {
    color: #1976D2;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.article-link:hover {
    color: #1565C0;
}

/* Footer Styles */
.site-footer {
    background-color: #0A4734;
    padding: 72px 0 0;
    position: relative;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 72px;
}

.subscription-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.subscription-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 1.5;
    color: #FFFFFF;
    text-align: center;
    max-width: 600px;
}

.email-form {
    display: flex;
    gap: 8px;
    align-items: center;
}

.input-container {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 100px;
    padding: 14px 24px;
    width: 280px;
}


.email-input {
    background: none;
    border: none;
    outline: none;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    flex: 1;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.72);
}

.subscribe-button {
    background-color: #87DB1C;
    color: #000000;
    border: none;
    border-radius: 100px;
    padding: 14px 28px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-button:hover {
    background-color: #7BCB1A;
    transform: translateY(-2px);
}

.footer-navigation {
    display: flex;
}

.footer-nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.footer-nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav-link:hover {
    color: #FFFFFF;
}

.legal-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #FFFFFF;
}

.separator {
    color: rgba(255, 255, 255, 0.88);
    font-size: 12px;
}

.copyright p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #FFFFFF;
    margin: 0;
}

.footer-accent-line {
    height: 8px;
    background-color: #87DB1C;
    width: 100%;
    margin-top: 40px;
}

/* Content Apps Page Styles */

/* Content Hero Section */
.content-hero-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.content-hero-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 70px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-hero-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 48px;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 20px;
}

.content-hero-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 30px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

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

.author-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #000000;
    margin: 0;
}

.author-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #8D8D8D;
    margin: 0;
}

.update-date {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #8D8D8D;
    margin: 0;
}

.content-hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

/* App Listings Section */
.app-listings-section {
    padding: 80px 0;
    background-color: #F8F9FA;
}

.app-listings-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 70px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.app-card {
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    gap: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.app-number {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 72px;
    color: #E5E5E5;
    line-height: 1;
    min-width: 80px;
}

.app-content {
    flex: 1;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 20px;
}

.app-info {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
}

.app-icon {
    width: 360px;
    height: 160px;
    border-radius: 16px;
    object-fit: contain;
    flex-shrink: 0;
}

.app-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #000000;
    margin: 0;
}

.shopify-button {
    background-color: #0A4734;
    color: #FFFFFF;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.shopify-button:hover {
    background-color: #0D5A42;
}

.app-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background-color: #E3F2FD;
    border-radius: 12px;
    padding: 20px;
    flex: 1;
}

.app-details {
    background-color: #F8F9FA;
    border-radius: 12px;
    padding: 20px;
    flex: 1;
}

.app-features-details-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-icon {
    flex-shrink: 0;
}

.feature-item span {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #000000;
}


.detail-row {
    display: flex;
    margin-bottom: 8px;
}

.detail-row:last-child {
    margin-bottom: 0;
}

.detail-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #000000;
    min-width: 80px;
    margin-right: 15px;
}

.detail-value {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #666666;
    flex: 1;
}

.user-review {
    background-color: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 15px;
}

.stars {
    flex-shrink: 0;
}

.star-rating {
    width: 100px;
    height: auto;
}

.review-content {
    flex: 1;
}

.reviewer-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #000000;
    margin: 0 0 5px 0;
}

.review-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #666666;
    margin: 0 0 8px 0;
    line-height: 1.5;
}

.review-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #999999;
    margin: 0;
}

/* Guide Section */
.guide-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.guide-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 70px;
}

.guide-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 48px;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 20px;
    text-align: center;
}

.guide-intro {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 50px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.guide-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.step-item {
    background-color: #F8F9FA;
    border-radius: 16px;
    padding: 30px;
}

.step-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #000000;
    margin-bottom: 15px;
}

.step-intro {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.step-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-list li {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.step-list li:before {
    content: "•";
    color: #00FF00;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.app-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.highlight-card {
    background-color: #F8F9FA;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.highlight-stars {
    width: 80px;
    height: auto;
    margin-bottom: 10px;
}

.highlight-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #000000;
    margin: 0 0 8px 0;
}

.highlight-desc {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #666666;
    margin: 0;
    line-height: 1.4;
}

/* Distinguishes Section */
.distinguishes-section {
    padding: 80px 0;
    background-color: #F8F9FA;
}

.distinguishes-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 70px;
}

.distinguishes-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 48px;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 20px;
    text-align: center;
}

.distinguishes-intro {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 50px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.distinguishes-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.distinguish-card {
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.distinguish-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.distinguish-card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #000000;
    margin-bottom: 15px;
}

.distinguish-card-desc {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 800px) {
    .header-container,
    .hero-banner,
    .intro-section,
    .categories-section,
    .trusted-container,
    .articles-section,
    .footer-container,
    .content-hero-container,
    .app-listings-container,
    .guide-container,
    .distinguishes-container {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .category-card {
        height: 400px;
        padding: 35px 20px;
    }
    
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .guide-steps {
        grid-template-columns: 1fr;
    }
    
    .app-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .distinguishes-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .nav-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .hero-title {
        font-size: 60px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-card {
        height: 350px;
        padding: 25px 15px;
    }
    
    .trusted-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .email-form {
        flex-direction: column;
        width: 100%;
    }
    
    .input-container {
        width: 100%;
    }
    
    .footer-nav-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    /* Content Apps Page Mobile Styles */
    .content-hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .content-hero-title {
        font-size: 36px;
    }
    
    .author-info {
        justify-content: center;
        text-align: center;
    }
    
    .author-details {
        text-align: center;
    }
    
    .update-date {
        text-align: center;
    }
    
    .app-card {
        flex-direction: column;
        text-align: center;
    }
    
    .app-header {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .app-info {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .app-icon {
        width: 100%;
        max-width: 360px;
        height: auto;
        aspect-ratio: 360/160;
    }
    
    .app-features-details-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .app-features,
    .app-details {
        width: 100%;
    }
    
    .user-review {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    
    .stars {
        order: 1;
    }
    
    .review-content {
        order: 2;
    }
    
    .app-number {
        font-size: 48px;
        align-self: center;
    }
    
    .app-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 40px;
    }
    
    .intro-title,
    .trusted-title,
    .articles-title {
        font-size: 32px;
    }
    
    .subscription-title {
        font-size: 24px;
    }
    
    /* Content Apps Page Small Mobile Styles */
    .content-hero-title {
        font-size: 28px;
    }
    
    .guide-title,
    .distinguishes-title {
        font-size: 32px;
    }
    
    .app-name {
        font-size: 20px;
    }
}

/* Problem-Solution Section Styles */
.problem-solution-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.problem-solution-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 70px;
}

.problem-solution-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.5;
    color: #000000;
    text-align: center;
    margin-bottom: 60px;
}

.problem-solution-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.problem-solution-card {
    background-color: #F5F5F5;
    border-radius: 12px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    border: 1px solid #CECECE;
}

.problem-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.solution-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.problem-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5;
    color: #000000;
    margin-bottom: 10px;
}

.problem-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
}

.solution-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5;
    color: #000000;
    margin-bottom: 10px;
}

.solution-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.solution-category {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    color: #00FF00;
    margin-bottom: 5px;
}

.solution-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
}

/* Responsive styles for problem-solution section */
@media (max-width: 768px) {
    .problem-solution-container {
        padding: 0 20px;
    }
    
    .problem-solution-title {
        font-size: 20px;
        margin-bottom: 40px;
    }
    
    .problem-solution-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }
    
    .problem-title,
    .solution-title {
        font-size: 16px;
    }
    
    .problem-description,
    .solution-description {
        font-size: 14px;
    }
    
    .solution-category {
        font-size: 14px;
    }
}

/* Content Sections Styles */
.content-sections {
    padding: 80px 0;
    background-color: #FFFFFF;
}

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

.content-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.5;
    color: #000000;
    margin-bottom: 30px;
}

.content-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
    color: #000000;
    margin-top: 50px;
    margin-bottom: 20px;
}

.content-subheading {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5;
    color: #000000;
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 25px;
}

/* Responsive styles for content sections */
@media (max-width: 768px) {
    .content-sections {
        padding: 60px 0;
    }
    
    .content-container {
        padding: 0 30px;
    }
    
    .content-title {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .content-subtitle {
        font-size: 18px;
        margin-top: 40px;
        margin-bottom: 18px;
    }
    
    .content-subheading {
        font-size: 16px;
        margin-top: 25px;
        margin-bottom: 12px;
    }
    
    .content-text {
        font-size: 15px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .problem-solution-section {
        padding: 60px 0;
    }
    
    .problem-solution-container {
        padding: 0 15px;
    }
    
    .problem-solution-title {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .problem-solution-card {
        padding: 20px;
        gap: 20px;
    }
    
    .content-sections {
        padding: 50px 0;
    }
    
    .content-container {
        padding: 0 20px;
    }
    
    .content-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .content-subtitle {
        font-size: 16px;
        margin-top: 35px;
        margin-bottom: 15px;
    }
    
    .content-subheading {
        font-size: 15px;
        margin-top: 20px;
        margin-bottom: 10px;
    }
    
    .content-text {
        font-size: 14px;
        margin-bottom: 18px;
        line-height: 1.7;
    }
}

/* Guides Page Styles */
.guides-hero-section {
    background: linear-gradient(135deg, #EDF6FF 0%, #F0F8FF 100%);
    padding: 120px 0 80px;
}

.guides-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 70px;
    text-align: center;
}

.guides-hero-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 48px;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 20px;
}

.guides-hero-description {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
}

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

/* Featured Article Section */
.featured-article-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.featured-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 40px;
}

.featured-article-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.featured-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

.featured-article-content {
    padding: 20px 0;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.article-category {
    background: #E3F2FD;
    color: #1976D2;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-date {
    color: #666666;
    font-size: 14px;
}

.featured-article-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.3;
    color: #000000;
    margin-bottom: 20px;
}

.featured-article-excerpt {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 30px;
}

.read-more-button {
    display: inline-block;
    background: #1976D2;
    color: #FFFFFF;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.read-more-button:hover {
    background: #1565C0;
    transform: translateY(-2px);
}

/* Articles Grid Section */
.articles-grid-section {
    padding: 80px 0;
    background-color: #F8F9FA;
}

.section-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: #000000;
    text-align: center;
    margin-bottom: 60px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.article-card {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.article-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .card-image {
    transform: scale(1.05);
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F5F5F5;
}

.article-content {
    padding: 30px;
}

.article-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
    color: #000000;
    margin-bottom: 15px;
}

.article-excerpt {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 20px;
}

.read-more-link {
    color: #1976D2;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.read-more-link:hover {
    color: #1565C0;
}

.coming-soon {
    color: #999999;
    font-style: italic;
    font-size: 14px;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.newsletter-description {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #E3F2FD;
    margin-bottom: 40px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
}

.newsletter-button {
    background: #FFFFFF;
    color: #1976D2;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-button:hover {
    background: #F5F5F5;
    transform: translateY(-2px);
}

/* Individual Article Page Styles */
.article-hero-section {
    background: linear-gradient(135deg, #EDF6FF 0%, #F0F8FF 100%);
    padding: 120px 0 60px;
}

.article-hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 70px;
}

.article-breadcrumb {
    margin-bottom: 20px;
}

.article-breadcrumb a {
    color: #1976D2;
    text-decoration: none;
    font-weight: 500;
}

.article-breadcrumb span {
    color: #666666;
}

.article-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 42px;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 30px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.author-name {
    font-weight: 600;
    color: #000000;
    margin: 0;
    font-size: 14px;
}

.author-title {
    color: #666666;
    margin: 0;
    font-size: 12px;
}

.article-date {
    color: #666666;
    font-size: 14px;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #E0E0E0;
}

/* Article Content Section */
.article-content-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 70px;
}

.article-content {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: #333333;
}

.content-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 40px;
}

.article-intro {
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 40px;
    padding: 20px;
    background: #F8F9FA;
    border-left: 4px solid #1976D2;
    border-radius: 0 8px 8px 0;
}

.article-content h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #000000;
    margin: 50px 0 20px 0;
}

.article-content h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: 22px;
    color: #000000;
    margin: 40px 0 15px 0;
}

.article-content p {
    font-size: 16px;
    margin-bottom: 20px;
}

.article-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.article-content li {
    margin-bottom: 10px;
    font-size: 16px;
}

.article-content a {
    color: #1976D2;
    text-decoration: none;
    font-weight: 500;
}

.article-content a:hover {
    text-decoration: underline;
}

.article-cta {
    background: #F8F9FA;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin: 50px 0;
    border: 2px solid #E3F2FD;
}

.article-cta h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #000000;
    margin-bottom: 15px;
}

.article-cta p {
    font-size: 16px;
    color: #666666;
    margin-bottom: 30px;
}


/* Related Articles Section */
.related-articles-section {
    padding: 60px 0;
    background-color: #F8F9FA;
}

.related-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
}

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

.related-article {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.related-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.related-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-content {
    padding: 20px;
}

.related-article-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
    color: #000000;
    margin-bottom: 15px;
}

.related-link {
    color: #1976D2;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.related-link:hover {
    color: #1565C0;
}

/* Responsive Design for Guides and Articles */
@media (max-width: 768px) {
    .guides-hero-container,
    .guides-container,
    .article-hero-container,
    .article-container {
        padding: 0 20px;
    }
    
    .guides-hero-title {
        font-size: 32px;
    }
    
    .featured-article {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .article-title {
        font-size: 28px;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .related-articles-grid {
        grid-template-columns: 1fr;
    }
}

/* About Page Styles */
.about-hero-section {
    background: linear-gradient(135deg, #EDF6FF 0%, #F0F8FF 100%);
    padding: 120px 0 80px;
}

.about-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 70px;
    text-align: center;
}

.about-hero-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 48px;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 30px;
}

.about-hero-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.6;
    color: #000000;
    max-width: 800px;
    margin: 0 auto;
}

.about-mission-section,
.about-challenge-section,
.about-help-section,
.about-approach-section,
.about-categories-section,
.about-commitment-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.about-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #EDF6FF 0%, #F0F8FF 100%);
}

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

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 1.3;
    color: #000000;
    margin-bottom: 30px;
    text-align: center;
}

.about-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    color: #000000;
    margin-bottom: 40px;
}

.challenge-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background-color: #F8F9FA;
    border-radius: 12px;
    border: 1px solid #E9ECEF;
}

.stat-number {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 36px;
    line-height: 1.2;
    color: #00FF00;
    margin-bottom: 10px;
}

.stat-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
}

.help-goals {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.goal-item {
    text-align: center;
    padding: 40px 30px;
    background-color: #F8F9FA;
    border-radius: 16px;
    border: 1px solid #E9ECEF;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.goal-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.goal-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.goal-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.3;
    color: #000000;
    margin-bottom: 15px;
}

.goal-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.approach-item {
    padding: 30px;
    background-color: #F8F9FA;
    border-radius: 12px;
    border-left: 4px solid #00FF00;
}

.approach-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.3;
    color: #000000;
    margin-bottom: 15px;
}

.approach-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.category-item {
    padding: 30px 20px;
    background-color: #F8F9FA;
    border-radius: 12px;
    border: 1px solid #E9ECEF;
    text-align: center;
    transition: transform 0.3s ease;
}

.category-item:hover {
    transform: translateY(-3px);
}

.category-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3;
    color: #000000;
    margin-bottom: 15px;
}

.category-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    color: #000000;
}

.commitment-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.commitment-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
}

.commitment-icon {
    width: 24px;
    height: 24px;
    background-color: #00FF00;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.commitment-item span {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
}

.about-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 36px;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 20px;
}

.cta-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}


/* Responsive styles for About page */
@media (max-width: 768px) {
    .about-hero-container,
    .about-container {
        padding: 0 30px;
    }
    
    .about-hero-title {
        font-size: 36px;
    }
    
    .about-hero-description {
        font-size: 18px;
    }
    
    .about-section-title {
        font-size: 28px;
    }
    
    .about-text {
        font-size: 16px;
    }
    
    .challenge-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .help-goals {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .commitment-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-hero-section {
        padding: 100px 0 60px;
    }
    
    .about-hero-container,
    .about-container {
        padding: 0 20px;
    }
    
    .about-hero-title {
        font-size: 28px;
    }
    
    .about-hero-description {
        font-size: 16px;
    }
    
    .about-section-title {
        font-size: 24px;
    }
    
    .about-text {
        font-size: 15px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-description {
        font-size: 16px;
    }
}

/* Explanation Section Styles */
.explanation-section {
    padding: 80px 0;
    background-color: #F8F9FA;
}

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

.explanation-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #1A1A1A;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.2;
}

.explanation-content {
    margin-bottom: 60px;
}

.explanation-text {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #4A4A4A;
    margin-bottom: 20px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.explanation-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.explanation-card {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.explanation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.explanation-card-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.explanation-card-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 15px;
    line-height: 1.3;
}

.explanation-card-text {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #4A4A4A;
}

/* Responsive Design for Explanation Section */
@media (max-width: 768px) {
    .explanation-section {
        padding: 60px 0;
    }
    
    .explanation-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .explanation-text {
        font-size: 16px;
    }
    
    .explanation-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .explanation-card {
        padding: 25px;
    }
    
    .explanation-card-title {
        font-size: 20px;
    }
    
    .explanation-card-text {
        font-size: 14px;
    }
}

/* Competitive Landscape Section */
.competitive-landscape-section {
    background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
    padding: 80px 0;
    margin-top: 60px;
}

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

.competitive-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #1A202C;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.competitive-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: #4A5568;
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.stat-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.stat-card.highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #FFFFFF;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 64px;
    font-weight: 800;
    color: #1A202C;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-card.highlight .stat-number {
    color: #FFFFFF;
    font-size: 72px;
}

.stat-label {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #2D3748;
    margin-bottom: 8px;
}

.stat-card.highlight .stat-label {
    color: #FFFFFF;
}

.stat-description {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #718096;
}

.stat-card.highlight .stat-description {
    color: rgba(255, 255, 255, 0.9);
}

.competitive-content {
    margin-bottom: 60px;
}

.competitive-text h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 20px;
}

.competitive-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #4A5568;
    margin-bottom: 30px;
    line-height: 1.6;
}

.competitive-text ul {
    list-style: none;
    padding: 0;
}

.competitive-text li {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #4A5568;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.competitive-text li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48BB78;
    font-weight: bold;
    font-size: 18px;
}


.call-to-action {
    text-align: center;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #E2E8F0;
}

.call-to-action h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 20px;
}

.call-to-action p {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #4A5568;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}


/* Responsive Design for Competitive Landscape */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-card.highlight {
        transform: none;
    }
}

@media (max-width: 768px) {
    .competitive-landscape-section {
        padding: 60px 0;
    }
    
    .competitive-title {
        font-size: 36px;
    }
    
    .competitive-subtitle {
        font-size: 18px;
    }
    
    .stat-number {
        font-size: 48px;
    }
    
    .stat-card.highlight .stat-number {
        font-size: 56px;
    }
    
    .competitive-text h3 {
        font-size: 24px;
    }
    
    .call-to-action h3 {
        font-size: 28px;
    }
    
    .call-to-action p {
        font-size: 16px;
    }
}

/* Conversion Rate Impact Section */
.conversion-impact-section {
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    padding: 80px 0;
    margin-top: 60px;
}

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

.conversion-impact-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #1A202C;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.conversion-impact-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: #4A5568;
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.conversion-demo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.demo-scenario {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #E2E8F0;
    transition: all 0.3s ease;
}

.demo-scenario.improved {
    border: 2px solid #48BB78;
    background: linear-gradient(135deg, #F0FFF4 0%, #E6FFFA 100%);
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(72, 187, 120, 0.2);
}

.scenario-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1A202C;
    text-align: center;
    margin-bottom: 30px;
}

.scenario-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px 15px;
    background: #F8FAFC;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
}

.stat-item.highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #FFFFFF;
    border: none;
}

.stat-number {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #1A202C;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-item.highlight .stat-number {
    color: #FFFFFF;
    font-size: 36px;
}

.stat-label {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #4A5568;
}

.stat-item.highlight .stat-label {
    color: rgba(255, 255, 255, 0.9);
}

.revenue-impact {
    text-align: center;
    margin-bottom: 60px;
}

.impact-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #FFFFFF;
    border-radius: 20px;
    padding: 40px 30px;
    display: inline-block;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.impact-number {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 10px;
    line-height: 1;
}

.impact-label {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.impact-percentage {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.conversion-explanation {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #E2E8F0;
}

.conversion-explanation h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 20px;
    text-align: center;
}

.conversion-explanation p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #4A5568;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.6;
}

.conversion-explanation ul {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

.conversion-explanation li {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #4A5568;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.conversion-explanation li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48BB78;
    font-weight: bold;
    font-size: 18px;
}

.conversion-cta {
    text-align: center;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #E2E8F0;
}

.conversion-cta h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 20px;
}

.conversion-cta p {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #4A5568;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive Design for Conversion Impact */
@media (max-width: 1024px) {
    .conversion-demo {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .demo-scenario.improved {
        transform: none;
    }
    
    .scenario-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .conversion-impact-section {
        padding: 60px 0;
    }
    
    .conversion-impact-title {
        font-size: 36px;
    }
    
    .conversion-impact-subtitle {
        font-size: 18px;
    }
    
    .scenario-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-item.highlight .stat-number {
        font-size: 32px;
    }
    
    .impact-number {
        font-size: 36px;
    }
    
    .conversion-explanation h3 {
        font-size: 24px;
    }
    
    .conversion-cta h3 {
        font-size: 28px;
    }
    
    .conversion-cta p {
        font-size: 16px;
    }
}

/* Related Resources Section */
.related-resources-section {
    background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
    padding: 60px 0;
    margin-top: 40px;
}

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

.related-resources-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #1A202C;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.2;
}

.related-resources-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #4A5568;
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.related-resources-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.related-resource-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid #E2E8F0;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 20px;
}

.related-resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.resource-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F8FAFC;
    border-radius: 12px;
    border: 2px solid #E2E8F0;
}

.resource-icon-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.resource-content {
    flex: 1;
}

.resource-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 10px;
    line-height: 1.3;
}

.resource-description {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #4A5568;
    margin-bottom: 15px;
    line-height: 1.5;
}

.resource-link {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #667eea;
    transition: color 0.3s ease;
}

.related-resource-card:hover .resource-link {
    color: #4C51BF;
}

.growth-strategy-note {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #FFFFFF;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.growth-strategy-note h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.growth-strategy-note p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Related Resources */
@media (max-width: 768px) {
    .related-resources-section {
        padding: 50px 0;
    }
    
    .related-resources-title {
        font-size: 28px;
    }
    
    .related-resources-subtitle {
        font-size: 16px;
    }
    
    .related-resources-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .related-resource-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .resource-icon {
        width: 70px;
        height: 70px;
    }
    
    .resource-icon-img {
        width: 40px;
        height: 40px;
    }
    
    .resource-title {
        font-size: 18px;
    }
    
    .resource-description {
        font-size: 13px;
    }
    
    .growth-strategy-note {
        padding: 25px 20px;
    }
    
    .growth-strategy-note h3 {
        font-size: 20px;
    }
    
    .growth-strategy-note p {
        font-size: 14px;
    }
}

/* Specialized Automation Section */
.specialized-automation-section {
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    padding: 60px 0;
    margin-top: 40px;
}

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

.specialized-automation-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #1A202C;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.2;
}

.specialized-automation-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #4A5568;
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.specialized-automation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.specialized-automation-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid #E2E8F0;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 20px;
}

.specialized-automation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.automation-icon {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F8FAFC;
    border-radius: 12px;
    border: 2px solid #E2E8F0;
    overflow: hidden;
}

.automation-icon-img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    border-radius: 8px;
}

.automation-content {
    flex: 1;
}

.automation-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 10px;
    line-height: 1.3;
}

.automation-description {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #4A5568;
    margin-bottom: 15px;
    line-height: 1.5;
}

.automation-link {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #667eea;
    transition: color 0.3s ease;
}

.specialized-automation-card:hover .automation-link {
    color: #4C51BF;
}

.automation-note {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #FFFFFF;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.automation-note h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.automation-note p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Specialized Automation */
@media (max-width: 768px) {
    .specialized-automation-section {
        padding: 50px 0;
    }
    
    .specialized-automation-title {
        font-size: 28px;
    }
    
    .specialized-automation-subtitle {
        font-size: 16px;
    }
    
    .specialized-automation-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .specialized-automation-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .automation-icon {
        width: 100px;
        height: 70px;
    }
    
    .automation-icon-img {
        width: 90%;
        height: 90%;
    }
    
    .automation-title {
        font-size: 18px;
    }
    
    .automation-description {
        font-size: 13px;
    }
    
    .automation-note {
        padding: 25px 20px;
    }
    
    .automation-note h3 {
        font-size: 20px;
    }
    
    .automation-note p {
        font-size: 14px;
    }
}

/* Features Table Styles */
.features-table-section {
    background-color: #F8F9FA;
    padding: 80px 0;
}

.features-table-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 70px;
}

.features-table-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.features-table-description {
    font-size: 18px;
    color: #666666;
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-table-wrapper {
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow-x: auto;
}

.features-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
    min-width: 1000px;
}

.features-table thead {
    background-color: #F8F9FA;
    border-radius: 12px 12px 0 0;
}

.features-table th {
    padding: 20px 16px;
    text-align: left;
    font-weight: 600;
    color: #000000;
    border-bottom: 2px solid #E9ECEF;
    font-size: 16px;
}

.features-table td {
    padding: 16px;
    border-bottom: 1px solid #E9ECEF;
    vertical-align: top;
    font-size: 15px;
}

.features-table tbody tr:hover {
    background-color: #F8F9FA;
}

.feature-category {
    font-weight: 600;
    color: #000000;
    background-color: #F8F9FA;
    border-right: 2px solid #E9ECEF;
    min-width: 150px;
}

.feature-name {
    font-weight: 600;
    color: #000000;
    min-width: 180px;
}

.feature-importance {
    font-weight: 600;
    text-align: center;
    min-width: 120px;
}

.feature-importance.high {
    color: #DC3545;
    background-color: #F8D7DA;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 13px;
}

.feature-importance.medium {
    color: #856404;
    background-color: #FFF3CD;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 13px;
}

.feature-description {
    color: #666666;
    line-height: 1.5;
    min-width: 250px;
}

.feature-roi {
    font-weight: 600;
    color: #28A745;
    text-align: left;
    min-width: 150px;
}

.features-table-footer {
    margin-top: 40px;
    padding: 30px;
    background-color: #E3F2FD;
    border-radius: 12px;
    border-left: 4px solid #2196F3;
}

.features-table-note {
    font-size: 16px;
    color: #000000;
    margin: 0;
    line-height: 1.6;
}

/* Responsive Design for Features Table */
@media (max-width: 1200px) {
    .features-table-container {
        padding: 0 40px;
    }
    
    .features-table-wrapper {
        padding: 30px 20px;
    }
    
    .features-table-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .features-table-section {
        padding: 60px 0;
    }
    
    .features-table-container {
        padding: 0 20px;
    }
    
    .features-table-title {
        font-size: 32px;
    }
    
    .features-table-description {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .features-table-wrapper {
        padding: 20px 15px;
    }
    
    .features-table {
        font-size: 14px;
    }
    
    .features-table th,
    .features-table td {
        padding: 12px 8px;
    }
    
    .features-table-note {
        font-size: 14px;
    }
}

/* Best Apps by Category Styles */
.best-apps-categories-section {
    background-color: #FFFFFF;
    padding: 80px 0;
}

.best-apps-categories-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 70px;
}

.best-apps-categories-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.best-apps-categories-description {
    font-size: 18px;
    color: #666666;
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.app-category {
    margin-bottom: 60px;
    padding: 40px;
    background-color: #F8F9FA;
    border-radius: 16px;
    border-left: 4px solid #87DB1C;
}

.app-category-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.2;
}

.app-category-description {
    font-size: 16px;
    color: #666666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.app-category-apps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.app-category-app {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #E9ECEF;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.app-category-app:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.app-category-app-name {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.3;
}

.app-category-app-description {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Best Apps Categories */
@media (max-width: 1200px) {
    .best-apps-categories-container {
        padding: 0 40px;
    }
    
    .best-apps-categories-title {
        font-size: 40px;
    }
    
    .app-category {
        padding: 30px;
    }
    
    .app-category-apps {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .best-apps-categories-section {
        padding: 60px 0;
    }
    
    .best-apps-categories-container {
        padding: 0 20px;
    }
    
    .best-apps-categories-title {
        font-size: 32px;
    }
    
    .best-apps-categories-description {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .app-category {
        padding: 25px 20px;
        margin-bottom: 40px;
    }
    
    .app-category-title {
        font-size: 24px;
    }
    
    .app-category-description {
        font-size: 15px;
    }
    
    .app-category-apps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .app-category-app {
        padding: 25px 20px;
    }
    
    .app-category-app-name {
        font-size: 18px;
    }
    
    .app-category-app-description {
        font-size: 14px;
    }
}
