@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: rgb(245, 237, 222);
}

li,
button {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: white;
    text-decoration: none;
}

a {
    color: black;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    padding: 30px 5%;
    background-color: rgb(245, 237, 222); /* #f5edde */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.logo {
    cursor: pointer;
}

.nav-links {
    list-style: none;
    display: flex;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.nav-links li {
    padding: 0 20px;
}

.nav-links li a {
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: grey;
}

/* CTA button in header */
header .cta {
    margin-left: auto;
}

.cta a:hover {
    color: #33010A;
}

button {
    margin-left: 20px;
    padding: 9px 25px;
    background-color: #fc4c69;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    width: 150px;
}

button:hover {
    background-color: #33010A;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* General Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

/* Hamburger Button */
.hamburger-button {
    display: none; 
    flex-direction: column;
    justify-content: space-between;
    width: 30px; 
    height: 21px; 
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
}

.hamburger-button .hamburger-line {
    width: 100%;
    height: 3px; 
    background-color: #333;
    margin: 0;
}

.hamburger-button:hover {
    background-color: rgb(245, 237, 222);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    background-color: #fff;
    display: none;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

/* Active state for the mobile menu */
.mobile-menu.active {
    position: fixed;
    top: 0;
    right: -1000px;
    width: 100%;
    height: 100%;
    z-index: 100;
    background-color: #fff;
    right: 0;
    display: block;
    -webkit-transition: right 0.3s ease-in-out;
    transition: right 0.3s ease-in-out;
}


/* Mobile Menu Header */
.mobile-menu-header {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 40px);
    background-color: white;
}

.mobile-menu .close-button {
    background: #fff;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #000000;
    flex-basis: min-content;
    font-weight: bold; /* Removes the focus outline */
}
.mobile-menu .close-button:hover,
.mobile-menu .close-button:focus {
    background: none;
    color: #333; /* Same as the normal state */
    border: none;
    outline: none;
    box-shadow: none;
}

/* Logo in Mobile Menu */
.menu-logo {
    width: 150px;
    background-color: #fff;
}

/* Style for Mobile Menu Links */
.mobile-menu ul {
    display: flex;
    flex-direction: column;
    background-color: white;
    align-items: left;
    list-style: none;
    padding: 0;
}

.mobile-menu ul li {
    margin: 15px 0;
    background-color: white;
}

.mobile-menu ul li a {
    text-decoration: none;
    color: #030303;
    font-size: 18px;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
    background-color: white;
}

.mobile-menu ul li a:hover {
    color: #f8c1ca; /* Change color on hover */
}

.mobile-menu .menu-buttons, .mobile-menu .menu-buttons a {
    background-color: white;
}

/* Mobile Menu */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .cta {
        display: none;
        flex-direction: column;
        gap: 10px;
        background-color: #f8c1ca;
        position: absolute;
        top: 80px;
        right: 20px;
        width: 200px;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease-in-out;
    }

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

    /* Hamburger Button */
    .hamburger-button {
        display: flex;
    }

    /* Mobile Menu */
    .mobile-menu {
        position: fixed;
        top: 0;
        right: -300px;
        width: 250px;
        height: 100%;
        z-index: 100;
        background: #f8c1ca;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
        -webkit-transition: right 0.3s ease-in-out;
        transition: right 0.3s ease-in-out;
    }

    .mobile-menu.active {
        right: 0;
    }

    .mobile-menu .menu-buttons {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .mobile-menu ul {
        margin-top: 100px;
        padding-right: 10px;
        list-style: none;
        padding: 20px;
        display: flex;
        flex-direction: column;
    }

    .mobile-menu ul li {
        margin: 15px 0;
    }

    .mobile-menu ul li a {
        text-decoration: none;
        color: #000000;
        font-size: 18px;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }


    .nav-links li a {
        padding: 10px 0;
    }
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 5%;
    background-color: rgb(245, 237, 222);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Logos section */
.hero .logos {
    display: grid;
    grid-template-columns: 0.3fr 0.3fr 0.3fr 0.3fr;
    justify-items: center;
    align-items: center;
    width: 100%;
    gap: 5px;
    margin: 60px 10px;
}

.hero .video-container video {
    margin-top: 20px;
    text-align: center;
}

/* Feature image */
.hero .feature-image {
    margin-top: 20px;
    max-width: 100%;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 2.5rem; /* Slightly smaller heading */
    }

    .hero .logos {
        gap: 50px; /* Reduce gap on medium screens */
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem; /* Smaller heading for smaller devices */
    }

    .hero .logos {
        gap: 30px; /* Further reduce gap */
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); /* 1-4 columns depending on space */
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem; /* Smallest heading for mobile */
        margin-bottom: 15px; /* Reduce bottom margin */
    }

    .hero .logos {
         gap: 20px; /*Reduce gap for very small screens */
        grid-template-columns: repeat(auto-fill, minmax(20%, 0.2fr)); /* More flexibility on mobile */
    }
}

/* Benefits Section */
.benefits {
    padding: 10px 5%;
    background-color: rgb(245, 237, 222);
    text-align: center;
}

.benefits .container {
    display: grid;
    gap: 20px;
    justify-items: center;
    width: 100%;
}

.benefits .benefit {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.benefits .benefit .benefit-img,
.benefits .benefit .benefit-img-1 {
    max-width: 50%;
    flex-basis: 50%;
    padding: 20px;
    box-sizing: border-box;
}

.benefits .benefit video {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.benefits .benefit .benefit-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-basis: 50%;
    padding: 70px;
    text-align: left;
}

.benefits .benefit .benefit-text h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.benefits .benefit .benefit-text p {
    font-size: 1.2rem;
}

/* Responsive Design for Tablets and Smaller Devices */
@media (max-width: 1024px) {
    .benefits .container .benefit {
        flex-direction: row;
    }

    .benefits .benefit .benefit-text {
        padding: 40px;
        font-size: 1rem;
    }

    .benefits .benefit .benefit-text h3 {
        font-size: 1.8rem;
    }

    .benefits .benefit .benefit-text p {
        font-size: 1.1rem;
    }
}

/* Mobile Design */
@media (max-width: 768px) {
    .benefits .container .benefit {
        flex-direction: row;
        text-align: center;
    }

    .benefits .benefit .benefit-img,
    .benefits .benefit .benefit-img-1,
    .benefits .benefit .benefit-text {
        max-width: 100%;
        flex-basis: 100%;
        padding: 20px 10px; /* Reduced padding for smaller screens */
    }

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

    .benefits .benefit .benefit-text h3 {
        font-size: 1.5rem;
    }

    .benefits .benefit .benefit-text p {
        font-size: 1rem;
    }

}

/* Mobile Design for very small devices (576px and below) */
@media (max-width: 576px) {
    .benefits .container .benefit {
        flex-direction: row;
        width: 100%;
    }

    .benefits .benefit .benefit-text {
        padding: 10px;
        font-size: 0.9rem;
    }

    .benefits .benefit .benefit-text h3 {
        font-size: 1.3rem;
    }

    .benefits .benefit .benefit-text p {
        font-size: 0.9rem;
    }

    .benefits .benefit img {
        border-width: 1px; /* Smaller border for images */
    }
}



/* Metrics Section */
.metrics {
    position: relative;
    padding: 20px 10%;
    background-color: #fc4c69;
    text-align: center;
}

.metrics svg {
    vertical-align: middle;
    margin-bottom: 0;
    width: 100%;
    position: absolute;
    left: 0;
}

.metrics .container {
    margin-top: 70px;
    margin-bottom: 50px;
    background-color: #FC4C69;
}

.metrics .metric-items {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    background-color: #FC4C69;
    position: relative;
}


.metrics .metric-item h3 {
    background-color: #FC4C69;
    font-size: 2.5rem;
    color: white;
    border: #fc4c69;
    border-style: solid;
}

.metrics .metric-item p {
    background-color: #FC4C69;
    color: white;
    border: #fc4c69;
    border-style: solid;
}

.metrics .container h2 {
    background-color: #FC4C69;
    margin-bottom: 40px;
    color: white;
    font-size: 2.5rem;
}


/* Responsive Design for Metrics Section */
@media (max-width: 768px) {
    .metrics .metric-items {
        flex-direction: column;
        align-items: center;
    }

    .metrics .metric-item {
        margin-bottom: 20px;
    }
}

/* Features Section */
.features {
    padding: 20px 10%;
    background-color: rgb(245, 237, 222);
    text-align: center;
    margin-bottom: 40px;
    margin-top: 120px;
    overflow: hidden;
    width: 100%;
}

.features .container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

.features .container .feature-items {
    display: flex;
    flex-direction: row; 
    margin-bottom: 50px;
    margin-left: 10px;
    margin-right: 10px;
    background-color: rgb(245, 237, 222);
    position: relative;
    z-index: 10;
    scrollbar-width: none;
    -ms-overflow-style: none;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}
.features .container .feature-items::-webkit-scrollbar {
    display: none;
}

.features .container h2 {
    font-size: 2.5rem;
    position: relative;
    z-index: 10;
    color: #333;
    margin-top: 70px;
    margin-bottom: 30px;
}

.features .container p {
    font-size: 1.2rem;
    color: #666;
    position: relative;
    z-index: 10;
    margin-bottom: 40px;
}

.features .feature-items .feature-item {
    display: flex;
    flex-direction: column;
    background-color: white;
    width: 260px;
    margin: 20px;
    padding: 10px;
    gap: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    -webkit-transition: -webkit-transform 0.3s ease, box-shadow 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features .feature-items .feature-item:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px); 
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); 
}

.feature-items .feature-item img {
    width: 100%;
    height: 170px;
    margin-bottom: 20px;
    background-color:#fff;
}

.feature-items .feature-item h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 10px;
    background-color:#fff;
}

