body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    color: #e4e0e0;
    background-color: #000;
    overflow-x: hidden;
}

header {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    transition: all 0.3s ease-in-out;
}

header .header-content {
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

header .logo {
    width: 100px;
    height: auto;
    margin-bottom: 10px;
}

section {
    padding: 100px 20px 50px;
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.5s ease-in-out;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

section#intro .intro-content {
    color: #f2f2f2;
}

section#intro img {
    max-width: 100%;
    max-width: 1200px;
    height: auto;
}

section#intro .tagline {
    margin: 20px 0 10px;
    font-size: 18px;
    color: #fff;
}

section#intro h2 {
    font-size: 24px;
    margin: 10px 0;
}

section#intro button {
    padding: 10px 20px;
    background-color: #fff;
    color: #000;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

section#intro button:hover {
    background-color: #ccc;
}

section#about {
    background-color: #1c1c1c;
    padding: 50px 0;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.about-content h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
}

.about-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 30px;
}

.about-section.reverse {
    flex-direction: row-reverse;
}

.about-section img {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 0 20px;
    flex: 1;
}

.about-section.reverse img {
    margin-right: 0;
    margin-left: 20px;
}

.about-section .about-text {
    flex: 2;
    margin: 20px;
}

.about-section .about-text h3 {
    color: #fff;
    margin-bottom: 10px;
}

.about-section .about-text p {
    margin: 0;
}

section#services {
    background-color: #1c1c1c;
    padding: 50px 0;
}

.services-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.services-content h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
}

.services-content p {
    margin-bottom: 20px;
}

.services-content button {
    padding: 10px 20px;
    background-color: #fff;
    color: #000;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.services-content button:hover {
    background-color: #ccc;
}

section#faq {
    background-color: #262626;
    padding: 50px 0;
}

.faq-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.faq-content h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
}

.faq-content p {
    text-align: left;
    margin-bottom: 30px;
}

.faq-item {
    margin-bottom: 15px;
}

.faq-item h3 {
    color: #fff;
    cursor: pointer;
    margin: 0;
    padding: 10px;
    background-color: #333;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item h3:hover {
    background-color: #444;
}

.faq-item .arrow {
    font-size: 0.8em; /* Smaller size for the arrow */
    color: #888; /* Grey color for the arrow */
    transition: transform 0.3s;
}

.faq-item.active .arrow {
    transform: rotate(180deg); /* Rotate the arrow when the answer is shown */
}

.faq-answer {
    display: none;
    padding: 10px;
    background-color: #444;
    border-radius: 5px;
}

section#contact {
    background-color: #1c1c1c;
    padding: 50px 0;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.contact-content img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.contact-content p {
    margin-bottom: 10px;
}

section#subscribe {
    background-color: #1c1c1c;
    padding: 50px 0;
}

.subscribe-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.subscribe-content h2 {
    margin-bottom: 20px;
}

.subscribe-content form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.subscribe-content label {
    margin-bottom: 10px;
    font-size: 18px;
}

.subscribe-content input {
    padding: 10px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 300px;
    font-size: 16px;
    border: 1px solid #fff;
    border-radius: 5px;
    background-color: #333;
    color: #fff;
}

.subscribe-content button {
    padding: 10px 20px;
    background-color: #fff;
    color: #000;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.subscribe-content button:hover {
    background-color: #ccc;
}

.subscribe-content p {
    margin-top: 20px;
    font-size: 14px;
    color: #fff;
}

section#question {
    background-color: #1c1c1c;
    padding: 50px 0;
}

.question-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.question-content h2 {
    margin-bottom: 20px;
}

.question-content form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.question-content label {
    margin-bottom: 10px;
    font-size: 18px;
}

.question-content textarea {
    padding: 10px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 300px;
    height: 100px;
    font-size: 16px;
    border: 1px solid #fff;
    border-radius: 5px;
    background-color: #333;
    color: #fff;
}

.question-content button {
    padding: 10px 20px;
    background-color: #fff;
    color: #000;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.question-content button:hover {
    background-color: #ccc;
}

footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 768px) {
    header .header-content {
        flex-direction: column;
    }

    .header-content img {
        width: 100%;
        margin: 0;
    }

    .intro-content img {
        width: 100%;
        margin: 0;
    }

    section {
        padding: 50px 20px;
    }

    .about-section {
        flex-direction: column;
    }

    .about-section img,
    .about-section .about-text {
        width: 100%;
        margin: 0;
    }

    .subscribe-content input,
    .question-content textarea {
        width: 100%;
        max-width: 100%;
    }
}
