﻿.mems-section {
    padding: 60px 10%;
    background: linear-gradient(to right, #fffaf5, #f7ede2);
    text-align: center;
    /*font-family: "Georgia", serif;*/
}

/* Responsive Grid */
.mems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Author Card */
.mem-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

/* Author Image */
.mem-photo {
    width: 100%;
    height: 350px;
    object-position: top;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

/* Name */
.mem-add {
    font-size: 1.0rem;
    color: #5a2d0c;
    margin-top:5px;
    margin-bottom: 15px;
    text-align: center;
}

.mem-name {
    font-size: 1.4rem;
    color: #5a2d0c;
    margin-bottom: 15px;
    text-align: center;
}

.phone {
    font-size: 1.2rem;
    color: #5a2d0c;
    margin-bottom: 15px;
    text-align: center;
    text-decoration: none;
}

.helpline {
    font-size: 2.0rem;
    color: #5a2d0c;
    /*margin-bottom: 15px;*/
    text-align: center;
    text-decoration: none;
}

.contact-section {
    padding: 60px 5%;
}

.contact-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.contact-content {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.contact-option {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 16px;
}

    .contact-option h3 {
        margin-bottom: 10px;
        color: #333;
    }

.contact-link {
   /* color: #0066cc;*/
    color: rgb(240,100,33);
    font-weight: 600;
    text-decoration: none;
}

    .contact-link:hover {
        text-decoration: underline;
    }
