body, html {
    margin: 0;
    padding: 0;
    font-family: 'Outfit', Arial, sans-serif;
}

/* Navbar */
.navbar {
    background-color: #000235; /* Dark blue background */
    padding: 20px 0;
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: add shadow for depth */
}

.navbar .navbar-container {    
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* Padding for responsiveness */
}

.logo a {
    font-size: 24px;
    font-weight: 600;
    color: white;
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    font-size: 18px;
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    transition: background-color 0.3s, color 0.3s;
}

.nav-links a:hover {
    background-color: #00aaff; /* Light blue background on hover */
    color: white;
    border-radius: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        align-items: center;
    }

    .nav-links li {
        margin: 10px 0;
    }
}

/* About Header */
.about-header {
    background-color: #f5f5f5; /* Light background color for contrast */
    padding: 60px 20px;
    text-align: center;
}

.about-header .container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-header h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000235; /* Dark blue text */
}

.about-header p {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 40px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
    border: none;
    background-color:  #00aaff;
    color: white;
}

.btn.primary {
    background-color: #000235; /* Dark blue background */
    color: white;
}

.btn.secondary {
    background-color: transparent;
    color: #000235; /* Dark blue text */
    border: 2px solid #000235; /* Dark blue border */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .buttons {
        flex-direction: column;
        gap: 10px;
    }
}

/* About Details */
.about-details {
    background-color: #ffffff; /* White background for contrast */
    padding: 60px 20px;
    display: flex;
    justify-content: center; /* Center the content horizontally */
    align-items: center; /* Center the content vertically */
    flex-direction: column; /* Stack items vertically */
    max-width: 1200px;
    margin: 0 auto;
    text-align: center; /* Center the text */
}

.details-content {
    width: 100%;
    max-width: 600px; /* Limit the width of the content */
    padding-bottom: 20px; /* Add padding at the bottom to space out the image */
}

.details-content h2 {
    font-size: 32px;
    color: #000235; /* Dark blue text */
    margin-bottom: 20px;
}

.details-content p {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
}

.details-image {
    width: 100%;
    max-width: 600px; /* Limit the width of the image */
    display: flex;
    justify-content: center; /* Center the image horizontally */
    align-items: center;
}

.details-image img {
    width: 100%;
    height: auto;
    border-radius: 10px; /* Optional: add rounded corners to the image */
}

.custom-bullet-list {
    list-style-type: none;
    padding-left: 0;
}

.custom-bullet-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.custom-bullet-list li img {
    width: 20px;  /* Adjust this value to match your bullet image size */
    height: 20px;  /* Adjust this value to match your bullet image size */
    margin-right: 10px;  /* Space between the bullet and the text */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-details {
        padding: 40px 20px; /* Adjust padding for smaller screens */
    }

    .details-content, .details-image {
        width: 100%;
    }

    .details-content {
        margin-bottom: 20px;
    }
}

/* Key Benefits Section */
.key-benefits {
    background-color: #f5f5f5;
    padding: 60px 20px;
    text-align: center;
}

.key-benefits .container {
    max-width: 1200px;
    margin: 0 auto;
}

.key-benefits h2 {
    font-size: 36px;
    color: #000235;
    margin-bottom: 40px;
}

.benefits {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit {
    flex-basis: calc(50% - 15px);
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.benefit h3 {
    font-size: 24px;
    color: #000235;
    margin-bottom: 15px;
}

.benefit p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

/* How It Works Section */
/* How It Works Section */
.how-it-works {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.how-it-works .container {
    max-width: 1200px;
    margin: 0 auto;
}

.how-it-works h2 {
    font-size: 36px;
    color: #000235;
    margin-bottom: 40px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px; /* Increased gap for more space between items */
    max-width: 900px; /* Limit the maximum width for better control */
    margin: 0 auto; /* Center the grid */
}

.step {
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    aspect-ratio: 16 / 9; /* Maintain a consistent aspect ratio */
}

.step h3 {
    font-size: 20px;
    color: #000235;
    margin-bottom: 15px;
}

.step p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    max-width: 80%; /* Limit text width for better readability */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .steps {
        grid-template-columns: 1fr;
        gap: 20px; /* Reduce gap on smaller screens */
    }
    
    .step {
        aspect-ratio: auto; /* Remove fixed aspect ratio on mobile */
        padding: 20px; /* Reduce padding on mobile */
    }
}
/* Use Case Section */
.use-case {
    background-color: #f5f5f5;
    padding: 60px 20px;
}

.use-case .container {
    max-width: 800px;
    margin: 0 auto;
}

.use-case h2 {
    font-size: 36px;
    color: #000235;
    margin-bottom: 20px;
    text-align: center;
}

.use-case p {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.use-case ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.use-case li {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* FAQ Section */
.faq {
    background-color: #ffffff;
    padding: 60px 20px;
}

.faq .container {
    max-width: 800px;
    margin: 0 auto;
}

.faq h2 {
    font-size: 36px;
    color: #000235;
    margin-bottom: 40px;
    text-align: center;
}

.faq-item {
    margin-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 20px;
}

.faq-item h3 {
    font-size: 24px;
    color: #000235;
    margin-bottom: 15px;
}

.faq-item p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    background-color: #000235; /* Dark blue background */
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.contact-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.contact-content {
    max-width: 600px;
    margin-bottom: 40px;
}

.contact-content h2 {
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 10px;
    color: #b0b0b0; /* Light gray color */
}

.contact-content h3 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.contact-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.contact-form {
    background-color: white;
    color: black;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    width: 100%;
    max-width: 600px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.contact-form .btn-primary {
    background-color: #000235;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    width: 100%;
}

/* Footer Styles */
.footer {
    background-color: #000235;
    color: white;
    padding: 40px 20px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

.footer-column h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.5;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #00aaff;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: white;
    color: #000235;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    font-size: 14px;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.social-icon:hover {
    background-color: #00aaff;
    color: white;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #40407a;
}

.footer-bottom p {
    font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .benefits, .steps {
        flex-direction: column;
    }

    .benefit, .step {
        flex-basis: 100%;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-column {
        width: 100%;
        margin-bottom: 30px;
    }

    .social-icons {
        justify-content: center;
    }

    .contact-section .container {
        width: 100%;
        padding: 0 10px;
    }

    .contact-form {
        padding: 15px;
    }
}
/* Footer Styles */
.footer {
    background-color: #000235;
    color: white;
    padding: 40px 20px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

.footer-column h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.5;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #00aaff;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: white;
    color: #000235;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    font-size: 14px;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.social-icon:hover {
    background-color: #00aaff;
    color: white;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #40407a;
}

.footer-bottom p {
    font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-column {
        width: 100%;
        margin-bottom: 30px;
    }

    .social-icons {
        justify-content: center;
    }
}
