/* Custom Font */
body {
    font-family: 'Roboto', sans-serif;
    padding-top: 80px;
}

/* Mobile Navigation Menu */
#mobile-menu {
    position: absolute;
    top: 64px; /* Adjust based on header height */
    left: 0;
    background-color: #FF3930;
    width: 100%;
}

#mobile-menu ul {
    width: 100%;
}

#mobile-menu a {
    color: white;
    width: 100%;
    display: block;
}

/* Hero Section */
#hero {
    padding: 2rem 0;
}

#hero h1 {
    font-size: 2.25rem;
    line-height: 1.3;
}

#hero p {
    font-size: 1rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    #hero {
        padding: 4rem 0;
    }

    #hero h1 {
        font-size: 3rem;
    }

    #hero p {
        font-size: 1.25rem;
    }
}

/* Features Section */
#features .card {
    transition: transform 0.3s;
}

#features .card:hover {
    transform: translateY(-10px);
}

/* Video Player */
#player {
    width: 100%;
    height: 480px; /* Default height for video */
    max-width: 800px;
    margin: 0 auto;
    display: block;
    object-fit: cover;
}

/* Video Section Responsive Breakpoints */
@media (max-width: 1024px) {
    #player {
        height: 400px; /* Medium screen adjustment */
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    #player {
        height: 300px; /* Tablet/small screen adjustment */
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    #player {
        height: 200px; /* Mobile screen adjustment */
        max-width: 100%;
    }
}

/* Pricing Section */
#pricing .card {
    transition: transform 0.3s;
}

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

/* Mobile Padding */
@media (max-width: 768px) {
    body {
        padding: 80px 12px 0 12px;
    }
    #hero, #features, #video, #pricing {
        padding-left: 12px;
        padding-right: 12px;
    }
    /* Adjust pricing cards on mobile */
    #pricing .grid {
        grid-template-columns: 1fr !important;
    }
}

/* Buttons */
a.btn-primary {
    background-color: #1e3a8a;
    border-color: #1e3a8a;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    color: #fff;
    border-radius: 0.375rem;
    text-align: center;
}

a.btn-primary:hover {
    background-color: #3b82f6;
    border-color: #3b82f6;
}

/* Footer */
.footer {
    background-color: #f9fafb;
    padding: 2rem;
    text-align: center;
    font-size: 0.875rem;
}

.footer a {
    color: #1e3a8a;
    text-decoration: underline;
}

ul {
    padding-left: 1.5rem; /* Adjust this value for more or less indentation */
    list-style-type: disc; /* Ensures the default disc bullet points */
}

ul ul {
    padding-left: 1.5rem; /* Additional indentation for nested lists */
    list-style-type: circle; /* Optional: Different bullet style for nested lists */
}