@import url('/assets/css/default.css');

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    margin: 0px;
    background-color: #F6F6F6;
}

.container1 {
    padding: 20px;
}

.project-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 40px;
    gap: 40px;
    align-items: center;
}

.map {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    margin: 10px;
    max-width: 50%;
}

.details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: flex-start;
}

.details h2 {
    color: #333;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.details p {
    color: #666;
    font-size: 1em;
    margin: 5px 0;
    width: 100%;
    border-bottom: 1px solid #B9C2CF;
    padding: 10px;
    font-size: 15px;
    line-height: 18px;
}


.details a {
    color: #1e90ff;
    text-decoration: none;
}

.button {
    background-color: #f1c40f;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 32px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    color: #30472A;
    font-size: 18px;
    line-height: 24px;
}


.button:hover {
    background-color: #d4ac0d;
}

.faq-container {
    max-width: 800px;

}

.faq-container h2 {
    text-align: center;
    color: #27ae60;
    margin-bottom: 20px;
}

.faq {
    margin-bottom: 20px;
}

.faq h3 {
    color: #333;
    font-size: 1.1em;
    margin-bottom: 5px;
}

.faq p {
    color: #c1c6d1;
    font-size: 1em;
    margin: 0;
}

@media (max-width: 800px) {

    .details,
    .faq-container {
        padding: 10px;
    }

    .details h2,
    .faq h3 {
        font-size: 1em;
    }

    .details p,
    .faq p {
        font-size: 0.9em;
    }
}




