:root {
    --primary-color: #4361ee;
    --primary-dark: #3a56d4;
    --secondary-color: #3f37c9;
    --accent-color: #4895ef;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
    --success-color: #4bb543;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --border-radius: 8px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    background-color: #f5f7ff;
}
h1{
    font-size: 2.8rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark-color);
}

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

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

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

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

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo img {
    height: 40px;
    width: 40px;
    margin-right: 0;
    background: #ffffff;
    border-radius: 100%;
    padding: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 26px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjAzKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: white;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 15px 0;
    background-color: var(--light-color);
    margin-bottom: 30px;
}

.breadcrumbs ol {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}

.breadcrumbs li {
    margin-right: 10px;
    display: flex;
    align-items: center;
}

.breadcrumbs li:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    color: var(--gray-color);
}

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

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

.breadcrumbs .current {
    color: var(--primary-color);
    font-weight: 500;
}

/* Main Content */
.main-content {
    padding: 40px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
}

.section-title h2 {
    font-size: 2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

/* Tool Card */
.tool-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    margin-bottom: 40px;
}

/* Upload Area */
.upload-area {
    border: 2px dashed var(--light-gray);
    border-radius: var(--border-radius);
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 30px;
    transition: var(--transition);
    background-color: #f9faff;
    cursor: pointer;
}

.upload-area:hover {
    border-color: var(--primary-color);
    background-color: #f1f5ff;
}

.upload-area.dragover {
    background-color: #e8f0ff;
    border-color: var(--primary-color);
}

.upload-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.upload-text {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 500;
}

.upload-subtext {
    color: var(--dark-color);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.file-input {
    display: none;
}

/* Buttons */
.btn {
    display: inline-block;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(67, 97, 238, 0.4);
    background: linear-gradient(to right, var(--primary-dark), var(--accent-color));
    color: white;
}

.btn:active {
    transform: translateY(0);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    box-shadow: none;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
}

.btn-success {
    background: linear-gradient(to right, var(--success-color), #3da836);
}

.btn-success:hover {
    background: linear-gradient(to right, #3da836, var(--success-color));
}

.btn-lg {
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* Controls */
.controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.control-group {
    background: var(--light-color);
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px solid var(--light-gray);
}

.control-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.control-group input,
.control-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background-color: white;
}

.control-group input:focus,
.control-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
}

.range-group {
    margin-bottom: 15px;
}

.range-input {
    width: 100%;
    margin: 15px 0;
    -webkit-appearance: none;
    height: 8px;
    border-radius: 4px;
    background: var(--light-gray);
    outline: none;
}

.range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

.range-input::-webkit-slider-thumb:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.range-value {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Preview Area */
.preview-area {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.preview-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--light-gray);
    transition: var(--transition);
}

.preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.preview-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.preview-card h3 i {
    margin-right: 10px;
}

.image-preview {
    width: 100%;
    max-height: 250px;
    object-fit: contain;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    border: 1px solid var(--light-gray);
    background-color: #f8f9fa;
}

.image-info {
    background: var(--light-color);
    padding: 15px;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-label {
    font-weight: 600;
    color: var(--dark-color);
}

.info-value {
    color: var(--primary-color);
    font-weight: 500;
}

/* Process Buttons */
.process-btn, .download-btn{
    width: 100%;
    margin-bottom: 15px;
}

/* Progress Bar */
.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--light-gray);
    border-radius: 4px;
    overflow: hidden;
    margin: 20px 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    width: 0%;
    transition: width 0.3s ease;
}

/* Utility Classes */
.hidden {
    display: none;
}

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

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: white;
    padding: 25px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.feature-title {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.feature-description {
    color: var(--gray-color);
    font-size: 0.95rem;
}

.seo-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 20px;
    padding: 80px 0 16px 0;
}

.seo-header h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.seo-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

.seo-intro {
    font-size: 1.1rem;
    color: var(--dark-color);
    line-height: 1.6;
}

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

.seo-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--light-gray);
    transition: var(--transition);
}

.seo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.seo-card-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.seo-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    text-align: center;
}

.seo-card p {
    color: var(--gray-color);
    margin-bottom: 15px;
    line-height: 1.6;
}

.seo-benefits {
    list-style: none;
    margin-top: 20px;
}

.seo-benefits li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: var(--dark-color);
}

.seo-benefits li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--success-color);
    font-size: 20px;
}

.seo-steps {
    list-style: none;
    counter-reset: step-counter;
}

.seo-steps li {
    margin-bottom: 20px;
    padding-left: 40px;
    position: relative;
    counter-increment: step-counter;
}

.seo-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
}

