/* Custom styles for the about page */

.subscribe-button {
    background-color: #007acc;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 20px 0;
    display: inline-block;
    text-decoration: none;
}

.subscribe-button:hover {
    background-color: #005999;
    color: white;
    text-decoration: none;
}

/* Table styling improvements */
table {
    margin: 1.5rem 0;
    border-collapse: collapse;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

table th,
table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

table tr:hover {
    background-color: #f8f9fa;
}

/* Profile image styling */
.about-header img {
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Section headings */
h2 {
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 8px;
    margin-top: 2rem;
}

/* Links styling */
a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Contact section styling */
h2#get-in-touch + ul {
    list-style: none;
    padding: 0;
}

h2#get-in-touch + ul li {
    margin: 8px 0;
    font-size: 1.1em;
}

/* Responsive design */
@media (max-width: 768px) {
    .subscribe-button {
        width: 100%;
        text-align: center;
    }
    
    table {
        font-size: 0.9em;
    }
    
    table th,
    table td {
        padding: 8px 12px;
    }
}
