/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #444;
    color: white;
    text-align: center;
}

.contact-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

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

.contact-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 25px;
    transition: all 0.3s;
}

.contact-button:hover {
    background-color: white;
    color: #444;
} 