/* Single Container Contact Section Styling */
.contact-container-single {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-unified {
    padding: 60px 50px;
    text-align: center;
}

.contact-header {
    margin-bottom: 50px;
}

.contact-header h3 {
    font-size: 2.5rem;
    color: #00ffff;
    margin-bottom: 30px;
}

.contact-header p {
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Contact CTA Button */
.contact-cta-button {
    display: inline-block;
    margin-top: 40px;
    padding: 18px 50px;
    background: linear-gradient(135deg, #e0a3ff, #ff69b4);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 15px rgba(224, 163, 255, 0.3);
}

.contact-cta-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(224, 163, 255, 0.5);
}

/* Mobile responsiveness for single container */
@media (max-width: 768px) {
    .contact-unified {
        padding: 40px 30px;
    }

    .contact-header h3 {
        font-size: 2rem;
    }

    .contact-header p {
        font-size: 1.1rem;
    }
}