body, html {
    margin: 0;
    padding: 0;
    font-family: 'Outfit', Arial, sans-serif;
}

/* Navbar - keeping it consistent with the about page */
.navbar {
    background-color: #000235;
    padding: 20px 0;
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar .navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;    
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.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;
    color: white;
    border-radius: 5px;
}

/* Hero Section - updating to match the about page style */
.hero {
    background-color: #f5f5f5;
    color: #000235;
    padding: 80px 20px;
}

.hero .section-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-content {
    width: 50%;
    padding-right: 40px;
}

.hero-content h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000235;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #333;
}

.hero-content .btn {
    background-color: #00aaff;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

.hero-content .btn:hover {
    background-color: #0088cc;
}

.hero .image {
    width: 50%;
}

.hero .image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Subscription Service Section - updating to match the about page style */
.subscription-service {
    background-color: #000235;
    color: white;
    padding: 80px 20px;
}

.subscription-service .section-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.subscription-service .content {
    width: 50%;
    padding-right: 40px;
}

.subscription-service .content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.subscription-service .content ul {
    list-style-type: none;
    padding-left: 0;
}

.subscription-service .content li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 18px;
}

.subscription-service .content li img {
    margin-right: 15px;
    width: 24px;
    height: auto;
}

.subscription-service .image {
    width: 50%;
}

.subscription-service .image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Service Options Section - updating to match the about page style */
.service-options {
    background-color: #f5f5f5;
    color: #000235;
    padding: 80px 20px;
    text-align: center;
}

.service-options .container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-options .intro-text {
    margin-bottom: 60px;
}

.service-options h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-options p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #333;
}

.option-container {
    display: flex;
    justify-content: space-around;
    gap: 30px;
}

.option {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.option:hover {
    transform: translateY(-5px);
}

.option img {
    width: 60px;
    height: auto;
    margin-bottom: 20px;
}

.option h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #000235;
}

.option p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/* Call to Action Section - updating to match the about page style */
.call-to-action {
    background-color: #000235;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.call-to-action .cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.call-to-action h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.call-to-action p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #b0b0b0;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary, .btn-secondary {
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.btn-primary {
    background-color: #00aaff;
    color: white;
    border: none;
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-primary:hover, .btn-secondary:hover {
    background-color: white;
    color: #000235;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero .section-container,
    .subscription-service .section-container,
    .option-container {
        flex-direction: column;
    }

    .hero-content,
    .subscription-service .content,
    .hero .image,
    .subscription-service .image,
    .option {
        width: 100%;
        padding-right: 0;
        margin-bottom: 30px;
    }

    .button-container {
        flex-direction: column;
        align-items: center;
    }
}

/* FAQ Section */
.faq {
    background-color: #000235; /* Dark blue background */
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.faq .container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.faq p {
    font-size: 18px;
    margin-bottom: 40px;
}

.faq-item {
    border-bottom: 1px solid #40407a;
    padding: 20px 0;
    cursor: pointer;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 24px;
    margin: 0;
}

.faq-answer {
    display: none;
    margin-top: 20px;
    font-size: 16px;
    text-align: left;
}

/* Toggle icon */
.toggle-icon {
    font-size: 24px;
    transition: transform 0.3s ease;
}

/* Active FAQ */
.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .toggle-icon {
    transform: rotate(180deg);
}

/* Contact Section */
.contact-section {
    background-color: #000235; /* Dark blue background */
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.contact-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-section h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.contact-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #b0b0b0; /* Light gray color */
}

.contact-btn {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
}
/* 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: 1240px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-column {
        width: 100%;
        margin-bottom: 30px;
    }

    .social-icons {
        justify-content: center;
    }
}