/* Base layout */
.contact-page {
    height: 100%;
    overflow: hidden;
}

.contact-page #page {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.contact-page #content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.contact-page .site-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Main content */
.site-main.contact-page {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.contact-page .container {
    width: 100%;
    max-width: 1200px;
    margin: 0;
    padding: 0 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.contact-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-text p {
    margin-bottom: 1rem;
}

.contact-text h1,
.contact-text h2,
.contact-text h3,
.contact-text h4,
.contact-text h5,
.contact-text h6 {
    text-align: center;
    margin: 1rem 0;
}

.contact-text a,
.contact-text a:visited,
.contact-text a:hover,
.contact-text a:active {
    color: #000;
    text-decoration: underline;
}

.contact-text a:hover {
    opacity: 0.7;
}

/* Contact Links */
.contact-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin: 0 auto;
}

.contact-link {
    font-size: 1.25rem;
    color: #000;
    text-decoration: none;
    padding: 1rem 2rem;
    border: 2px solid #000;
    border-radius: 4px;
    transition: all 0.3s ease;
    min-width: 200px;
    text-align: center;
}

.contact-link:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Footer */
.contact-footer {
    background: #fff;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-footer .footer-content {
    display: grid;
    gap: 1rem;
}

.contact-footer .footer-copyright,
.contact-footer .site-info {
    max-width: 800px;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.contact-footer .footer-copyright p,
.contact-footer .site-info p {
    margin: 0;
} 