/* Contact Page Specific Styles */
.contact-hero {
    padding-top: 150px;
    margin-bottom: 0;
}

.contact-hero h1 {
    font-size: 60px;
    font-weight: normal;
    letter-spacing: 2px;
    margin-bottom: 50px;
}

.contact-description {
    max-width: 800px;
    margin: 0 auto 0;
    line-height: 2;
    text-align: center;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0;
}

.contact-email-container {
    width: 100%;
    margin-bottom: 60px;
    text-align: center;
}

.contact-email-container h2 {
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 20px;
}

.contact-email-container p {
    margin-bottom: 30px;
    line-height: 1.8;
}

.email-link {
    display: inline-block;
    font-size: 20px;
    padding: 15px 30px;
    margin: 20px auto;
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
    transition: background-color 0.3s, color 0.3s;
}

.email-link:hover {
    background-color: #fff;
    color: #000;
}

.contact-info {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 40px;
}

.contact-info h2 {
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 30px;
}

.company-info {
    line-height: 2;
}

.company-name {
    font-size: 18px;
    margin-bottom: 10px;
}

address {
    font-style: normal;
    margin-bottom: 20px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .contact-hero {
        padding-top: 100px;
        margin-bottom: 0;
    }
    
    .contact-hero h1 {
        font-size: 40px;
        margin-bottom: 30px;
    }
    
    .contact-description {
        padding: 0 20px;
        margin-bottom: 0;
    }
    
    .contact-container {
        padding: 0 20px;
    }
    
    .email-link {
        width: 100%;
        max-width: 300px;
        font-size: 16px;
    }
}