/* Contact Page */
.contact-section {
    background: #fff;
    padding: 80px 20px;
    text-align: center;
    color: #333;
}

.contact-section .section-header {
    font-size: 2.4em;
    margin-bottom: 20px;
    color: #212121;
    font-weight: bold;
}

.contact-section .section-header i {
    font-size: 2.8em;
    margin-bottom: 10px;
    color: #4ca1af;
    display: block;
}

/* Contact Info */
.contact-info {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2em;
    line-height: 1.8;
    color: #555;
}

.contact-info p {
    margin-bottom: 15px;
}

.contact-info a {
    color: #4ca1af;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #2c3e50;
}

/* CTA for Support Tickets */
.support-cta {
    background: #fafafa;
    padding: 60px 20px;
    text-align: center;
    margin-top: 40px;
}

.support-cta h2 {
    font-size: 2em;
    margin-bottom: 15px;
    color: #212121;
}

.support-cta p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 20px;
}

.btn-support {
    display: inline-block;
    padding: 12px 30px;
    background: #ff9800;
    color: #fff;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-support:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 20px;
    }

    .support-cta {
        padding: 50px 20px;
    }

    .contact-section .section-header {
        font-size: 2em;
    }

    .support-cta h2 {
        font-size: 1.8em;
    }

    .btn-support {
        font-size: 1em;
    }
}
