.main.contact-section {
    max-width: 650px;
    margin: 140px auto;
    padding: 30px;
    background: linear-gradient(to right, #f0fdfa, #ffffff);
    border-radius: 16px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
}

.main.contact-section h2 {
    font-size: 28px;
    font-weight: bold;
    color: #0f766e;
    margin-bottom: 15px;
}

.main.contact-section p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.main.contact-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main.contact-section ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    justify-content: flex-start;
    text-align: left;
}
.main.contact-section ul li a{
    text-decoration: none;
    color: #0f766e;
    font-weight: 600;
}

.main.contact-section ul li:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.main.contact-section ul li strong {
    color: #333;
    font-size: 15px;
    min-width: 80px;
    display: inline-block;
}

.main.contact-section ul li span {
    color: #0f766e;
    font-weight: 600;
    font-size: 15px;
}

.main.contact-section p:last-of-type {
    margin-top: 20px;
    font-style: italic;
    color: #444;
}


@media screen and  (max-width: 600px) {
    .main.contact-section {
        margin: 10px 0px;
        padding: 20px;
    }

    .main.contact-section h2 {
        font-size: 24px;
    }

    .main.contact-section ul li {
        flex-direction: column;
        align-items: flex-start;
    }

    .main.contact-section ul li strong,
    .main.contact-section ul li span {
        font-size: 14px;
    }
}       