/* Contact Form Button Styles */
/* Ensure proper box-sizing for all elements */
* {
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}
.contact-form-button {
    display: block;
    width: 100%;
    padding: 20px 40px;
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    text-decoration: none;
    color: #FFFFFF;
    background: linear-gradient(135deg, #1F2937 0%, #374151 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 12px rgba(31, 41, 55, 0.15);
    position: relative;
    overflow: hidden;
    margin-bottom: 120px;
    box-sizing: border-box;
}

.contact-form-button:hover {
    background: linear-gradient(135deg, #374151 0%, #4B5563 100%);
    transform: translateY(-2px);
    box-shadow: 0px 8px 20px rgba(31, 41, 55, 0.25);
}

.contact-form-button:active {
    transform: translateY(0);
    box-shadow: 0px 4px 12px rgba(31, 41, 55, 0.15);
}

.contact-form-container {
    width: 100%;
    margin: 40px 0;
    box-sizing: border-box;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .contact-form-button {
        width: 100%;
        padding: 16px 24px;
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 80px;
    }
    
    .contact-form-container {
        margin: 20px 0;
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .contact-form-button {
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
        line-height: 22px;
        margin-bottom: 60px;
    }
    
    .contact-form-container {
        margin: 16px 0;
        padding: 0;
    }
}