.feature-items .feature-item p {
    color: #666;
    font-size: 0.9rem;
    background-color:#fff;
    margin-bottom: 10px;
}

.feature-item .feature-text {
    background-color:#fff;
}

/* Responsive Design */
@media (max-width: 1235px) {
    .features .container .feature-items {
        display: flex; 
        overflow-x: auto; 
        scroll-snap-type: x mandatory; 
        margin-top: 10px;
    }

    .features .container .feature-items .feature-item {
        min-width: 240px; 
        scroll-snap-align: start; 
        margin-right: 10px; 
    }

    .features .container .feature-items .feature-item:last-child {
        margin-right: 0; 
    }
}


/* Testimonial Section */
.testimonials {
    position: relative; /* Position relative to allow absolute positioning of children */
    margin-top: 100px;
    margin-bottom: 100px;
    width: 100%;
}

.testimonials .container {
    display: flex;
    flex-direction: column; /* Stack header and testimonial slider vertically */
    align-items: center; /* Center the content */
    width: 100%;
}

.testimonials .container h2 {
    margin-bottom: 40px;
    font-size: 2rem;
    text-align: center;
    width: 100%;
}

.testimonials .container .testimonial-slider {
    display: flex;
    flex-direction: row;
    gap: 20px;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    overflow-x: auto; /* Enable horizontal scrolling */
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory; /* Snap scrolling */
    -webkit-scroll-snap-type: x mandatory;
    width: 90%; /* Full width for the slider */
    padding: 0 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.testimonials .container .testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-item {
    scroll-snap-align: start; /* Snap to the start of each item */
    display: flex;
    background-color: #f9f9f9;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); 
    border-radius: 10px; 
    width: calc(50% - 20px); /* Adjust width to allow two items to show */
    box-sizing: border-box;
    flex: 0 0 calc(50% - 20px);
    margin-left: 10px;
    margin-right: 10px;
}

.testimonial-item .testimonial-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-item .testimonial-text p {
    background-color: #f9f9f9;
    
}

.testimonial-item .testimonial-text .author-details {
    display: flex;
    flex-direction: row;
    margin-top: 20px;
    background-color: #f9f9f9;
    width: 100%;
    padding: 5px;
    gap: 20px;
}

.testimonial-item .testimonial-text .author-details .author {
    background-color: #f9f9f9;
}

.testimonial-item .testimonial-text .author-details .testimonial-image img, 
.testimonial-item .testimonial-text .author-details span,
.testimonial-item .testimonial-text .author-details a,
.testimonial-item .testimonial-text .author-details strong,
.testimonial-item .testimonial-text {
    background-color: #f9f9f9;
}

.testimonial-item .testimonial-image {
    background-color: #f9f9f9;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

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

@media (max-width: 910px) {
    .testimonial-item .testimonial-image {
        width:40px;
        height: 40px;
    }

    .testimonial-item .testimonial-image img {
        width: 100%;
        height: 100%;
    }

    .testimonial-item .testimonial-text .author-details strong,
    .testimonial-item .testimonial-text .author-details span {
        font-size: 0.7rem;
    } 
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonial-item {
        width: 100%;
        flex: 0 0 calc(100% - 20px);
        height: 280px;
    }

    .testimonial-item .testimonial-text {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .testimonial-item .testimonial-text p {
        font-size: 0.8rem;
    }

    .testimonial-item .testimonial-text .author-details strong,
    .testimonial-item .testimonial-text .author-details span {
        font-size: 0.8rem;
    } 

    .testimonial-item .testimonial-text .author-details .author {
        font-size: 0.7rem;
        align-items: start;
    }

    .testimonial-item .testimonial-image img {
        width: 40px; /* Reduce image size */
        height: 40px;
        border-radius: 50%;
        margin-bottom: 10px;
    }

    .testimonial-image {
        margin-bottom: 10px;
    }
}


/* Call to Action (CTA) Section */
.cta1 {
    padding: 10px 0;
    background-color: #fc4c69;
    text-align: center;
    margin-bottom: 40px;
    color: white;
}

.cta1 .container {
    background-color: #fc4c69;
    margin-top: 100px;
    margin-bottom: 100px;
}

.cta1 h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    background-color: #fc4c69;
}

.cta1 .btn-primary {
    background-color: #ffffff;
    color: #fc4c69;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
    font-size: 1rem;
    display: inline-block;
    cursor: pointer;
    width: 200px;
}

.cta1 .btn-primary:hover {
    background-color: #33010A;
}

/* Footer */
.footer {
    background-color: rgb(245, 237, 222); 
    color: black; 
    text-align: center; 
    display: flex;
    flex-direction: column; 
    align-items: center; 
    margin-bottom: 20px;
    padding: 20px;
}

.footer-links {
    background-color: rgb(245, 237, 222);
    display: grid; 
    grid-template-columns: auto 1fr 1fr 1fr; /* Responsive grid */
    gap: 20px; 
    padding: 0 20px; 
    justify-items: center; 
    align-items: start; /* Align items to the start vertically */
    max-width: 1200px; /* Set a max width for the grid */
    width: 100%; /* Ensure the grid takes the full width of its container */
}

.footer-column img {
    background-color: rgb(245, 237, 222);
    width: 100px;
}

.footer-column h4 {
    background-color: rgb(245, 237, 222);
    margin-bottom: 20px; /* Space below the headings */
    font-size: 1.2em; /* Font size for headings */
}

.footer-column ul {
    list-style: none; /* This removes the bullet points */
    padding-left: 0; /* This removes any default left padding */
}

.footer-column ul li {
    margin: 5px 0;
}

.footer-column a {
    background-color: rgb(245, 237, 222);
    color: black; /* Footer link color */
    text-decoration: none;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #33010A; /* Hover color for links */
}

.footer p {
    background-color: rgb(245, 237, 222);
    margin-top: 50px;
    font-size: 0.8em; 
}

/* Footer Responsive Design */
@media (max-width: 768px) {
    .footer-links {
        grid-template-columns: 1fr; /* Stack columns on small screens */
    }

    .cta1 h2 {
        font-size: 1.5rem;
        padding: 0 40px;
    }

    .footer-column img {
        background-color: rgb(245, 237, 222);
        width: 200px;
    }
}




/* PRICING PAGE */

.toggle-container {
    display: flex;
    justify-content: center;
    margin: 1em 0;
}

.price-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
    max-width: 750px;
    height: 80px;
    margin: 0 auto 40px;
    background-color: #fc4c69;
    border-radius: 55px;
    padding: 5px;
}

.price-toggle::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    width: calc(33.333% - 3.33px);
    height: 70px;
    background-color: white;
    border-radius: 50px;
    transition: left 0.3s ease;
    z-index: 0;
}

