/* Reset basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body style */
body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #111;
    background-color: #f9f5ef;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    /* Replace 'hero.jpg' with your hero image file or URL */
    background: url('hero.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

/* Dark overlay for readability */
.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2; /* Above overlay */
}

.hero-content h1 {
    font-size: 3em;
    margin-bottom: 0.3em;
}

.hero-content p {
    font-size: 1.5em;
    margin-bottom: 1em;
}

.links a {
    display: inline-block;
    margin: 0.5em;
    padding: 0.5em 1.2em;
    color: white;
    background-color: rgba(0,0,0,0.5);
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.links a:hover {
    background-color: rgba(0,0,0,0.8);
}

/* FAQ Section */
.faq {
    position: relative;
    padding: 5% 10%;
    /* Replace 'faq.jpg' with your FAQ section background */
    background: url('faq.jpg') center/cover no-repeat;
    background-size: cover;
    color: white;
}

/* Optional overlay for FAQ readability */
.faq::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.4);
    z-index: 1;
}

.faq-item {
    position: relative;
    z-index: 2; /* Text above overlay */
    margin-bottom: 2em;
}

.faq-item h2 {
    font-size: 1.5em;
    margin-bottom: 0.5em;
}

/* Footer */
footer {
    text-align: center;
    padding: 2em;
    font-size: 0.9em;
    color: #555;
}

/* Responsive typography */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2em;
    }
    .hero-content p {
        font-size: 1.2em;
    }
    .faq {
        padding: 5% 5%;
    }
}