/* Contact page specific styles */
#contents ul {
    padding: 0 2rem;
    margin: 1.5rem 0;
}

#contents ul li {
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.8);
    border-left: 4px solid #5591af;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

#contents ul li:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(85, 145, 175, 0.15);
}

/* Table styling for contact page */
#contents table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

#contents table th,
#contents table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

#contents table th {
    background: #5591af;
    color: #ffffff;
    font-weight: 600;
}

#contents table tr:hover {
    background: linear-gradient(135deg, #e8f4fd 0%, #f0f7ff 100%);
}

#contents table tr:last-child td {
    border-bottom: none;
}

