/* Reset styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #f8f8f8;
    line-height: 1.6;
}

/* Header styling */
header {
    background-color: #2048a4;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

header .logo {
    display: flex;
    align-items: center;
}

header .logo img {
    width: 100px;
    height: auto;
    margin-right: 0.5rem;
}

header h1 {
    color: #2048a4; /* Dark blue */
    font-size: 1.5rem;
}

/* Navigation styling */
.nav-links {
    display: flex;
    gap: 1rem;
}

.nav-links ul {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.nav-links ul li a {
    text-decoration: none;
    color: #FFD200; 
    font-weight: bold;
    padding: 0.5rem;
    border-radius: 4px;
}

.nav-links ul li a:hover {
    color: #2048a4;
    background-color: #FFD200;
}

/* Hamburger menu button */
.hamburger {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: #FFD200;
    cursor: pointer;
}

/* Footer styling */
footer {
    background-color: #2048a4;
    color: white;
    text-align: center;
    padding: 1rem 0;
    font-size: 1rem;
}

footer p {
    margin: 0;
}

/* Main content styling */
main {
    padding: 2rem;
}

section {
    margin-bottom: 2rem;
}

section h2, section h3 {
    font-size: 1.8rem;
    color: #2048a4;
    border-bottom: 2px solid #FFD200;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

section p.justified-text {
    text-align: justify;
    font-size: 1rem;
    color: #555;
}

.bullet-list {
    list-style-type: disc;
    margin: 1rem 0 1rem 2rem;
}

.bullet-list li {
    margin-bottom: 0.5rem;
}

/* Image styling */
.section-image {
    text-align: center;
    margin: 1.5rem 0;
}

.section-image img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Quote styling */
blockquote {
    font-style: italic;
    color: #666;
    padding: 1rem;
    border-left: 5px solid #FFD200;
    margin: 1.5rem 0;
    background-color: #f2f2f2;
}

/* Responsive and Improved Mobile Menu */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 10px;
        background-color: #2048a4; /* Dark blue */
        width: 200px;
        padding: .5rem;
        line-height: 33px;
        border-radius: 5px;
        opacity: 0;
        transform: translateY(-20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-links.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

    .hamburger {
        display: block;
    }

    .nav-links ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav-links ul li a {
        color: #FFD200;
        background-color: #2048a4;
        padding: 0.7rem;
        text-align: center;
        border-radius: 4px;
    }

    .nav-links ul li a:hover {
        color: #2048a4;
        background-color: #FFD200;
    }
}


/* Terms & Conditions Page Custom Styles */
.terms-section {
    max-width: 800px;
    margin: auto;
    padding-top: 1rem;
}

.intro-text {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Terms Item Styling */
.terms-item {
    background-color: #ffffff;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid #FFD200;
    border-radius: 8px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}

.terms-item h3 {
    font-size: 1.3rem;
    color: #2048a4;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.terms-item .item-number {
    background-color: #FFD200;
    color: #2048a4;
    font-weight: bold;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 1.1rem;
}

.terms-item p {
    font-size: 1rem;
    color: #555;
    margin-top: 0.5rem;
    text-align: justify;
}
/* Privacy Policy Page Custom Styles */
.privacy-section {
    max-width: 800px;
    margin: auto;
    padding-top: 1rem;
}

.intro-text {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Privacy Item Styling */
.privacy-item {
    background-color: #ffffff;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid #FFD200;
    border-radius: 8px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}

.privacy-item h3 {
    font-size: 1.3rem;
    color: #2048a4;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.privacy-item .item-number {
    background-color: #FFD200;
    color: #2048a4;
    font-weight: bold;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 1.1rem;
}

.privacy-item p, .privacy-item ul {
    font-size: 1rem;
    color: #555;
    margin-top: 0.5rem;
    text-align: justify;
}

.bullet-list {
    list-style-type: disc;
    margin: 1rem 0 1rem 1.5rem;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #2048a4;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}
/* Refund Policy Page Custom Styles */
.refund-section {
    max-width: 800px;
    margin: auto;
    padding-top: 1rem;
}

.intro-text {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Refund Item Styling */
.refund-item {
    background-color: #ffffff;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid #FFD200;
    border-radius: 8px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}

.refund-item h3 {
    font-size: 1.3rem;
    color: #2048a4;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.refund-item .item-number {
    background-color: #FFD200;
    color: #2048a4;
    font-weight: bold;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 1.1rem;
}

.refund-item p, .refund-item ul {
    font-size: 1rem;
    color: #555;
    margin-top: 0.5rem;
    text-align: justify;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #2048a4;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}
/* About Us Page Custom Styles */
.about-section {
    max-width: 800px;
    margin: auto;
    padding-top: 1rem;
}

.intro-text {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* About Item Styling */
.about-item {
    background-color: #ffffff;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid #FFD200;
    border-radius: 8px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}

.about-item h3 {
    font-size: 1.3rem;
    color: #2048a4;
    margin-bottom: 0.5rem;
}

.about-item p, .about-item ul {
    font-size: 1rem;
    color: #555;
    margin-top: 0.5rem;
    text-align: justify;
}

/* Bullet List Styling */
.bullet-list {
    list-style-type: disc;
    margin: 1rem 0 1rem 1.5rem;
}

blockquote {
    font-style: italic;
    color: #666;
    padding: 1rem;
    border-left: 5px solid #FFD200;
    margin: 1.5rem 0;
    background-color: #f2f2f2;
    border-radius: 4px;
}
/* User Manual Page Custom Styles */
.manual-section {
    max-width: 800px;
    margin: auto;
    padding-top: 1rem;
}

.manual-item {
    background-color: #ffffff;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid #FFD200;
    border-radius: 8px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}

.manual-item h3 {
    font-size: 1.3rem;
    color: #2048a4;
    margin-bottom: 0.5rem;
}

.manual-item p, .manual-item ul {
    font-size: 1rem;
    color: #555;
    margin-top: 0.5rem;
    text-align: justify;
}

/* Bullet List Styling */
.bullet-list {
    list-style-type: disc;
    margin: 1rem 0 1rem 1.5rem;
}
/* Manual Image Styling */
.manual-image {
    text-align: center;
    margin: 1.5rem 0;
}

.manual-image img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}

.manual-image figcaption {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}
