.content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.main-heading {
    text-align: center;
    font-size: 2.5em;
    color: var(--heading-color);
    margin-top: 60px;
    margin-bottom: 0px;
    font-weight: 500;
}

.contact-heading {
    font-size: 1.8em;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-weight: 500;
}

.contact-description {
    color: var(--text-primary);
    font-size: 1.2em;
    margin-bottom: 20px;
    line-height: 1.3;
    opacity: 0.9;
    margin-top: 0;
    padding-top: 0;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--button-bg);
    color: var(--button-text);
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.2s ease, opacity 0.2s ease;
    min-width: 160px;
    justify-content: center;
}

.contact-button i {
    font-size: 1.1em;
    margin-right: 4px;
    color: var(--button-text);
}

.contact-button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Active nav link */
.nav-links a.active {
    color: var(--heading-color);
    font-weight: bold;
}

.logo-link {
    text-decoration: none;
    color: var(--heading-color);
}

.logo-link:hover {
    opacity: 0.8;
}

.top-footer {
    padding: 15px 40px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.bottom-footer {
    padding: 15px 40px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

/* Check for any social icon related styles */

.contact-description .email {
    font-family: Charter, serif;
    font-style: italic;
}

.contact-section {
    margin-top: 10px;
    padding: 0;
}

/* Theme toggle button styles */
.theme-toggle-container {
    position: relative;
    padding-left: 28px;
    margin-left: 10px;
}

.theme-toggle-container::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    width: 1px;
    background-color: var(--border-color);
}

.theme-toggle {
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px 0;
    font-size: 1.2em;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.theme-toggle:hover {
    opacity: 0.8;
}

/* Update button styles to use theme variables */
.contact-button {
    background-color: var(--button-bg);
    color: var(--button-text);
}

.contact-button i {
    color: var(--button-text);
}

.contact-description {
    color: var(--text-primary);
}

.email {
    color: var(--text-primary);
} 