main *{
    text-align: center !important;
}

.contact-section{
    padding: 20px;
}
.contact-intro {
    background-color: #aeb57c;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.contact-intro h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.contact-intro p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.contact-info-section {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card i {
    font-size: 40px;
    color: #aeb57c;
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #333;
}

.contact-card p {
    color: #555;
    line-height: 1.6;
}

.cta-section {
    background-color: #aeb57c;
    color: #fff;
    text-align: center;
    padding: 50px 20px;
}

.cta-section .btn {
    background-color: #fff;
    color: #aeb57c;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease-in-out;
}

.cta-section .btn:hover {
    background-color: #fff;
    color: #aeb57c;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}
