/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Open Sans", "sans-serif";
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Header */
header {
    font-family: "Open Sans", "sans-serif";
    text-align: center;
    background: #fff;
    padding: 20px 10px;
}

header h1 {
    color: red;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-top: 10px;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

nav ul li a.active,
nav ul li a:hover {
    color: red;
    border-bottom: 2px solid red;
}

/* Main Section Styling */
main {
    padding: 50px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

main h2 {
    font-size: 2rem;
    color: red;
    margin-bottom: 20px;
}

main p {
    font-size: 1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 20px;
}

/* Standard Maintenance Section */
.standard-maintenance {
    margin-bottom: 40px;
}

.standard-maintenance h3 {
    font-size: 1.8rem;
    color: red;
    margin-bottom: 10px;
}

.standard-maintenance p {
    font-size: 1rem;
    color: #555;
    font-weight: bold;
    margin-bottom: 15px;
}

.standard-maintenance ul {
    list-style: none; /* Removes default bullet points */
    padding: 0; /* Removes padding around the list */
    max-width: 600px; /* Optional: Limits the width of the list */
    margin: 0 auto; /* Centers the list horizontally */
    text-align: center; /* Centers the text inside the list */
}

.standard-maintenance ul li {
    font-size: 1rem; /* Adjust the font size if needed */
    color: #555; /* Keeps the text color consistent */
    margin-bottom: 10px; /* Adds spacing between the list items */
}


.standard-maintenance ul li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
}

/* Custom Packages Section */
.custom-packages {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.custom-packages h3 {
    font-size: 1.8rem;
    color: red;
    margin-bottom: 10px;
}

.custom-packages p {
    font-size: 1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

/* Custom Package Steps Section */
.custom-package-steps {
    margin-top: 40px;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.custom-package-steps h3, 
.custom-package-steps h4 {
    color: red;
    margin-bottom: 15px;
}

.custom-package-steps p, 
.custom-package-steps ol {
    font-size: 1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 15px;
    text-align: left;
}

.custom-package-steps ol {
    list-style: decimal;
    padding-left: 20px;
}

/* Program Eligibility Section */
.program-eligibility {
    margin-top: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.program-eligibility h4 {
    color: red;
    margin-bottom: 10px;
}

.program-eligibility p,
.program-eligibility ol {
    font-size: 1rem;
    color: #555;
    text-align: left;
    max-width: 800px;
    margin: 0 auto 15px;
}

/* Monthly Expectations Section */
.monthly-expectations {
    margin-top: 30px;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.monthly-expectations h4 {
    color: red;
    margin-bottom: 15px;
}

.monthly-expectations p {
    font-size: 1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 15px;
    text-align: left;
}

/* Default Navigation (Desktop) */
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    display: inline-block;
    padding: 10px 15px;
}

nav ul li a {
    text-decoration: none;
    padding: 10px 15px;
    display: block;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    text-align: center;
    background-color: red;
    color: white;
    padding: 10px;
    cursor: pointer;
}

/* Mobile Dropdown */
.mobile-dropdown {
    display: none;
    flex-direction: column;
    background-color: #333;
}

.mobile-dropdown a {
    color: white;
    padding: 10px;
    text-decoration: none;
    display: block;
}

.mobile-dropdown a:hover {
    background-color: #555;
}

/* Responsive Design: Hide Desktop Menu on Mobile */
@media screen and (max-width: 768px) {
    nav ul {
        display: none; /* Hide desktop nav on mobile */
    }

    .mobile-nav {
        display: block; /* Show mobile menu button */
    }
}

.social-media {
    margin-top: 10px;
}

.social-media a {
    text-decoration: none;
    display: inline-block;
    /* margin: 0 10px; */
    transition: transform 0.3s ease;
}

.social-media a:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    color: #777;
    font-size: 0.9rem;
    border-top: 1px solid #ddd;
}
