:root {
    --primary-color: #1F3C88;
    --secondary-color: #00D4FF;
    --accent-color-1: #7B2FF7;
    --accent-color-2: #F107A3;
    --text-color: #333333;
    --text-light: #666666;
    --text-lighter: #999999;
    --bg-color: #F9FAFB;
    --bg-light: #FFFFFF;
    --border-color: #E5E7EB;
    --success-color: #10B981;
    --warning-color: #F59E0B;
    --error-color: #EF4444;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color-1);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color-1), var(--accent-color-2));
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-color-2), var(--accent-color-1));
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--bg-light);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.interface-header img{
        border: 2px solid var(--primary-color); /* thickness, style, color */    
}

/* Header Styles */
.header {
    background-color: var(--bg-light);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.main-nav a {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.main-nav a.active {
    color: var(--primary-color);
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, var(--accent-color-1), var(--accent-color-2));
    animation: underlineGrow 0.3s ease-out;
}

@keyframes underlineGrow {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

/* Dark Mode Adjustments */
.dark-mode .main-nav a {
    color: rgba(255, 255, 255, 0.8);
}

.dark-mode .main-nav a:hover,
.dark-mode .main-nav a.active {
    color: var(--secondary-color);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.logo-light { display: block; }
.logo-dark { display: none; }

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--bg-light);
        box-shadow: var(--shadow-md);
        padding: 1rem;
        transform: translateY(-150%);
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-content {
    flex: 1
    /* padding-bottom: none; */
    /* margin-top: ; */
}

.hero-image {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.hero-cta {
    display: flex;
    gap: 1rem;
}

/* Featured Tools */
.featured-tools {
    padding: 4rem 0;
}

.featured-tools h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: var(--primary-color);
}

.tool-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--border-color);
}

.tool-carousel::-webkit-scrollbar {
    height: 6px;
}

.tool-carousel::-webkit-scrollbar-track {
    background: var(--border-color);
    border-radius: 10px;
}

.tool-carousel::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 10px;
}

.tool-card {
    min-width: 280px;
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.tool-card img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 1rem;
    border-radius: var(--radius-sm);
}