.seo-steps li strong {
    display: block;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.seo-steps li p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.format-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

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

.format-badge {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.format-badge.jpg {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.format-badge.png {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.format-badge.webp {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.format-item p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid var(--light-gray);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 15px 0;
    font-weight: 600;
    color: #4f565d;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
}

.faq-question i {
    transition: var(--transition);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px 0 0;
}

.faq-answer p {
    padding-bottom: 20px;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    width: 220px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    margin: 0;
    padding: 6px 15px;
}

.dropdown-menu a {
    display: block;
    padding: 8px 15px;
    color: var(--dark-color);
    font-size: 0.95rem;
    border-radius: 4px;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: var(--transition);
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

/* Mobile Menu Styles */
@media (max-width: 992px) {
    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease;
        opacity: 1;
        visibility: visible;
        background: transparent;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 10px 0 10px 20px;
    }
    
    .dropdown-toggle {
        justify-content: space-between;
    }
    
    .dropdown-menu li {
        padding: 5px 0;
    }
    
    .dropdown-menu a {
        padding: 8px 0;
    }
    
    .dropdown-menu a:hover {
        background: transparent;
    }
}

/* Mobile Menu Toggle */
@media (max-width: 992px) {
    nav ul {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        transition: var(--transition);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }
    
    nav ul.active {
        left: 0;
    }
    
    nav ul li {
        margin: 10px 0;
        width: 100%;
    }
    
    .dropdown-menu {
        border-left: 2px solid var(--light-gray);
    }
}

@media (max-width: 768px) {
    .seo-header h2 {
        font-size: 1.6rem;
    }
    
    .seo-card {
        padding: 25px;
    }
}

/* Call to Action */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin: 60px 0;
    border-radius: var(--border-radius);
}

.cta-section h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-container {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin-bottom: 40px;
    justify-content: space-between;
}

.footer-about {
    max-width: 300px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-about p {
    color: #adb5bd;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

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

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}


.footer-links h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #adb5bd;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

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

.footer-bottom p {
    color: #adb5bd;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-container {
        gap: 30px;
        display: flex;
        flex-direction: column;
    }
    
    .footer-about {
        max-width: 100%;
    }
}
/* Enhanced FAQ Styles */
.faq-card {
    grid-column: 1 / -1; /* Makes FAQ span full width */
}

.faq-item {
    margin-bottom: 10px;
    border-radius: var(--border-radius);
    background: #f9faff;
    transition: var(--transition);
}

.faq-item:hover {
    background: #f1f5ff;
}

.faq-question {
    width: 100%;
    padding: 18px 25px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark-color);
    text-align: left;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question i {
    transition: var(--transition);
    font-size: 0.9rem;
}

.faq-question.active {
    color: var(--primary-color);
}

.faq-question.active i {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 25px;
}

.faq-answer ul {
    margin-bottom: 15px;
}
.faq-answer p{
    margin-bottom: 0;
    padding-bottom: 0;
}
.faq-answer ul {
    padding-left: 20px;
    padding-top: 10px;
}

.faq-answer li {
    margin-bottom: 8px;
    position: relative;
    text-align: left;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.4rem;
    }
    
    .header-container {
        padding: 15px;
    }
    
    nav ul {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        transition: var(--transition);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    nav ul.active {
        left: 0;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 26px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 1.6rem;
    }
    
    .preview-area {
        grid-template-columns: 1fr;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .controls {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}
/* Benefits Section Styles */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.benefit-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    color: #4a6cf7;
    margin-bottom: 20px;
    text-align: center;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2d3748;
}

.benefit-features {
    margin-top: 15px;
    padding-left: 20px;
}

.benefit-features li {
    margin-bottom: 8px;
    position: relative;
    list-style-type: none;
}

.benefit-features li:before {
    content: "•";
    color: #4a6cf7;
    font-weight: bold;
    position: absolute;
    left: -20px;
}

/* Comparison Table Styles */
.comparison-section {
    margin: 60px 0 40px;
}

.comparison-section h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.comparison-table th, 
.comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #f1f1f1;
}

.comparison-table th {
    background-color: #4a6cf7;
    color: white;
    font-weight: 500;
}

.comparison-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.comparison-table i.fa-check-circle {
    color: #28a745;
}

.comparison-table i.fa-exclamation-triangle {
    color: #ffc107;
}

.comparison-table i.fa-dollar-sign,
.comparison-table i.fa-clock {
    color: #6c757d;
}

/* Use Cases Styles */
.use-cases {
    margin-top: 60px;
}

.use-cases h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.5rem;
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.use-case {
    text-align: center;
    padding: 25px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.use-case i {
    font-size: 2rem;
    color: #4a6cf7;
    margin-bottom: 15px;
}

.use-case h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2d3748;
}

.subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 1.1rem;
    margin-top: 10px;
    font-weight: 400;
}
