/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

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

h1, h2, h3 {
    color: #0056b3;
}

/* Hero Styles */
.hero {
    background-color: #0056b3;
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.hero-content {
    margin-bottom: 20px;
}

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

.hero p {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #ddd;
}

.demo-button {
    background-color: #ddd;
    color: #0056b3;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    display: inline-block;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    margin-left: 10px;
}

.demo-button:hover {
    background-color: #ccc;
}

/* Demo Section */
.demo {
    padding: 80px 20px;
    text-align: center;
}

.demo iframe {
    max-width: 100%;
}

/* Navbar Styles */
.navbar {
    background-color: #333;
    color: white;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.navbar-brand {
    font-size: 1.5em;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.navbar .container ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: flex-end; /* Align to right */
    margin: 0; /* Reset default ul margin */
}

.navbar .container ul li {
    margin: 0 15px;
}

.navbar .container ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.navbar .container ul li a:hover {
    color: #f9ca24;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5em;
    cursor: pointer;
}

/* Button Styles */
.cta-button {
    background-color: #f9ca24;
    color: #0056b3;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    display: inline-block;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #f0b71a;
}

/* Section Styles */
section {
    padding: 80px 20px;
}

section h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    color: #0056b3;
}

/* About Section */
.about {
    background-color: #fff;
}

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

.about-content {
    flex: 1;
    padding-right: 20px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 5px;
}

/* Services Section */
.services {
    background-color: #f9f9f9;
}

.services .container {
    /* Removed flex styles from here */
}

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

.service-item,
.pricing-plan {
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-item:hover,
.pricing-plan:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2em;
    margin-bottom: 15px;
    display: block;
}

.service-item ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
    text-align: left;
}

.service-item ul li {
    font-size: 0.9em;
    margin-bottom: 5px;
    color: #555;
}

/* Pricing Section */
.pricing {
    background-color: #fff;
}

.pricing-description {
    text-align: center;
    font-size: 1.2em;
    color: #555;
    margin-bottom: 30px;
}

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

.pricing-plan {
    text-align: center;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.pricing-plan h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #0056b3;
}

.pricing-plan .price {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 20px;
    color: #007bff;
}

.pricing-plan .plan-description {
    font-size: 1em;
    color: #777;
    margin-bottom: 20px;
}

.pricing-plan ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.pricing-plan li {
    margin-bottom: 10px;
    text-align: left;
}

.pricing-plan li b {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

/* Testimonials Section */
.testimonials {
    background-color: #f9f9f9;
    overflow: hidden;
    padding: 60px 20px;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial {
    flex-shrink: 0;
    width: 100%;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.testimonial img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.testimonial h3 {
    font-size: 1.3em;
    margin-bottom: 5px;
    color: #0056b3;
}

.testimonial h4 {
    font-size: 1em;
    font-weight: normal;
    margin-bottom: 10px;
    color: #555;
}

.testimonial p {
    font-style: italic;
    font-size: 1.2em; /* Increased font size */
    font-weight: 500; /* Make it bolder */
    color: #555;
    margin-bottom: 15px;
}

.testimonial .rating {
    font-size: 1.2em;
    color: #f9ca24;
}

/* FAQ Section */
.faq {
    background-color: #fff; /* Changed background color */
    padding: 60px 20px;
}

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

.faq-item {
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.faq-item h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #0056b3;
}

.faq-item p {
    font-size: 1.1em;
    color: #555;
}

/* Privacy Policy Section */
.privacy-policy {
    background-color: #f9f9f9; /* Light blue */
    padding: 60px 20px;
}

.privacy-policy h2 {
    color: #0056b3;
}

.privacy-policy p {
    color: #555;
    font-size: 1.1em;
    line-height: 1.7;
}

/* Terms of Service Section */
.terms-of-service {
    background-color: #fff; /* Mint green */
    padding: 60px 20px;
}

.terms-of-service h2 {
    color: #0056b3;
}

.terms-of-service p {
    color: #555;
    font-size: 1.1em;
    line-height: 1.7;
}

/* Contact Section */
.contact .container {
    text-align: center; /* Center-aligns the content */
}

.contact p {
    margin-bottom: 20px; /* Adds spacing below the paragraphs */
}

.contact a.cta-button {
    margin-top: 20px; /* Adds spacing above the button */
}

.contact textarea {
    height: 150px;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

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

.footer-links {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.9em;
}

.social-media {
    margin-top: 10px;
}

.social-media a {
    color: white;
    font-size: 1.5em;
    margin: 0 10px;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 60px 10px;
    }

    .hero h1 {
        font-size: 2.8em;
    }

    .hero p {
        font-size: 1.1em;
    }

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

    .navbar-brand {
        margin-bottom: 0;
    }

    .navbar .container ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0; /* Align to the right */
        background-color: #333;
        width: 100%;
        text-align: center;
    }

    .navbar .container ul.active {
        display: flex;
        flex-direction: column;
    }

    .navbar .container {
        position: relative;
    }

    .hamburger-menu {
        display: block;
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
    }

    .about .container {
        flex-direction: column;
        text-align: center;
    }

    .about-content {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .about-image img {
        margin: 0 auto;
    }

    .services .container {
        flex-direction: column;
    }

    .services-grid,
    .pricing-grid {
        grid-template-columns: 1fr; /* Single column for small screens */
    }

    .pricing-plan {
        width: 100%; /* Take full width */
        margin-bottom: 20px;
    }

    .pricing-table {
        flex-direction: column; /* Change back to column */
        align-items: center;
    }

    .pricing-plan {
        width: 90%; /* Adjust width for smaller screens */
        margin: 0 0 20px 0; /* Reset margins for column layout */
    }

    .pricing-table .pricing-plan:last-child {
        margin-right: 0; /* Keep this to ensure no extra margin on the last item */
    }

    .footer .container {
        align-items: center;
    }
}