.toggle-btn {
    color: #ffb3b9;
    background-color: transparent;
    border: none;
    font-weight: bold;
    font-size: 1.1em;
    width: 33.333%;
    text-align: center;
    position: relative;
    z-index: 1;
    cursor: pointer;
    padding: 20px 10px;
    transition: color 0.3s ease;
    outline: none;
}

.toggle-btn:hover,
.toggle-btn:focus {
    outline: none;
    background-color: transparent;
    transform: none;
    box-shadow: none;
}

.toggle-btn.active {
    color: black;
}

/* Slider positions for 3 buttons */
.price-toggle:has(.toggle-btn[data-plan="base"].active)::before {
    left: 5px;
}

.price-toggle:has(.toggle-btn[data-plan="logbook"].active)::before {
    left: calc(33.333% + 1.67px);
}

.price-toggle:has(.toggle-btn[data-plan="portal"].active)::before {
    left: calc(66.666% - 1.67px);
}

/* Pricing Card tick */
.pricing-card ul li {
    position: relative;
    padding-left: 25px;
}

.pricing-card ul li::before {
    content: '✔ ';
    color: #4CAF50; /* Customize tick color */
}

/* Pricing Section */
.pricing-section {
    text-align: center;
    padding: 40px 20px;
}

.pricing-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.pricing-section p {
    font-size: 1rem;
    margin-bottom: 40px;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    padding: 0 20px;
    margin-bottom: 60px;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.pricing-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.pricing-card li {
    color: #FC4C69;
}

.price {
    font-size: 2em;
    color: #333;
    margin: 10px 0;
}

.price span {
    font-size: 0.5em;
    color: #666;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.pricing-card ul li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

.pricing-card a {
    text-align: center;
}

.feature-comparison {
    margin-bottom: 60px;
    padding: 40px 20px;
    text-align: center;
}

.feature-comparison h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.feature-comparison table {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-collapse: collapse;
    background-color: #fafafa;
}

.feature-comparison td:first-child {
    text-align: left;
}

.feature-comparison th,
.feature-comparison td {
    padding: 15px;
}

.btn-primary {
    display: inline-block;
    background-color: #fc4c69;
    color: white;
    width: 100%;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
}

.btn-primary:hover {
    background-color: #33010A;
}

.faq-section {
    width: 80%;
    padding: 40px 20px;
    margin: auto auto 60px;
    font-family: Arial, sans-serif;
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1em;
}

.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-section button {
    display: flex;
    justify-content: space-between;
    align-items: start;
    text-align: left;
    margin: auto;
    padding: 1em;
    width: 100%;
    background: none;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    color: #333;
}

.faq-section button:hover {
    background-color: #f9f9f9;
    transform: none;
    box-shadow: none;
}

.faq-question span {
    background: none;
}

.faq-answer {
    display: none;
    text-align: left;
    padding: 1.2em 3em;
    font-size: 1rem;
    color: #555;
}

.icon {
    font-size: 1.2rem;
    color: #fc4c69;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
}

.faq-item.active .icon {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg); /* Change "+" to "–" when active */
    color: #33010A;
}

.companies-section {
    width: 80%;
    margin: auto auto 80px;
    padding: 40px 20px;
    text-align: center;
}

.companies-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.companies-section p {
    font-size: 1.1rem;
    width: 100%;
    margin-bottom: 40px;
}

.companies-section img {
    width: 150px;
    margin: 0 20px;
}


hr {
    border: none;
    border-top: 1px solid #ccc;
    margin: 20px 0;
}

/* Responsiveness */

@media (max-width: 1024px) {
    .pricing-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-section h2 {
        font-size: 1.8rem;
    }

    .pricing-section p {
        font-size: 1rem;
    }

    .pricing-card h3 {
        font-size: 1.3em;
    }

    .price {
        font-size: 1.6em;
    }

    .feature-comparison h2 {
        font-size: 1.8rem;
    }

    .feature-comparison table {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .pricing-section {
        padding: 20px;
    }

    .pricing-container {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .pricing-section h2,
    .feature-comparison h2 {
        font-size: 1.6rem;
    }

    .pricing-section p {
        font-size: 0.9rem;
    }

    .pricing-card h3 {
        font-size: 1.2em;
    }

    .price {
        font-size: 1.4em;
    }

    .feature-comparison table {
        font-size: 0.8rem;
    }

    .btn-primary {
        padding: 8px 16px;
    }
}

/* Toggle Button Responsiveness */
@media (max-width: 768px) {
    .price-toggle {
        max-width: 100%;
        height: 60px;
    }

    .price-toggle::before {
        height: 50px;
    }

    .toggle-btn {
        font-size: 0.85em;
        padding: 15px 5px;
    }
}

/* FAQ Section Responsiveness Fix */
@media (max-width: 768px) {
    .faq-section {
        padding: 20px;
    }

    .faq-section h2 {
        font-size: 1.8rem;
    }

    .faq-item {
        margin-bottom: 1em;
    }

    .faq-question span {
        font-size: 1.1rem;
    }

    .faq-section button {
        font-size: 1rem;
        padding: 1em;
    }

    .faq-answer {
        padding: 1em; 
        font-size: 1rem; 
    }

    .icon {
        font-size: 1.2rem; 
    }
}

@media (max-width: 480px) {
    .price-toggle {
        height: 50px;
        max-width: 100%;
    }

    .price-toggle::before {
        height: 40px;
    }

    .toggle-btn {
        font-size: 0.7em;
        padding: 12px 3px;
    }

    /* FAQ Section fixes for smaller screens */
    .faq-section {
        padding: 20px;
    }

    .faq-section h2 {
        font-size: 1.6rem;
    }

    .faq-item {
        margin-bottom: 1em;
    }

    .faq-question span {
        font-size: 1rem;
    }

    .faq-answer {
        padding: 1em;
        font-size: 1rem;
    }

    .icon {
        font-size: 1.1rem;
    }
}

