/* First contact section - Team information */
.contact-info-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 77px;
    font-family: Arial, sans-serif;
}

.contact-info-wrapper {
    display: flex;
    max-width: 1200px;
    width: 100%;
}

.contact-info-left {
    flex: 1;
    padding: 40px;
    text-align: center; /* Centers the text horizontally */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers content vertically */
    align-items: center; /* Centers content horizontally */
}

.contact-info-left h2 {
    font-size: 36px;
    font-weight: bold;
    color: #187635;
    text-align: center;
}

.contact-info-left h2 span {
    color: transparent;
    -webkit-text-stroke: 1px #187635;
}

.contact-info-left p {
    color: #555;
    font-size: 18px;
}

.contact-info-right {
    position: relative;
    background: url('../images/main-bg.png') center/cover no-repeat;
    background-size: 100% auto; /* Makes the image cover the width exactly */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: left;
    flex: 1;
    padding: 40px;
}

.contact-info-overlay {
    position: absolute;
    inset: 0;
}

.contact-info-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    max-width: 300px;
}

.contact-info-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.contact-info-content p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
}

/* Second contact section - Phone support */
.contact-phone-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    background: #f8f9fa;
    font-family: Arial, sans-serif;
}

.contact-phone-wrapper {
    max-width: 1200px;
    width: 100%;
    text-align: left;
}

.contact-phone-content h2 {
    font-size: 24px;
    color: #34495e;
    font-weight: bold;
}

.contact-phone-content h2 span {
    color: #000;
}

.phone-number {
    color: #187635;
    font-size: 18px;
    font-weight: bold;
}

.phone-number span {
    color: #187635;
}

.phone-description {
    color: #555;
    font-size: 16px;
    line-height: 1.5;
}

/* Contact form section */
.contact-form-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    background: #f7f7f7;;
    font-family: Arial, sans-serif;
}

.contact-form {
    max-width: 650px;
    width: 100%;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #555;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.checkbox-consent {
    display: flex;
    align-items: flex-start;
}

.checkbox-consent input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    margin-top: 3px;
}

.checkbox-consent label {
    display: inline;
    font-size: 14px;
    line-height: 1.4;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #187635;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #2a8c48;
}

@media (max-width: 1024px) {
    .contact-form {
        width: 90%;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .contact-info-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .contact-info-left, .contact-info-right {
        padding: 20px;
    }

    .contact-info-content {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .contact-form {
        width: 100%;
        padding: 20px;
    }

}