:root {
    --primary: #187635;
    --primary-light: #2a8c48;
    --primary-dark: #1D6A43;
    --accent: #4CAF50;
    --light: #f7f7f7;;
    --dark: #333333;
    --gray: #E0E0E0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: var(--dark);
    background-color: #FFFFFF;
}

.container {
    width: 93%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.logo img {
    height: 40px; /* Adjust height as needed */
    width: auto; /* Maintain aspect ratio */
    display: block;

}

/* Photo Section */
.hero-banner {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.banner-content {
    color: white;
    padding: 0 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.banner-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 0;
}

.banner-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 1rem;
    text-align: center;
}

.banner-content p {
    font-size: 1.5rem;
    max-width: 500px;
}

@media (max-width: 768px) {
    .banner-content h2 {
        font-size: 1.8rem;
    }

    .banner-content h1 {
        font-size: 2.5rem;
    }

    .banner-content p {
        font-size: 1.2rem;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    color: white;
    padding: 150px 0 100px;
    text-align: center;
    margin-top: 60px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
}

.btn {
    display: inline-block;
    background-color: #187635;
    color: white;
    text-decoration: none;
    padding: 12px 15px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 14px;
    margin-top: 20px;
    text-align: center;
}

.btn:hover {
    background-color: #2a8c48;
}

/* About Section */
.about {
    padding: 30px 0;
    background-color: white;
}

.about h3{
    text-align: center;
    padding-bottom: 5px;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark);
    display: inline-block;
}

.section-title h2:after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background-color: var(--primary);
    margin: 15px auto 0;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.about-text {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.about p {
    text-align: justify;
}


/* Testimonials Section */
.testimonials {
    padding: 30px 0;
    background-color: white;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    padding: 40px;
    background-color: var(--light);
    border-radius: 10px;
    margin: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
}

.testimonial-company {
    font-size: 0.9rem;
    color: var(--dark);
}

/* Contact Section */
.contact {
    padding: 30px 0;
    background-color: white;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-info h3 {
    margin-bottom: 20px;
    color: var(--primary);
}

.contact-info p {
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-details div {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-svg {
    width: 35px;
    height: 35px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

input, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--gray);
    border-radius: 5px;
    font-size: 1rem;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

.checkbox-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-consent input {
    width: auto;
    margin-top: 5px;
}

.checkbox-consent label {
    margin-bottom: 0;
    font-size: 0.9rem;
}
.submit-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.submit-btn:hover {
    background-color: var(--primary-light);
}

/* Адаптивність */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-info, .contact-form {
        width: 100%;
    }
}

@media (max-width: 700px) {
    .section-title h2 {
        font-size: 2rem;
    }

    .about-text {
        padding-right: 0;
    }

    .btn-about{
        margin: 13px 0;
    }


}
