.info {
    margin: 75px;
}

.info h1 {
    color: #843443;
    font-size: 27.5px;
    font-weight: 400;
}

.info p {
    color: #1a1a1a;
    font-size: 17.5px;
}





.team-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    font-family: system-ui, -apple-system, sans-serif;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-member {
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    background: #f4f4f4;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.member-role {
    color: #843443;
    font-weight: 500;
    margin-bottom: 16px;
}

.member-bio {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}


@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}





















.services-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    font-family: system-ui, -apple-system, sans-serif;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    padding: 32px;
    border-radius: 12px;
    background: #f8f8f8;
    transition: all 0.3s ease;
}

.service-card:hover {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-icon {
    color: #843443;
    margin-bottom: 20px;
}

.service-title {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 600;
}

.service-description {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 24px;
    }
}




























.contact-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.contact-container {
    display: grid;
    grid-template-columns: 45% 55%;
    /* Adjusted column proportions */
    gap: 40px;
    min-height: 600px;
    /* Added minimum height */
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-right: 20px;
    /* Added padding */
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
}

.form-group textarea {
    min-height: 150px;
    /* Increased textarea height */
    resize: vertical;
}

button {
    background: #1a1a1a;
    color: white;
    padding: 15px 250px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    align-self: flex-start;
    /* Button aligned left */
    transition: all 0.25s ease-in-out;
}

button:hover {
    background: #843443;
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 600px;
    /* Increased map height */
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding-right: 0;
    }

    .map-container {
        min-height: 400px;
    }
}