/* Global Styles */
:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --text-color: #1f2937;
    --light-text: #6b7280;
    --background: #f3f4f6;
    --light-background: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --container-width: 1200px;
    --border-radius: 8px;
}

html[data-theme='dark'] {
    --primary-color: #60a5fa;
    --secondary-color: #3b82f6;
    --text-color: #f3f4f6;
    --light-text: #d1d5db;
    --background: #111827;
    --light-background: #1f2937;
    --border-color: #374151;
}

html, body {
    overflow-x: hidden;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button-emp {
    display: inline-block;
    padding: 1rem 2rem;
    margin-top: 1.7rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button-emp2 {
    display: inline-block;
    padding: 1rem 2rem;
    margin-top: 3.4rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: background-color 0.3s ease;
}

p2{
    color:#ffffff;
}

p2:hover {
    color: #ffffff;
    transition: 0.5s;
}

.cta-button:hover {
    background-color: #1F4C73;
    transition: 0.5s;
}

/* Navigation */
.navbar {
    background-color: var(--light-background);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 2.8em;
    width: auto;
    transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
    .logo img {
        max-height: 2.5em;
    }
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--background);
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }
}

/* Hero Section */
.hero {
    padding: 10rem 0 4rem;
    position: relative;
    width: 100%;
    margin: 0;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 10rem;
    flex-wrap: wrap;
    text-align: left;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (max-width: 1020px) {
    .hero .container {
        gap: 0;
    }
}

@media (max-width: 800px) {
    .hero .container {
    text-align: center;
    padding-top: 4em;
}
}

.hero-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    min-width: 150px;
    max-width: 250px;
}

.hero-image img {
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .hero {
        padding: 6rem 0 3rem;
    }

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

    h1 {
        font-size: 2.5rem;
    }
}

.hero-content {
    max-width: 600px;
}

.hero-image img {
    width: 140%;
    height: auto;
}

/* Banner Section */
.banner {
    padding: 2rem 0;
    background-color: var(--background);
}

.banner .container {
    width: 100%;
    padding: 0;
}

.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
}

.slide {
    display: none;
    width: 100%;
}

.slide.active {
    display: block;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
}

.fade {
    animation: fade 1.5s ease;
}

