.contact-container {
    margin-top: 80px;
    background: linear-gradient(135deg, #fff9f2, #ffe6cc);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding-bottom: 40px;
    text-align: center;
}

.contact-container h1 {
    color: #ff9933;
    font-size: 2.5em;
    margin-bottom: 10px;
}

.contact-section {
    margin: 40px 20px;
}

.contact-section h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #333;
}

/* Two-Column Layout */
.contact-columns {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
    gap: 20px;
}

.column-left {
    width: 40%;
    text-align: left;
}

.column-right {
    width: 60%;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 1em;
    color: #333;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ff9933;
    border-radius: 5px;
    font-size: 0.95em;
    color: #333;
    outline: none;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background: #ff9933;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #e68a00;
}

/* Info Cards */
.info-card {
    padding: 20px;
    text-align: left;
    background: white;
    border-radius: 8px;
    margin-bottom: 20px;
}

.info-card h3 {
    color: #ff9933;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 0.95em;
    color: #555;
    margin: 5px 0;
}

.info-card a {
    color: #ff9933;
    text-decoration: none;
}

.info-card a:hover {
    text-decoration: underline;
}

/* Map */
.map-container {
    width: 100%;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-card {
    position: relative;
    padding-bottom: 40px;
    /* background: white; */
    border-radius: 8px;
    overflow: hidden;
}

.team-card img {
   width: 100%;
    height: 200px;
    object-fit: contain; /* prevent cropping */
    /* background-color: #f9f9f9; */
    border-radius: 8px 8px 0 0;
    padding: 10px;
}

.team-card:hover img {
    transform: scale(1.05);
}

.team-card h3 {
    font-size: 1.1em;
    color: #ff9933;
    margin: 10px 0 5px;
    padding: 0 10px;
}

.team-card p {
    font-size: 0.85em;
    color: #555;
    margin: 3px 0;
    padding: 0 10px;
}

.team-card .more-info {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    font-size: 0.85em;
    padding: 4px 8px;
    background: #ff9933;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.team-card .more-info:hover {
    background: #e68a00;
}

@media (max-width: 1024px) {
    .contact-columns {
        flex-direction: column;
    }
    .column-left, .column-right {
        width: 100%;
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-container h1 {
        font-size: 2em;
    }
    .contact-section h2 {
        font-size: 1.5em;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .form-group input,
    .form-group textarea {
        font-size: 0.9em;
    }
    .info-card {
        padding: 15px;
    }
    .team-card img {
        height: 120px;
    }
}



/* Modal Styling */
.modal {
  display: none;
  position: fixed;
  z-index: 1500;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px 30px;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.modal-content h2 {
  margin-top: 0;
  color: #ff9933;
}

.modal-content p {
  margin: 10px 0;
}

.modal-role {
  font-size: 1.2em;
  font-weight: bold;
  color: #333;
}

.close {
  float: right;
  font-size: 1.5em;
  font-weight: bold;
  cursor: pointer;
  color: #aaa;
}

.close:hover {
  color: #000;
}
