.section-title-block {
    border-bottom: 1px solid #e9e9e9;
    background: #f8f9f9;
    padding: 20px 0;
}

.title-wrapper {
    margin: 0 6%;
}

.main-heading {
    font-size: 35px;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.3;
    word-break: break-word;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .main-heading {
        font-size: 24px;
        padding: 0 10px;
    }
}

.responsive-banner-section {
    padding: 40px 0;
}

.responsive-banner-container {
    margin: 0 6%;
}

.responsive-banner-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.responsive-banner-image img {
    width: 100%;
    height: auto;
    display: block;
    border: none;
    max-width: 100%;
    object-fit: cover;
}

/* Responsive behavior */
@media (max-width: 768px) {
    .responsive-banner-container {
        padding: 0 10px;
    }

    .responsive-banner-wrapper {
        flex-direction: column;
    }
}

.project-highlight-container {
    margin: 0 6%;
}

.project-heading-block {
    margin-bottom: 10px;
}

.project-heading-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.project-heading-line {
    display: block;
    width: 60px;
    height: 2px;
    background-color: #006605;
    margin: 0 0;
}

.project-description-text {
    font-size: 16px;
    line-height: 1.6;
    font-family: Garamond, 'Times New Roman', serif;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .project-heading-title {
        font-size: 1.5rem;
    }

    .project-description-text {
        font-size: 0.95rem;
    }

    .project-highlight-container {
        padding: 0 15px;
    }
}

.location-section {
    padding: 40px 0;
    margin: 0 6%;
}

.location-header {
    margin-bottom: 30px;
}

.location-heading {
    font-size: 20px;
    color: #333;
}

.location-line {
    display: block;
    width: 50px;
    height: 2px;
    background-color: #006605;
    margin: 10px 0 0;
}

.location-body {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.location-map,
.location-accordion {
    flex: 1 1 45%;
}

.location-map-img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Accordion Styles */
.accordion-item {
    border-radius: 4px;
    margin-bottom: 10px;
    overflow: hidden;
    background-color: #6DAB3C;
    transition: background-color 0.3s ease;
}

.accordion-item.active {
    background-color: #f0f0f0;
}

.accordion-header {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
    gap: 10px;
    color: #fff;
    transition: color 0.3s ease;
}

.accordion-header span {
    color: white;
}

.accordion-item.active .accordion-header span {
    color: #000;
}

.accordion-icon {
    font-size: 18px;
    font-weight: bold;
    min-width: 20px;
}

.accordion-section-icon {
    font-size: 16px;
    transition: color 0.3s ease;
}

.accordion-title {
    flex: 1;
    text-align: left;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-body {
    max-height: 500px;
    padding: 10px 15px 15px;
}

.accordion-body ul {
    margin: 0;
    padding-left: 18px;
    list-style: disc;
}

.accordion-body li {
    padding: 4px 0;
    font-family: Garamond, 'Times New Roman', serif;
}

/* Responsive */
@media (max-width: 768px) {
    .location-body {
        flex-direction: column;
    }

    .location-map,
    .location-accordion {
        flex: 1 1 100%;
    }

    .location-heading {
        font-size: 1.6rem;
    }
}

.vklal-info-section {
    padding: 40px 0;
    padding-top: unset;
}

.vklal-info-wrapper {
    margin: 0 6%;
}

.vklal-info-heading h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.vklal-heading-line {
    display: block;
    width: 50px;
    height: 2px;
    background-color: #006605;
    margin: 0 0 10px 0;
}

.vklal-info-text p {
    font-size: 16px;
    line-height: 1.7;
    font-family: Garamond, 'Times New Roman', serif;
}

/* Responsive */
@media (max-width: 768px) {
    .vklal-info-heading h2 {
        font-size: 22px;
    }

    .vklal-info-text p {
        font-size: 15px;
        text-align: justify;
    }
}

.gallery-section {
    padding: 40px 0;
    margin: 0 6%;
    padding-top: unset;
}

.gallery-header {
    margin-bottom: 20px;
}

.gallery-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.gallery-line {
    width: 50px;
    height: 2px;
    background-color: #006605;
    margin: 10px 0 0;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.gallery-item {
    width: calc(33.333% - 10px);
    display: block;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 6px;
}

/* Responsive for tablets and below */
@media (max-width: 1024px) {
    .gallery-item {
        width: 48%;
    }
}

@media (max-width: 600px) {
    .gallery-item {
        width: 100%;
    }

    .gallery-title {
        font-size: 22px;
    }
}

.map-form-section {
    padding: 40px 0;
    padding-top: unset;
}

.map-form-row {
    margin: 0 6%;
}

.form-container {
    margin-top: 5%;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border-radius: 8px;
}

.custom-contact-form input,
.custom-contact-form button {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 2px;
    border: 1px solid #ccc;
    font-size: 16px;
    font-family: Garamond, 'Times New Roman', serif;
}

.custom-contact-form select {
    width: 40%;
    padding: 12px 15px;
    margin-bottom: 2px;
    border: 1px solid #ccc;
    font-size: 16px;
    font-family: Garamond, 'Times New Roman', serif;
}

.form-container label {
    font-family: Garamond, 'Times New Roman', serif;
}

.custom-contact-form button {
    margin-top: 10px;
    width: 30%;
    background-color: #006605;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.custom-contact-form button:hover {
    background-color: #006605de;
}

@media screen and (min-width: 768px) {
    .form-container {
        margin-top: 8%;
    }
}

.gallery-overlay-vkl {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.gallery-overlay-vkl img {
    max-width: 90%;
    max-height: 80%;
    margin-bottom: 20px;
    border-radius: 4px;
}

.gallery-close-vkl {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 35px;
    color: white;
    cursor: pointer;
    z-index: 10001;
}

.gallery-arrow-vkl {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: white;
    cursor: pointer;
    padding: 10px;
    user-select: none;
}

.gallery-prev-vkl {
    left: 20px;
}

.gallery-next-vkl {
    right: 20px;
}