* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background: #333;
    color: #fff;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* General nav styling */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo a {
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* Navigation links styling */
.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* Mobile Menu (Hidden on small screens) */
.menu-icon {
    display: none;
    cursor: pointer;
    flex-direction: column;
}

.menu-icon .bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 4px 0;
}

/* Responsive styles */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 60px;
        right: 0;
        height: 100vh;
        width: 100%;
        background-color: rgba(51, 51, 51, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        display: none;
    }

    .nav-links li {
        margin: 20px 0;
    }

    .menu-icon {
        display: flex;
    }

    .nav-links.active {
        display: flex;
    }
}


.hero-content {
    text-align: center;
    padding: 100px 20px;
    background: url('hero-image.jpg') no-repeat center center/cover;
    color: white;
}

.cta-button {
    background: #ff5733;
    color: #fff;
    padding: 10px 20px;
    border: none;
    text-decoration: none;
    font-size: 1.2em;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #c43c1c;
}

section {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}


h1, h2, h3 {
    margin-bottom: 15px;
    color: #333;
}

p {
    margin-bottom: 20px;
    color: #666;
    font-size: 1rem;
}

.content-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
     /*background-color: #fff;*/
    /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;*/
}

/* Styling for Images */
.content-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px 0;
    border-radius: 8px;
     /*box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
}

/* Responsive Styles */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .content-section {
        padding: 15px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    h3 {
        font-size: 1rem;
    }

    p {
        font-size: 0.9rem;
    }

    .content-section {
        padding: 10px;
    }
}




.faq-section {
    padding: 40px;
    background-color: #fff;
    max-width: 1400px;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.faq-section h2 {
   /* text-align: center;*/
    margin-bottom: 30px;
    font-size: 28px;
    color: #444;
}

.container {
    display: flex;
    flex-direction: column;
}

.faq {
    margin-bottom: 15px;
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
}

.question {
    cursor: pointer;
    padding: 15px;
    background-color: #e9ecef;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.question:hover {
    background-color: #d3d8e1;
}

.question h3 {
    font-size: 18px;
    color: #333;
    display: flex;
    justify-content: space-between;
}

.answer {
    display: none;
    padding: 10px 0;
}

.answer p {
    padding: 0 15px;
    font-size: 16px;
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 20px;
    }
    
    .faq-section h2 {
        font-size: 24px;
    }
    
    .question h3 {
        font-size: 16px;
    }

    .answer p {
        font-size: 14px;
    }
}




.cta-container {
    text-align: center;
    padding: 50px;
    background-color: #333;
    color: white;
}

h1 {
    font-size: 24px;
}

p {
    font-size: 16px;
    margin: 15px 0;
}

.cta-button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background-color: #45a049;
}



footer {
    background: #333;
    color: #ffffff;
    text-align: center;
    padding: 10px 0;
}

footer a {
    color: #ff5733;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}
