/* Contact Section */
.contact-section {
    margin: auto;
    padding: 60px;
    background-color: #F5F5DC; /* Beige gray */
    text-align: center;
    font-family: "IBM Plex Sans", serif;
}

/* Subheading Styling */
.subheading {
    font-size: 14px;
    letter-spacing: 2px;
    padding-top: 90px;
    color: #777; /* Muted gray */
}

/* Main Heading */
h1 {
    font-size: 32px;
    font-weight: bold;
    margin: 10px 0;
    padding-top: 25px;
    color: #C59D5F; /* Gold tone */
}

/* Description Text */
.description {
    font-size: 16px;
    color: #444;
    margin-bottom: 20px;
}

/* Contact Table Styling */
.contact-table {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-collapse: collapse;
}

/* Table Header Styling */
.contact-table th {
    font-size: 18px;
    font-weight: bold;
    padding: 10px;
    background-color: #f8f8f8;
    color: #C59D5F;
    border-bottom: 2px solid #ccc;
}

/* Table Data Styling */
.contact-table td {
    padding: 10px;
    font-size: 16px;
    border-bottom: 1px solid #ddd;
}

/* Remove border for the last row */
.contact-table tr:last-child td {
    border-bottom: none;
}

/* Align first column text to the left */
.contact-table td:first-child {
    font-weight: bold;
    text-align: left;
}

/* Center text in headers */
.contact-table th {
    text-align: center;
}

/* Align last column text to the right */
.contact-table td:last-child {
    text-align: right;
}

/* Center align address row */
.contact-table tr:last-child td {
    text-align: center; 
    font-weight: normal; 
}

/* Contact Links */
.contact-table a {
    color: black;
    text-decoration: none;
    border-bottom: 1px solid black;
    transition: 0.3s;
}

/* Contact Link Hover Effect */
.contact-table a:hover {
    border-bottom: 2px solid black;
}

/* Horizontal Rule Styling */
hr {
    border: none;
    border-top: 1px solid #ccc;
    margin: 20px 0;
}