@keyframes fade {
    from {opacity: 0.4}
    to {opacity: 1}
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    padding: 8px;
    margin-top: -20px;
    color: var(--text-color);
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 50%;
    user-select: none;
    background-color: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: none;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.prev:hover, .next:hover {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dot.active, .dot:hover {
    background-color: white;
    display: block;
    border-radius: var(--border-radius);

}
    
@media (max-width: 768px) {
    .banner {
        padding: 1rem 0;
        margin-left: 1.5em;
        margin-right: 1.5em;
    }
}

@media (max-width: 1250px) {
    .banner {
        padding: 1rem 0;
        margin-left: 1.5em;
        margin-right: 1.5em;
    }
}

/* Grid Sections */
.use-cases,
.pain-points,
.why-us,
.benefits {
    padding: 5rem 0;
}

.use-cases-grid,
.pain-points-grid,
.why-us-grid,
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.use-case-card,
.pain-point-card,
.why-us-card,
.benefit-card {
    padding: 2rem;
    background-color: var(--light-background);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.use-case-card:hover,
.pain-point-card:hover,
.why-us-card:hover,
.benefit-card:hover {
    color: var(--primary-color);
}

.use-cases-grid p:hover {
    color: var(--background);
}

.use-case-card i,
.pain-point-card i,
.why-us-card i,
.benefit-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.benefit-card {
    background-color: var(--background);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.read-more-btn {
    margin-top: auto;
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.read-more-btn:hover {
    background-color: #1F4C73;
}

.preview-text {
    margin-bottom: 1rem;
}

.full-text {
    margin-bottom: 1rem;
    transition: opacity 0.3s ease, max-height 0.3s ease;
}

.full-text.hidden {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
}

.read-more-btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.read-more-btn:hover {
    background-color: #1F4C73;
}

.preview-text {
    margin-bottom: 1rem;
}

.full-text {
    margin-bottom: 1rem;
    transition: opacity 0.3s ease, max-height 0.3s ease;
}

.full-text.hidden {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
}

.read-more-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.read-more-btn:hover {
    background-color: #1F4C73;
}

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

.video-section {
    padding: 4rem 0;
    background-color: var(--background-color);
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Use Cases */
.use-cases {
    padding: 4rem 0;
    background-color: var(--background);
}

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

.use-case-card {
    background-color: var(--light-background);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: all 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
    background-color: var(--primary-color);
    
}

.use-case-card:hover h3,
.use-case-card:hover p {
    color: white;
}

.use-case-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.use-case-card:hover i {
    color: white;
}


/* How it Works */
.how-it-works {
    padding: 5rem 0;
    background-color: var(--light-background);
}

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

.step {
    text-align: center;
    position: relative;
}

/* Performance Chart Section */
.performance-chart {
    padding: 80px 0;
}

.performance-chart h2 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-color);
}

.performance-chart p {
    text-align: center;
    margin-bottom: 40px;
    color: var(--light-text);
}

.chart-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--light-background);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

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

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

.toggle-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--text-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.toggle-btn.active {
    background: var(--primary-color);
    color: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.pricing-grid.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.savings {
    color: var(--success-color);
    font-weight: 600;
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.pricing-year {
    font-weight: 600;
    font-size: 1.2rem;
}

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

.pricing-card {
    padding: 3rem 2rem;
    background-color: var(--light-background);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.pricing-logo {
    width: 6rem;
    height: 6rem;
    display: block;
    margin: 0 auto 1.5rem auto;
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
}

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

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

.price span {
    font-size: 1.2rem;
    color: var(--light-text);
}

.pricing-card ul {
    list-style: none;
    margin: 2rem 0;
    margin-left: 3.5rem;
    text-align: left;
}

@media (max-width: 1100px) {
    .pricing-card ul {
        margin-left: 4rem;
    }
}


.pricing-card li {
    margin: 1rem 0;
    color: var(--light-text);
}

.pricing-card li i {
    color: var(--success-color);
    margin-right: 0.5rem;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background-color: var(--light-background);
}

.testimonials-slider {
    margin-top: 3rem;
    overflow: hidden;
}

.testimonial-card {
    background-color: var(--background);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin: 1rem;
}

.testimonial .rating {
    color: #ffc107;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-info h3 {
    margin: 0;
    font-size: 1.1rem;
}

.author-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--light-text);
}

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

/* FAQ Section Styles */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.faq-item {
    background: var(--background);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

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

.faq-question:hover {
    background-color: var(--light-background);
}

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

.faq-question i {
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.6;
}

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

.faq-item.active .faq-answer {
    display: block;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    text-align: center;
    background: linear-gradient(to right, #5C7DE9, #17E9D9);
    color: white;
}

.cta-section h2,
.cta-section p {
    color: white;
}

.cta-section .cta-button {
    background-color: white;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

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

/* Footer */
.footer {
    background-color: var(--light-background);
    padding: 5rem 0 2rem;
}

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

.footer-col h3 {
    margin-bottom: 1.5rem;
}

.footer-col .logo img {
    height: 4em;
    margin-bottom: 1.5rem;
}

@media (max-width: 510px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-col ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

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

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

.footer-col a {
    text-decoration: none;
    color: var(--light-text);
    transition: color 0.3s ease;
}

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

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

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

.security-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.security-badges img {
    max-height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.security-badges img:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

/* Responsive Banner Section */
.responsive-banner {
    padding: 4rem 0;
    overflow: hidden;
}

.responsive-banner .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.banner-content {
    padding: 4rem 0;
}

.banner-content h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.banner-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Media Queries */
@media screen and (max-width: 800px) {
    .hero-image {
        display: none;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .responsive-banner .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .banner-content h2 {
        text-align: center;
    }

    .banner-image {
        order: -1;
    }
}

@media (max-width: 480px) {
    .responsive-banner {
        padding: 2rem 0;
    }

    .banner-content h2 {
        font-size: 2rem;
    }

    .banner-content p {
        font-size: 1rem;
    }
}

.rating i {
    font-size: 14px;
    color: #FFD700;
    margin-right: 2px;
}

.theme-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--background);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    opacity: 0;
}

.theme-toggle:hover {
    transform: scale(1.1);
    background-color: var(--secondary-color);
}

body {
    background-color: var(--background);
    color: var(--text-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

/* FAQ Section Styles */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.faq-item {
    background: var(--background);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

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

.faq-question:hover {
    background-color: var(--light-background);
}

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

.faq-question i {
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.6;
}

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

.faq-item.active .faq-answer {
    display: block;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    text-align: center;
    background: linear-gradient(to right, #5C7DE9, #17E9D9);
    color: white;
}

.cta-section h2,
.cta-section p {
    color: white;
}

.cta-section .cta-button {
    background-color: white;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

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

/* Footer */
.footer {
    background-color: var(--light-background);
    padding: 5rem 0 2rem;
}

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

.footer-col h3 {
    margin-bottom: 1.5rem;
}

.footer-col .logo img {
    height: 4em;
    margin-bottom: 1.5rem;
}

@media (max-width: 800px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-col ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

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

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

.footer-col a {
    text-decoration: none;
    color: var(--light-text);
    transition: color 0.3s ease;
}

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

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

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

.security-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.security-badges img {
    max-height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.security-badges img:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

/* Responsive Banner Section */
.responsive-banner {
    padding: 4rem 0;
    overflow: hidden;
}

.responsive-banner .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.banner-content {
    padding: 4rem 0;
}

.banner-content h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.banner-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Media Queries */
@media screen and (max-width: 800px) {
    .hero-image {
        display: none;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .responsive-banner .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .banner-content h2 {
        text-align: center;
    }

    .banner-image {
        order: -1;
    }
}

@media (max-width: 480px) {
    .responsive-banner {
        padding: 2rem 0;
    }

    .banner-content h2 {
        font-size: 2rem;
    }

    .banner-content p {
        font-size: 1rem;
    }
}

.rating i {
    font-size: 14px;
    color: #FFD700;
    margin-right: 2px;
}

::-webkit-scrollbar {
    width: 0;
    background: transparent;
}

* {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.theme-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--background);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    opacity: 0;
}

.theme-toggle:hover {
    transform: scale(1.1);
    background-color: var(--secondary-color);
}

body {
    background-color: var(--background);
    color: var(--text-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

/* FAQ Section Styles */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.faq-item {
    background: var(--background);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--light-background);
}

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

.faq-question i {
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.6;
}

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

.faq-item.active .faq-answer {
    display: block;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    text-align: center;
    background: linear-gradient(to right, #5C7DE9, #17E9D9);
    color: white;
}

.cta-section h2,
.cta-section p {
    color: white;
}

.cta-section .cta-button {
    background-color: white;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

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

/* Footer */
.footer {
    background-color: var(--light-background);
    padding: 5rem 0 2rem;
}

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

.footer-col h3 {
    margin-bottom: 1.5rem;
}

.footer-col .logo img {
    height: 4em;
    margin-bottom: 1.5rem;
}

@media (max-width: 800px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-col ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

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

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

.footer-col a {
    text-decoration: none;
    color: var(--light-text);
    transition: color 0.3s ease;
}

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

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

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

.security-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.security-badges img {
    max-height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.security-badges img:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

/* Responsive Banner Section */
.responsive-banner {
    padding: 4rem 0;
    overflow: hidden;
}

.responsive-banner .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.banner-content {
    padding: 4rem 0;
}

.banner-content h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.banner-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Media Queries */
@media screen and (max-width: 800px) {
    .hero-image {
        display: none;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .responsive-banner .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .banner-content h2 {
        text-align: center;
    }

    .banner-image {
        order: -1;
    }
}

@media (max-width: 480px) {
    .responsive-banner {
        padding: 2rem 0;
    }

    .banner-content h2 {
        font-size: 2rem;
    }

    .banner-content p {
        font-size: 1rem;
    }
}

.rating i {
    font-size: 14px;
    color: #FFD700;
    margin-right: 2px;
}

::-webkit-scrollbar {
    width: 0;
    background: transparent;
}

* {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.theme-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--background);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    opacity: 0;
}

.theme-toggle:hover {
    transform: scale(1.1);
    background-color: var(--secondary-color);
}

body {
    background-color: var(--background);
    color: var(--text-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

/* FAQ Section Styles */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.faq-item {
    background: var(--background);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--light-background);
}

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

.faq-question i {
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.6;
}

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

.faq-item.active .faq-answer {
    display: block;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    text-align: center;
    background: linear-gradient(to right, #5C7DE9, #17E9D9);
    color: white;
}

.cta-section h2,
.cta-section p {
    color: white;
}

.cta-section .cta-button {
    background-color: white;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

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

/* Footer */
.footer {
    background-color: var(--light-background);
    padding: 5rem 0 2rem;
}

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

.footer-col h3 {
    margin-bottom: 1.5rem;
}

.footer-col .logo img {
    height: 4em;
    margin-bottom: 1.5rem;
}

@media (max-width: 800px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-col ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

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

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

.footer-col a {
    text-decoration: none;
    color: var(--light-text);
    transition: color 0.3s ease;
}

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

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

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

.security-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.security-badges img {
    max-height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.security-badges img:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

/* Responsive Banner Section */
.responsive-banner {
    padding: 4rem 0;
    overflow: hidden;
}

.responsive-banner .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.banner-content {
    padding: 4rem 0;
}

.banner-content h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.banner-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Media Queries */
@media screen and (max-width: 800px) {
    .hero-image {
        display: none;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .responsive-banner .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .banner-content h2 {
        text-align: center;
    }

    .banner-image {
        order: -1;
    }
}

@media (max-width: 480px) {
    .responsive-banner {
        padding: 2rem 0;
    }

    .banner-content h2 {
        font-size: 2rem;
    }

    .banner-content p {
        font-size: 1rem;
    }
}

.rating i {
    font-size: 14px;
    color: #FFD700;
    margin-right: 2px;
}

::-webkit-scrollbar {
    width: 0;
    background: transparent;
}

* {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.theme-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--background);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    opacity: 0;
}

.theme-toggle:hover {
    transform: scale(1.1);
    background-color: var(--secondary-color);
}

body {
    background-color: var(--background);
    color: var(--text-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

/* FAQ Section Styles */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.faq-item {
    background: var(--background);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--light-background);
}

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

.faq-question i {
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.6;
}

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

.faq-item.active .faq-answer {
    display: block;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    text-align: center;
    background: linear-gradient(to right, #5C7DE9, #17E9D9);
    color: white;
}

.cta-section h2,
.cta-section p {
    color: white;
}

.cta-section .cta-button {
    background-color: white;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

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

/* Footer */
.footer {
    background-color: var(--light-background);
    padding: 5rem 0 2rem;
}

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

.footer-col h3 {
    margin-bottom: 1.5rem;
}

.footer-col .logo img {
    height: 4em;
    margin-bottom: 1.5rem;
}

@media (max-width: 800px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-col ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

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

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

.footer-col a {
    text-decoration: none;
    color: var(--light-text);
    transition: color 0.3s ease;
}

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

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

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

.security-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.security-badges img {
    max-height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.security-badges img:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

/* Responsive Banner Section */
.responsive-banner {
    padding: 4rem 0;
    overflow: hidden;
}

.responsive-banner .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.banner-content {
    padding: 4rem 0;
}

.banner-content h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.banner-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Media Queries */
@media screen and (max-width: 800px) {
    .hero-image {
        display: none;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .responsive-banner .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .banner-content h2 {
        text-align: center;
    }

    .banner-image {
        order: -1;
    }
}

@media (max-width: 480px) {
    .responsive-banner {
        padding: 2rem 0;
    }

    .banner-content h2 {
        font-size: 2rem;
    }

    .banner-content p {
        font-size: 1rem;
    }
}

.rating i {
    font-size: 14px;
    color: #FFD700;
    margin-right: 2px;
}

.theme-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--background);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    opacity: 0;
}

.theme-toggle:hover {
    transform: scale(1.1);
    background-color: var(--secondary-color);
}

body {
    background-color: var(--background);
    color: var(--text-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

/* FAQ Section Styles */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.faq-item {
    background: var(--background);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--light-background);
}

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

.faq-question i {
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.6;
}

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

.faq-item.active .faq-answer {
    display: block;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    text-align: center;
    background: linear-gradient(to right, #5C7DE9, #17E9D9);
    color: white;
}

.cta-section h2,
.cta-section p {
    color: white;
}

.cta-section .cta-button {
    background-color: white;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

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

/* Footer */
.footer {
    background-color: var(--light-background);
    padding: 5rem 0 2rem;
}

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

.footer-col h3 {
    margin-bottom: 1.5rem;
}

.footer-col .logo img {
    height: 4em;
    margin-bottom: 1.5rem;
}

@media (max-width: 800px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-col ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

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

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

.footer-col a {
    text-decoration: none;
    color: var(--light-text);
    transition: color 0.3s ease;
}

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

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

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

.security-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.security-badges img {
    max-height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.security-badges img:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

/* Responsive Banner Section */
.responsive-banner {
    padding: 4rem 0;
    overflow: hidden;
}

.responsive-banner .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.banner-content {
    padding: 4rem 0;
}

.banner-content h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.banner-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Media Queries */
@media screen and (max-width: 800px) {
    .hero-image {
        display: none;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .responsive-banner .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .banner-content h2 {
        text-align: center;
    }

    .banner-image {
        order: -1;
    }
}

@media (max-width: 480px) {
    .responsive-banner {
        padding: 2rem 0;
    }

    .banner-content h2 {
        font-size: 2rem;
    }

    .banner-content p {
        font-size: 1rem;
    }
}

.rating i {
    font-size: 14px;
    color: #FFD700;
    margin-right: 2px;
}

.theme-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--background);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    opacity: 0;
}

.theme-toggle:hover {
    transform: scale(1.1);
    background-color: var(--secondary-color);
}

body {
    background-color: var(--background);
    color: var(--text-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

/* FAQ Section Styles */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.faq-item {
    background: var(--background);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--light-background);
}

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

.faq-question i {
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.6;
}

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

.faq-item.active .faq-answer {
    display: block;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    text-align: center;
    background: linear-gradient(to right, #5C7DE9, #17E9D9);
    color: white;
}

.cta-section h2,
.cta-section p {
    color: white;
}

.cta-section .cta-button {
    background-color: white;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

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

/* Footer */
.footer {
    background-color: var(--light-background);
    padding: 5rem 0 2rem;
}

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

