/* Body Background */
body {
    background-color: #E5E5E5;
}

/* Contact Banner Section */
.contact-banner {
    position: relative;
    overflow: hidden;
    height: 450px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.contact-banner-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.contact-banner-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.contact-banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 450px;
    padding-bottom: 30px;
}

.contact-banner-title-wrapper {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    padding-left:1100px;
}

.contact-banner-title {
    font-size: 32px;
    color: #4caf50;
    font-weight: 600;
    margin: 0;
    line-height: 1;
    text-align: right;
   /*margin-left: 1100px;*/
}

/* Contact Section */
.contact-section {
    background-color: #E5E5E5;
    padding: 60px 0;
}

.contact-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.contact-right {
    width: 100%;
}

/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.contact-card {
    background-color: #f5f5f5;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 15px;
}

.contact-icon {
    font-size: 32px;
    color: #4caf50;
    filter: drop-shadow(0 0 1px #4caf50);
    flex-shrink: 0;
}

.contact-card-content {
    width: 100%;
}

.contact-card-title {
    font-size: 18px;
    color: #333;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.contact-card-text {
    font-size: 14px;
    color: #333;
    margin: 6px 0;
    line-height: 1.6;
}

.contact-card-text a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-card-text a:hover {
    color: #4caf50;
}

.contact-card-text strong {
    color: #333;
    font-weight: 700;
}

/* Contact Form */
.contact-form-section {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-form-section .form-title {
    font-size: 24px;
    color: #333;
    font-weight: 600;
    margin: 0 0 16px 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4caf50;
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.submit-btn {
    background-color: #4caf50;
    color: #fff;
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-end;
    width: auto;
}

.submit-btn:hover {
    background-color: #45a049;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-content {
        flex-direction: column;
    }
    
    .contact-left {
        justify-content: flex-start;
        padding-right: 0;
    }
    
    .contact-title {
        font-size: 56px;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 42px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .submit-btn {
        width: 100%;
    }
}