.tool-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.tool-description {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.rating {
    color: var(--warning-color);
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* Ad Section */
.ad-section {
    padding: 1rem 0;
}

.ad-banner {
    background-color: var(--border-color);
    border-radius: var(--radius-sm);
    padding: 1rem;
    text-align: center;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-placeholder {
    color: var(--text-lighter);
}

/* Latest Articles */
.latest-articles {
    padding: 4rem 0;
}

.latest-articles h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: var(--primary-color);
}

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

.article-card {
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.article-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-content {
    padding: 1.5rem;
}

.article-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.article-content h3 a {
    color: var(--text-color);
}

.article-content h3 a:hover {
    color: var(--primary-color);
}

.meta {
    color: var(--text-lighter);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.excerpt {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.read-more {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.read-more::after {
    content: '→';
    margin-left: 0.5rem;
    transition: var(--transition);
}

.read-more:hover::after {
    transform: translateX(3px);
}

/* Top Picks */
.top-picks {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.top-picks h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: var(--primary-color);
}

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

.pick-card {
    background-color: var(--bg-color);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.pick-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.pick-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-color-1), var(--accent-color-2));
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pick-card img {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    object-fit: cover;
}

.pick-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.pick-card p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    margin-top: 3rem;
    color: white;
    padding: 2rem 0 0;
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
}

.footer a:hover {
    color: white;
}

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

.footer-col h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.footer-col p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    border: none;
    font-family: inherit;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, rgba(31, 60, 136, 0.9), rgba(123, 47, 247, 0.8)), 
                url('../images/about-bg.jpg') center/cover no-repeat;
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.about-hero .subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
}

.about-mission {
    padding: 5rem 0;
}

.about-mission .container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.mission-content {
    flex: 1;
}

.mission-content h2 {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.mission-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.mission-image {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.mission-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.mission-image:hover img {
    transform: scale(1.03);
}

.founder-section {
    background-color: var(--bg-light);
    padding: 5rem 0;
}

.founder-section h2 {
    text-align: center;
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.founder-profile {
    display: flex;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--bg-color);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-md);
}

.founder-image {
    flex: 0 0 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.founder-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.founder-image:hover img {
    transform: scale(1.05);
}

.founder-bio {
    flex: 1;
}

.founder-bio h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.founder-bio .title {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.founder-bio p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.founder-bio .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.founder-bio .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    transition: var(--transition);
}

.founder-bio .social-links a:hover {
    background-color: var(--accent-color-1);
    transform: translateY(-3px);
}

.team-values {
    padding: 5rem 0;
}

.team-values h2 {
    text-align: center;
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-color: rgba(31, 60, 136, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon img {
    width: 40px;
    height: 40px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.faq-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.faq-item {
    margin-bottom: 1rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    background-color: var(--bg-light);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: rgba(31, 60, 136, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: var(--primary-color);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-question.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--bg-color);
}

.faq-answer.active {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin-bottom: 0;
}

/* Dark mode adjustments */
.dark-mode .about-hero {
    background: linear-gradient(135deg, rgba(31, 60, 136, 0.9), rgba(123, 47, 247, 0.8)), 
                url('../images/about-bg-dark.jpg') center/cover no-repeat;
}

.dark-mode .faq-question {
    background-color: var(--bg-color);
}

.dark-mode .faq-question:hover {
    background-color: rgba(31, 60, 136, 0.2);
}

.dark-mode .value-card {
    background-color: var(--bg-color);
}

.dark-mode .founder-profile {
    background-color: var(--bg-light);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-mission .container {
        flex-direction: column;
    }
    
    .founder-profile {
        flex-direction: column;
    }
    
    .founder-image {
        flex: 1;
        width: 100%;
        max-width: 400px;
        margin: 0 auto 2rem;
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero .subtitle {
        font-size: 1.2rem;
    }
    
    .mission-content h2,
    .founder-section h2,
    .team-values h2,
    .faq-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .about-hero {
        padding: 4rem 0;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, rgba(31, 60, 136, 0.9), rgba(123, 47, 247, 0.8)), 
                url('../images/contact-bg.jpg') center/cover no-repeat;
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.contact-hero .subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
}

.contact-section {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-form h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(31, 60, 136, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.g-recaptcha {
    margin: 1.5rem 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-card {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(31, 60, 136, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.info-icon img {
    width: 24px;
    height: 24px;
}

.info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.info-card p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.info-card .social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.info-card .social-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    transition: var(--transition);
    text-decoration: none; /* optional */
}

.info-card .social-links a:hover {
    color: var(--accent-color-1);
}

.info-card .social-links a i {
    min-width: 20px;     /* keeps spacing consistent */
    text-align: center;
    font-size: 1.2rem;
    flex-shrink: 0;      /* stops icon from shrinking */
}


.faq-contact-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.faq-contact-section h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.faq-item {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.faq-item h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--text-light);
}

.newsletter-section {
    padding: 0 0 5rem;
}

.newsletter-box {
    background: linear-gradient(135deg, var(--accent-color-1), var(--accent-color-2));
    border-radius: var(--radius-lg);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.newsletter-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: white;
}

.newsletter-content p {
    opacity: 0.9;
    max-width: 500px;
}

.newsletter-box .newsletter-form {
    display: flex;
    gap: 0.5rem;
    min-width: 400px;
}

.newsletter-box .newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    border: none;
    font-family: inherit;
}

.newsletter-box .btn-primary {
    background-color: white;
    color: var(--accent-color-1);
}

.newsletter-box .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Dark mode adjustments */
.dark-mode .contact-hero {
    background: linear-gradient(135deg, rgba(31, 60, 136, 0.9), rgba(123, 47, 247, 0.8)), 
                url('../images/contact-bg-dark.jpg') center/cover no-repeat;
}

.dark-mode .contact-form,
.dark-mode .info-card,
.dark-mode .faq-item {
    background-color: var(--bg-color);
}

.dark-mode .form-group input,
.dark-mode .form-group select,
.dark-mode .form-group textarea {
    background-color: var(--bg-light);
    border-color: var(--border-color);
    color: var(--text-color);
}

.dark-mode .faq-contact-section {
    background-color: var(--bg-color);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-box {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .newsletter-box .newsletter-form {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero .subtitle {
        font-size: 1.2rem;
    }
    
    .faq-contact-section h2 {
        font-size: 1.75rem;
    }
    
    .newsletter-box {
        padding: 2rem;
    }
    
    .newsletter-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .contact-hero {
        padding: 4rem 0;
    }
    
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-form,
    .info-card {
        padding: 1.5rem;
    }
    
    .newsletter-box .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-box .btn-primary {
        width: 100%;
    }
}

/* Blog Page Styles */
.blog-hero {
    background: linear-gradient(135deg, rgba(31, 60, 136, 0.9), rgba(123, 47, 247, 0.8)), 
                url('../images/blog-bg.jpg') center/cover no-repeat;
    color: white;
    padding: 1rem 0;
    text-align: center;
    margin-bottom: 1.4rem;
}

.blog-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.blog-hero .subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
}

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

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

.blog-post {
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.blog-post.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.post-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.blog-post.featured .post-image {
    height: auto;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-post:hover .post-image img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--accent-color-1);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.post-content {
    padding: 1.5rem;
}

.blog-post.featured .post-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.post-meta .category {
    color: var(--primary-color);
    font-weight: 500;
}

.post-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-post.featured h2 {
    font-size: 2rem;
}

.post-content h2 a {
    color: var(--text-color);
}

.post-content h2 a:hover {
    color: var(--primary-color);
}

.excerpt {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.read-more {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.read-more::after {
    content: '→';
    margin-left: 0.5rem;
    transition: var(--transition);
}

.read-more:hover::after {
    transform: translateX(3px);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.page-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-weight: 500;
    transition: var(--transition);
}

.page-number:hover {
    background-color: rgba(31, 60, 136, 0.1);
}

.page-number.active {
    background-color: var(--primary-color);
    color: white;
}

.ellipsis {
    padding: 0 0.5rem;
}

.categories-section {
    padding: 0 0 5rem;
}

.categories-section h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.category-card {
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, var(--accent-color-1), var(--accent-color-2));
    color: white;
}

.category-card:hover h3,
.category-card:hover p,
.category-card:hover .count {
    color: white;
}

.category-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.category-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.count {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: rgba(31, 60, 136, 0.1);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--primary-color);
}

.newsletter-section {
    padding: 0 0 5rem;
}

.newsletter-box {
    background: linear-gradient(135deg, var(--accent-color-1), var(--accent-color-2));
    border-radius: var(--radius-lg);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.newsletter-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: white;
}

.newsletter-content p {
    opacity: 0.9;
    max-width: 500px;
}

.newsletter-box .newsletter-form {
    display: flex;
    gap: 0.5rem;
    min-width: 400px;
}

.newsletter-box .newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    border: none;
    font-family: inherit;
}

.newsletter-box .btn-primary {
    background-color: white;
    color: var(--accent-color-1);
}

.newsletter-box .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Dark mode adjustments */
.dark-mode .blog-hero {
    background: linear-gradient(135deg, rgba(31, 60, 136, 0.9), rgba(123, 47, 247, 0.8)), 
                url('../images/blog-bg-dark.jpg') center/cover no-repeat;
}

.dark-mode .blog-post,
.dark-mode .category-card {
    background-color: var(--bg-color);
}

.dark-mode .category-card:hover {
    background: linear-gradient(135deg, var(--accent-color-1), var(--accent-color-2));
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .blog-post.featured {
        grid-template-columns: 1fr;
    }
    
    .newsletter-box {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .newsletter-box .newsletter-form {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 2.5rem;
    }
    
    .blog-hero .subtitle {
        font-size: 1.2rem;
    }
    
    .blog-post.featured h2 {
        font-size: 1.75rem;
    }
    
    .categories-section h2 {
        font-size: 1.75rem;
    }
    
    .newsletter-box {
        padding: 2rem;
    }
    
    .newsletter-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .blog-hero {
        padding: 4rem 0;
    }
    
    .blog-hero h1 {
        font-size: 2rem;
    }
    
    .pagination {
        flex-wrap: wrap;
    }
    
    .newsletter-box .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-box .btn-primary {
        width: 100%;
    }
}


/* Reviews Page Styles */
.reviews-hero {
    background: linear-gradient(135deg, rgba(31, 60, 136, 0.9), rgba(123, 47, 247, 0.8)), 
                url('../images/reviews-bg.jpg') center/cover no-repeat;
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.reviews-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.reviews-hero .subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 2rem;
}

.search-box {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 0.5rem;
}

.search-box input {
    flex: 1;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.search-box .btn {
    border-radius: 50px;
    padding: 0.75rem 2rem;
}

.reviews-section {
    padding: 5rem 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0;
}

.filter-controls {
    display: flex;
    gap: 1.5rem;
}

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

.filter-group label {
    font-weight: 500;
    color: var(--text-color);
}

.filter-group select {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
}

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

.reviews-grid.single-item {
    grid-template-columns: 300px; /* Fixed card width */
    /* justify-content: center;      Center it */
     margin-bottom: 3rem;
}


.review-card {
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.review-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.review-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--accent-color-1);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
}

.review-image {
    height: 220px;
    overflow: hidden;
}

.review-card.featured .review-image {
    height: fit-content;
}

.review-image img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform 0.5s ease;
}

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

.review-content {
    padding: 1.5rem;
}

.review-card.featured .review-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.review-meta .category {
    color: var(--primary-color);
    font-weight: 500;
}

.review-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.review-card.featured h3 {
    font-size: 1.75rem;
}

.review-content h3 a {
    color: var(--text-color);
}

.review-content h3 a:hover {
    color: var(--primary-color);
}

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

.stars {
    color: var(--warning-color);
    font-size: 1rem;
}

.score {
    font-weight: 600;
    color: var(--text-color);
}

.excerpt {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pricing {
    text-align: right;
}

.price {
    display: block;
    font-weight: 600;
    color: var(--text-color);
}

.free-tier {
    font-size: 0.75rem;
    color: var(--text-light);
}

.categories-section {
    padding: 0 0 5rem;
}

.categories-section h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.category-card {
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, var(--accent-color-1), var(--accent-color-2));
    color: white;
}

.category-card:hover h3,
.category-card:hover p,
.category-card:hover .count {
    color: white;
}

.category-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
}

.category-icon img {
    width: 110%;      /* slightly larger than container */
    height: 110%;     /* slightly larger than container */
    object-fit: cover;
    border-radius: 50%;
    display: block;
    transform: scale(1.1); /* optional: makes image even more snug */
}

.category-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.category-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.count {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: rgba(31, 60, 136, 0.1);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--primary-color);
}

/* Dark mode adjustments */
.dark-mode .reviews-hero {
    background: linear-gradient(135deg, rgba(31, 60, 136, 0.9), rgba(123, 47, 247, 0.8)), 
                url('../images/reviews-bg-dark.jpg') center/cover no-repeat;
}

.dark-mode .review-card,
.dark-mode .category-card {
    background-color: var(--bg-color);
}

.dark-mode .filter-group select {
    background-color: var(--bg-color);
    border-color: var(--border-color);
    color: var(--text-color);
}

.dark-mode .category-card:hover {
    background: linear-gradient(135deg, var(--accent-color-1), var(--accent-color-2));
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .review-card.featured {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .filter-controls {
        width: 100%;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .reviews-hero h1 {
        font-size: 2.5rem;
    }
    
    .reviews-hero .subtitle {
        font-size: 1.2rem;
    }
    
    .review-card.featured h3 {
        font-size: 1.5rem;
    }
    
    .categories-section h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .reviews-hero {
        padding: 4rem 0;
    }
    
    .reviews-hero h1 {
        font-size: 2rem;
    }
    
    .search-box {
        flex-direction: column;
    }
    
    .search-box input,
    .search-box .btn {
        width: 100%;
    }
    
    .review-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .pricing {
        text-align: left;
    }
}

/* Tool Review Page Styles */
.tool-review {
    padding-bottom: 5rem;
}

.review-hero {
    background-color: var(--bg-light);
    padding: 3rem 0;
}

.review-hero .container {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.breadcrumbs {
    font-size: 0.875rem;
    color: black;
    margin-bottom: 1rem;
}

.breadcrumbs a {
    color: black;
}

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

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

.tool-icon {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.tool-meta h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.meta-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.meta-row .category {
    color: var(--primary-color);
    font-weight: 500;
}

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

.rating .stars {
    color: var(--warning-color);
    font-size: 1.25rem;
}

.rating .score {
    font-weight: 600;
    color: var(--text-color);
}

.review-badge {
    background-color: var(--accent-color-1);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.review-hero .subtitle {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.quick-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
    background-color: rgba(31, 60, 136, 0.05);
    padding: 1.5rem;
    border-radius: var(--radius-md);
}

.fact {
    display: flex;
    flex-direction: column;
}

.fact-label {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.fact-value {
    font-weight: 500;
    color: var(--text-color);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}
.hero-ct{
    /* display: flex; */
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.hero-image {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.03);
}

.review-content .container {
    max-width: 1200px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
}

.main-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 3rem 0 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.main-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.main-content h4 {
    font-size: 1.25rem;
    color: var(--text-color);
    margin: 1.5rem 0 0.75rem;
}

.main-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.main-content ul,
.main-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.main-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.pros h3,
.cons h3 {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pros h3::before {
    content: '✓';
    color: var(--success-color);
}

.cons h3::before {
    content: '✗';
    color: var(--error-color);
}

.pros ul,
.cons ul {
    list-style: none;
    padding-left: 0;
}

.pros li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
}

.pros li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
}

.cons li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
}

.cons li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--error-color);
}

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

.feature-card {
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
    background-color: rgba(31, 60, 136, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 24px;
    height: 24px;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.performance-table {
    overflow-x: auto;
    margin: 2rem 0;
}

.performance-table table {
    width: 100%;
    border-collapse: collapse;
}

.performance-table th,
.performance-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.performance-table th {
    background-color: rgba(31, 60, 136, 0.05);
    font-weight: 600;
    color: var(--primary-color);
}

.performance-table tr:nth-child(even) {
    background-color: rgba(31, 60, 136, 0.02);
}

.use-case {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.example {
    background-color: rgba(31, 60, 136, 0.05);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin: 1rem 0;
}

.example-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.example-content {
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    color: var(--text-color);
    background-color: rgba(255, 255, 255, 0.7);
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--primary-color);
}

.pricing-table {
    overflow-x: auto;
    margin: 2rem 0;
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.pricing-table th {
    background-color: rgba(31, 60, 136, 0.05);
    font-weight: 600;
    color: var(--primary-color);
}

.pricing-table tr:nth-child(even) {
    background-color: rgba(31, 60, 136, 0.02);
}

.verdict-box {
    display: flex;
    gap: 2rem;
    align-items: center;
    background-color: rgba(31, 60, 136, 0.05);
    padding: 2rem;
    border-radius: var(--radius-md);
    margin: 3rem 0;
}

.verdict-score {
    flex: 0 0 auto;
    text-align: center;
}

.score-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color-1), var(--accent-color-2));
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 1;
}

.score-circle small {
    font-size: 1rem;
    opacity: 0.8;
}

.score-label {
    margin-top: 0.5rem;
}

.score-label .stars {
    color: var(--warning-color);
    font-size: 1rem;
}

.score-label span {
    display: block;
    font-size: 0.875rem;
    color: white;
}

.verdict-text {
    flex: 1;
}

.verdict-text p {
    margin-bottom: 1rem;
}

.verdict-text strong {
    color: var(--primary-color);
}

.review-cta {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
}

/* Sidebar Styles */
.sidebar {
    position: relative;
}

.sidebar-widget {
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

.sidebar-widget h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.specs {
    display: grid;
    gap: 0.75rem;
}

.spec {
    display: flex;
    justify-content: space-between;
}

.spec-label {
    font-weight: 500;
    color: var(--text-color);
}

.spec-value {
    color: var(--text-light);
    text-align: right;
}

.alternative {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.alternative h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.alternative h4 a {
    color: var(--text-color);
}

.alternative h4 a:hover {
    color: var(--primary-color);
}

.alternative p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.alt-rating {
    font-size: 0.875rem;
    color: var(--warning-color);
    font-weight: 600;
}

.ad-widget {
    padding: 0;
    overflow: hidden;
}

.ad-square {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--border-color);
    color: var(--text-lighter);
}

.guide {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.guide h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.guide h4 a {
    color: var(--text-color);
}

.guide h4 a:hover {
    color: var(--primary-color);
}

.guide p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

/* Comments Section */
.comments-section {
    background-color: var(--bg-light);
    padding: 3rem 0;
}

.comments-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.comment-form {
    background-color: var(--bg-color);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 3rem;
    box-shadow: var(--shadow-sm);
}

.comment-form h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

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

.comment-form input,
.comment-form select,
.comment-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background-color: var(--bg-light);
}

.comment-form textarea {
    min-height: 150px;
    resize: vertical;
}

.comments-list {
    display: grid;
    gap: 2rem;
}

.comment {
    background-color: var(--bg-color);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

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

.comment-author {
    font-weight: 600;
    color: var(--text-color);
}

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

.comment-rating {
    color: var(--warning-color);
    margin-left: auto;
}

.comment-text {
    line-height: 1.6;
}

.comment-text p {
    margin-bottom: 0;
}

/* Dark mode adjustments */
.dark-mode .review-hero {
    background-color: var(--bg-color);
}

.dark-mode .quick-facts {
    background-color: rgba(31, 60, 136, 0.1);
}

.dark-mode .feature-card,
.dark-mode .sidebar-widget,
.dark-mode .comment,
.dark-mode .comment-form {
    background-color: var(--bg-light);
}

.dark-mode .example-content {
    background-color: rgba(0, 0, 0, 0.2);
}

.dark-mode .performance-table th,
.dark-mode .pricing-table th {
    background-color: rgba(31, 60, 136, 0.1);
}

.dark-mode .performance-table tr:nth-child(even),
.dark-mode .pricing-table tr:nth-child(even) {
    background-color: rgba(31, 60, 136, 0.05);
}

.dark-mode .comment-form input,
.dark-mode .comment-form select,
.dark-mode .comment-form textarea {
    background-color: var(--bg-color);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .review-hero .container {
        flex-direction: column;
    }
    
    .hero-image {
        order: -1;
        max-width: 800px;
        margin: 0 auto;
    }
}

@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        order: -1;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .tool-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .tool-meta h1 {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .verdict-box {
        flex-direction: column;
        text-align: center;
    }
    
    .score-label span {
        color: var(--text-color);
    }
}

@media (max-width: 576px) {
    .quick-facts {
        grid-template-columns: 1fr;
    }
    
    .review-cta {
        flex-direction: column;
    }
    
    .comment-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .comment-rating {
        margin-left: 0;
    }
}

/* Guides Page Styles */
.guides-hero {
    background: linear-gradient(135deg, rgba(31, 60, 136, 0.9), rgba(123, 47, 247, 0.8)), 
                url('../images/guides-bg.jpg') center/cover no-repeat;
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.guides-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.guides-hero .subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 2rem;
}

.guides-section {
    padding: 5rem 0;
}

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

.guide-card {
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.guide-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.guide-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--accent-color-1);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
}

.guide-image {
    height: 220px;
    overflow: hidden;
}

.guide-card.featured .guide-image {
    height: auto;
}

.guide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.guide-content {
    padding: 1.5rem;
}

.guide-card.featured .guide-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.guide-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.guide-meta .category {
    color: var(--primary-color);
    font-weight: 500;
}

.guide-meta .level {
    padding: 0.15rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.guide-meta .level[data-level="beginner"] {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.guide-meta .level[data-level="intermediate"] {
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--warning-color);
}

.guide-meta .level[data-level="advanced"] {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--error-color);
}

.guide-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.guide-card.featured h3 {
    font-size: 1.75rem;
}

.guide-content h3 a {
    color: var(--text-color);
}

.guide-content h3 a:hover {
    color: var(--primary-color);
}

.excerpt {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.guide-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.stats .views {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.stats .views::before {
    content: '👁️';
}

/* Dark mode adjustments */
.dark-mode .guides-hero {
    background: linear-gradient(135deg, rgba(31, 60, 136, 0.9), rgba(123, 47, 247, 0.8)), 
                url('../images/guides-bg-dark.jpg') center/cover no-repeat;
}

.dark-mode .guide-card {
    background-color: var(--bg-color);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .guide-card.featured {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .guides-hero h1 {
        font-size: 2.5rem;
    }
    
    .guides-hero .subtitle {
        font-size: 1.2rem;
    }
    
    .guide-card.featured h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .guides-hero {
        padding: 4rem 0;
    }
    
    .guides-hero h1 {
        font-size: 2rem;
    }
    
    .guide-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .stats {
        width: 100%;
        justify-content: space-between;
    }
}


/* Guides Page Styles */
.guides-hero {
    background: linear-gradient(135deg, rgba(31, 60, 136, 0.9), rgba(123, 47, 247, 0.8)), 
                url('../images/guides-bg.jpg') center/cover no-repeat;
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.guides-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.guides-hero .subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 2rem;
}

.guides-section {
    padding: 5rem 0;
}

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

.guide-card {
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.guide-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.guide-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--accent-color-1);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
}

.guide-image {
    height: 220px;
    overflow: hidden;
}

.guide-card.featured .guide-image {
    height: auto;
}

.guide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.guide-content {
    padding: 1.5rem;
}

.guide-card.featured .guide-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.guide-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.guide-meta .category {
    color: var(--primary-color);
    font-weight: 500;
}

.guide-meta .level {
    padding: 0.15rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.guide-meta .level[data-level="beginner"] {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.guide-meta .level[data-level="intermediate"] {
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--warning-color);
}

.guide-meta .level[data-level="advanced"] {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--error-color);
}

.guide-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.guide-card.featured h3 {
    font-size: 1.75rem;
}

.guide-content h3 a {
    color: var(--text-color);
}

.guide-content h3 a:hover {
    color: var(--primary-color);
}

.excerpt {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.guide-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.stats .views {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.stats .views::before {
    content: '👁️';
}

/* Dark mode adjustments */
.dark-mode .guides-hero {
    background: linear-gradient(135deg, rgba(31, 60, 136, 0.9), rgba(123, 47, 247, 0.8)), 
                url('../images/guides-bg-dark.jpg') center/cover no-repeat;
}

.dark-mode .guide-card {
    background-color: var(--bg-color);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .guide-card.featured {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .guides-hero h1 {
        font-size: 2.5rem;
    }
    
    .guides-hero .subtitle {
        font-size: 1.2rem;
    }
    
    .guide-card.featured h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .guides-hero {
        padding: 4rem 0;
    }
    
    .guides-hero h1 {
        font-size: 2rem;
    }
    
    .guide-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .stats {
        width: 100%;
        justify-content: space-between;
    }
}


/* Guide Template Styles */
.guide-hero {
    background-color: var(--bg-light);
    padding: 3rem 0;
}

.guide-hero .container {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.guide-header {
    margin-bottom: 1.5rem;
}

.guide-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

.guide-meta .category {
    color: var(--primary-color);
    font-weight: 500;
}

.level {
    padding: 0.15rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.level.beginner {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.level.intermediate {
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--warning-color);
}

.level.advanced {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--error-color);
}

.meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.meta-row .author {
    font-weight: 500;
    color: var(--text-color);
}
.meta-row .date, .meta-row .views {
    color: black;
}

.guide-hero .subtitle {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.hero-image {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.03);
}

.toc-widget {
    background-color: rgba(31, 60, 136, 0.05);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
}

.toc-widget h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.toc-list {
    list-style: none;
    padding-left: 0;
}

.toc-list li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.25rem;
}

.toc-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.toc-list a {
    color: var(--text-color);
}

.toc-list a:hover {
    color: var(--primary-color);
}

.note {
    background-color: rgba(245, 158, 11, 0.1);
    border-left: 3px solid var(--warning-color);
    padding: 1rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 1.5rem 0;
}

.note p {
    margin-bottom: 0;
}

.checklist {
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin: 1rem 0;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.checklist-item input[type="checkbox"] {
    accent-color: var(--primary-color);
}

.format-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.format-card {
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.format-card h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.format-card p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.before-after h4 {
    font-size: 0.875rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.tip-card {
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.tip-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.tip-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.tip-card p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.prompt-examples {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0;
}

.prompt-card {
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 1rem;
    border-left: 3px solid var(--accent-color-1);
}

.prompt-content {
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.copy-prompt {
    width: 100%;
}

.video-embed {
    margin: 2rem 0;
    text-align: center;
}

.video-placeholder {
    position: relative;
    max-width: 800px;
    margin: 0 auto 1rem;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.video-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

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

.faq-guide {
    margin: 2rem 0;
}

.guide-cta {
    margin: 3rem 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--accent-color-1), var(--accent-color-2));
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    color: white;
}

.cta-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-box p {
    max-width: 600px;
    margin: 0 auto 1.5rem;
    opacity: 0.9;
}

.content-update {
    font-size: 0.875rem;
    color: var(--text-light);
    text-align: right;
    margin-top: 2rem;
}

.content-update a {
    color: var(--primary-color);
}

/* Sidebar Widgets */
.summary-card {
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-label {
    font-weight: 500;
    color: var(--text-color);
}

.summary-value {
    color: var(--text-light);
    text-align: right;
}

.downloads {
    display: grid;
    gap: 0.75rem;
}

.download-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background-color: var(--bg-light);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.download-item:hover {
    background-color: rgba(31, 60, 136, 0.1);
}

.download-icon {
    font-size: 1.25rem;
}

.download-text {
    font-size: 0.875rem;
    font-weight: 500;
}

.related-guides {
    display: grid;
    gap: 1rem;
}

.guide-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 0.75rem;
    background-color: var(--bg-light);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    
}

.guide-item:hover {
    background-color: rgba(31, 60, 136, 0.1);
}

.guide-item img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.guide-item h4 {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    color: var(--text-color);
}

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

/* Dark mode adjustments */
.dark-mode .guide-hero {
    background-color: var(--bg-color);
}

.dark-mode .toc-widget,
.dark-mode .format-card,
.dark-mode .tip-card,
.dark-mode .prompt-card,
.dark-mode .summary-card,
.dark-mode .download-item,
.dark-mode .guide-item {
    background-color: var(--bg-light);
}

.dark-mode .note {
    background-color: rgba(245, 158, 11, 0.2);
}

.dark-mode .checklist {
    background-color: var(--bg-color);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .guide-hero .container {
        flex-direction: column;
    }
    
    .hero-image {
        order: -1;
        max-width: 800px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .guide-header h1 {
        font-size: 2rem;
    }
    
    .before-after {
        grid-template-columns: 1fr;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        order: -1;
        margin-bottom: 3rem;
    }
}

@media (max-width: 576px) {
    .guide-meta,
    .meta-row {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .format-cards {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
    }
}

/* Students Page Styles */
.students-hero {
    background: linear-gradient(135deg, rgba(31, 60, 136, 0.9), rgba(123, 47, 247, 0.8)), 
                url('../images/students-bg.jpg') center/cover no-repeat;
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.students-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.students-hero .subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 2rem;
}

.search-box {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 0.5rem;
}

.search-box input {
    flex: 1;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.search-box .btn {
    border-radius: 50px;
    padding: 0.75rem 2rem;
}

.students-section {
    padding: 5rem 0;
}

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

.tool-card {
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.tool-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.tool-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--accent-color-1);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
}

.tool-image {
    border-radius: 0%;
    overflow: hidden;
}

.tool-card.featured .tool-image {
    height: 250px;     /* or larger if you want */
    width: 250px;
    aspect-ratio: unset; /* override previous square enforcement if necessary */
    max-width: none;     /* allow full size */
}



.tool-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}


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

.tool-content {
    padding: 1.5rem;
}

.tool-card.featured .tool-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tool-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.tool-meta .category {
    color: var(--primary-color);
    font-weight: 500;
}

.tool-meta .price {
    font-weight: 500;
}

.tool-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.tool-card.featured h3 {
    font-size: 1.5rem;
}

.tool-content h3 a {
    color: var(--text-color);
}

.tool-content h3 a:hover {
    color: var(--primary-color);
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.rating .stars {
    color: var(--warning-color);
    font-size: 1rem;
}

.rating .score {
    font-weight: 500;
    color: var(--text-color);
}

.excerpt {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.tool-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.75rem;
}

.feature {
    background-color: rgba(31, 60, 136, 0.1);
    color: var(--primary-color);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
}

.study-tips {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.study-tips h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tip-card {
    background-color: var(--bg-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.tip-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background-color: rgba(31, 60, 136, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tip-icon img {
    width: 50px;
    height: 50px;
    overflow: hidden;
}

.tip-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.tip-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.read-more {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
}

.read-more::after {
    content: '→';
    margin-left: 0.25rem;
    transition: var(--transition);
}

.read-more:hover::after {
    transform: translateX(3px);
}

.student-guides {
    padding: 5rem 0;
}

.guides-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--border-color);
}

.guides-carousel::-webkit-scrollbar {
    height: 6px;
}

.guides-carousel::-webkit-scrollbar-track {
    background: var(--border-color);
    border-radius: 10px;
}

.guides-carousel::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 10px;
}

.guide-item {
    display: flex;
    flex-direction: column; /* Stack image on top of content */
    min-width: 270px;
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%; /* Optional: Ensure consistent height */
}

.guide-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}



.guide-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}



.guide-content {
    padding: 1.5rem;
}

.level {
    display: inline-block;
    padding: 0.15rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.guide-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.guide-content h3 a {
    color: var(--text-color);
}

.guide-content h3 a:hover {
    color: var(--primary-color);
}

.guide-content p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.newsletter-section {
    padding: 0 0 5rem;
}

.newsletter-box {
    background: linear-gradient(135deg, var(--accent-color-1), var(--accent-color-2));
    border-radius: var(--radius-lg);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.newsletter-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: white;
}

.newsletter-content p {
    opacity: 0.9;
    max-width: 500px;
}

.newsletter-box .newsletter-form {
    display: flex;
    gap: 0.5rem;
    min-width: 400px;
}

.newsletter-box .newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    border: none;
    font-family: inherit;
}

.newsletter-box .btn-primary {
    background-color: white;
    color: var(--accent-color-1);
}

.newsletter-box .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Dark mode adjustments */
.dark-mode .students-hero {
    background: linear-gradient(135deg, rgba(31, 60, 136, 0.9), rgba(123, 47, 247, 0.8)), 
                url('../images/students-bg-dark.jpg') center/cover no-repeat;
}

.dark-mode .tool-card,
.dark-mode .guide-item {
    background-color: var(--bg-color);
}

.dark-mode .study-tips {
    background-color: var(--bg-color);
}

.dark-mode .tip-card {
    background-color: var(--bg-light);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .tool-card.featured {
        grid-template-columns: 1fr;
    }
    
    .newsletter-box {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .newsletter-box .newsletter-form {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .students-hero h1 {
        font-size: 2.5rem;
    }
    
    .students-hero .subtitle {
        font-size: 1.2rem;
    }
    
    .study-tips h2,
    .student-guides h2 {
        font-size: 1.75rem;
    }
    
    .newsletter-box {
        padding: 2rem;
    }
    
    .newsletter-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .students-hero {
        padding: 4rem 0;
    }
    
    .students-hero h1 {
        font-size: 2rem;
    }
    
    .search-box {
        flex-direction: column;
    }
    
    .search-box input,
    .search-box .btn {
        width: 100%;
    }
    
    .newsletter-box .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-box .btn-primary {
        width: 100%;
    }
}


/* Freelancers Page Styles */
.freelancers-hero {
    background: linear-gradient(135deg,rgba(31, 60, 136, 0.9), rgba(123, 47, 247, 0.8)), 
                url('../../images/freelancers-bg.jpg') center/cover no-repeat;
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.freelancers-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.freelancers-hero .subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 2rem;
}

.freelancers-section {
    padding: 5rem 0;
}

.freelancer-tips {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.freelancer-tips h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.freelancer-guides {
    padding: 5rem 0;
}

/* Dark mode adjustments */
.dark-mode .freelancers-hero {
    background: linear-gradient(135deg, rgba(136, 31, 62, 0.9), rgba(247, 47, 110, 0.8)), 
                url('../../images/freelancers-bg-dark.jpg') center/cover no-repeat;
}

.dark-mode .freelancer-tips {
    background-color: var(--bg-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .freelancers-hero h1 {
        font-size: 2.5rem;
    }
    
    .freelancers-hero .subtitle {
        font-size: 1.2rem;
    }
    
    .freelancer-tips h2,
    .freelancer-guides h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .freelancers-hero {
        padding: 4rem 0;
    }
    
    .freelancers-hero h1 {
        font-size: 2rem;
    }
}


/* Compare Page Styles */
.compare-hero {
    background: linear-gradient(135deg, rgba(31, 60, 136, 0.9), rgba(123, 47, 247, 0.8)), 
                url('../images/compare-bg.jpg') center/cover no-repeat;
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.compare-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.compare-hero .subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 2rem;
}

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

.comparison-card {
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.comparison-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.comparison-header h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

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

.comparison-tools {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.tool-item {
    text-align: center;
    flex: 1;
    
}

.tool-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 0.75rem;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--border-color);
}

.tool-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tool-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.tool-item img{
    display: flex;
    height: 30px;
    width: 30px;
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.25rem;
}

.rating .stars {
    color: var(--warning-color);
    font-size: 0.875rem;
}

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

.price {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-color);
}

.vs-circle {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.comparison-summary {
    margin-bottom: 1.5rem;
}

.comparison-summary p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.key-differences {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.difference-tag {
    background-color: rgba(31, 60, 136, 0.1);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.compare-categories {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.compare-categories h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    background-color: var(--bg-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.category-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background-color: rgba(31, 60, 136, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon img {
    width: 60px;
    height: 60px;
}

.category-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.category-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.count {
    font-size: 0.75rem;
    color: var(--primary-color);
    font-weight: 500;
}



/* Blog Template Enhancements */
/* Performance Benchmarks Styling */
.benchmark-chart {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.chart-container {
    margin-bottom: 1.5rem;
}

.chart-bar {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.bar-label {
    width: 180px;
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.bar-values {
    flex: 1;
    display: flex;
    height: 30px;
    background: var(--bg-light);
    border-radius: 6px;
    overflow: hidden;
}

.bar {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    transition: width 0.5s ease;
    position: relative;
}

.bar.chatgpt {
    background: linear-gradient(90deg, #74aa9c, #10a37f);
}

.bar.claude {
    background: linear-gradient(90deg, #b38cf7, #7b3fe4);
}

.bar.copilot {
    background: linear-gradient(90deg, #4facfe, #00f2fe); /* Sky blue to aqua */
}

.bar.cursor {
    background: linear-gradient(90deg, #ff9a9e, #fad0c4); /* Soft pink to peach */
}




.bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.15);
}

.chart-legend {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.legend-item {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 500;
}

.legend-item::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 3px;
    margin-right: 6px;
}

.legend-item.chatgpt::before {
    background: #10a37f;
}

.legend-item.claude::before {
    background: #7b3fe4;
}

/* Dark mode adjustments */
@media (prefers-color-scheme: dark) {
    .benchmark-chart {
        background: var(--dark-card-bg);
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }
    
    .bar-values {
        background: var(--dark-bg-light);
    }
    
    .bar {
        color: rgba(255,255,255,0.9);
    }
}

.stat-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-item {
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    display: block;
}

/* Trend Cards */
.trend-card {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.trend-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    min-width: 50px;
}

.trend-content h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.trend-example {
    background-color: rgba(0,0,0,0.05);
    border-left: 3px solid var(--primary-color);
    padding: 0.75rem 1rem;
    margin: 1rem 0;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.example-title {
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.trend-impact {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    font-size: 0.875rem;
    margin-top: 1rem;
}

.impact-label {
    color: var(--text-light);
}

.impact-value {
    font-weight: 500;
    margin-right: 1rem;
}

.impact-value.high {
    color: var(--error-color);
}

.impact-value.medium {
    color: var(--warning-color);
}

/* Application Cards */
.application-card {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.app-icon {
    font-size: 2rem;
    min-width: 50px;
    text-align: center;
}

.app-content h3 {
    margin-top: 0;
}

.app-example {
    background-color: var(--bg-color);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    margin: 0.75rem 0;
}

.app-stats {
    font-size: 0.875rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0 1.5rem;
}

/* Case Studies */
.case-study {
    margin-bottom: 3rem;
}

.case-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-top: 1rem;
}

.case-image {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: auto;
    display: block;
}

.case-details {
    font-size: 0.9375rem;
}

.case-details p {
    margin-bottom: 0.75rem;
}

/* Implementation Steps */
.implementation-steps {
    margin: 2rem 0;
}

.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.step-tip {
    background-color: var(--bg-color);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    margin-top: 0.75rem;
    font-size: 0.875rem;
}

/* Pitfall Cards */
.pitfall-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.pitfall-card {
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.pitfall-card h3 {
    color: var(--error-color);
    margin-top: 0;
}

/* Future Predictions */
.future-predictions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.prediction-card {
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border-top: 4px solid var(--primary-color);
}

.prediction-card h3 {
    margin-top: 0;
    color: var(--primary-color);
}

/* Prompt Box */
.prompt-box {
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid var(--accent-color-1);
}

.prompt-box h3 {
    margin-top: 0;
    color: var(--accent-color-1);
}

.prompt-example {
    background-color: var(--bg-color);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-top: 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.875rem;
}

/* Industry Impact */
.industry-impact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.industry-card {
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.industry-card h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.industry-card ul {
    padding-left: 1.25rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .case-content {
        grid-template-columns: 1fr;
    }
    
    .trend-card {
        flex-direction: column;
    }
    
    .application-card {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .stat-box {
        grid-template-columns: 1fr;
    }
}



.feature-comparison {
    margin: 2rem 0;
}

.feature-card {
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.feature-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 1rem 0;
}

@media (max-width: 768px) {
    .feature-details {
        grid-template-columns: 1fr;
    }
}

.tool-feature {
    padding: 1rem;
    border-radius: var(--radius-md);
}

.tool-feature.grammarly {
    background-color: rgba(55, 128, 246, 0.1);
    border-left: 3px solid #3780f6;
}

.tool-feature.prowritingaid {
    background-color: rgba(121, 82, 179, 0.1);
    border-left: 3px solid #7952b3;
}

.tool-feature h4 {
    margin-top: 0;
    color: var(--text-color);
}



.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px; /* match your original image size */
    height: 60px;
    border-radius: 50%;
    background-color: #f4f4f4; /* or your theme color */
}

.info-icon i {
    font-size: 28px; /* size of the icon */
    color: #1F3C88;  /* theme color */
}

.category-header {
    display: inline-flex;
    align-items: start;
    gap: 20px; /* space between icon and heading */
}

.category-icon {
    font-size: 2rem; /* adjust size as needed */
}

.tool-card.featured {
    display: block !important;
}
/* .tool-card.featured .tool-header {
    /* display: block !important; */
/* } */ 

