.contact-section {
    text-align: center;
    padding: 50px 0;
}

.contact-section h2 {
    margin-bottom: 30px;
    font-size: 100px;
    font-weight: bold;
    color: #333;
}

.contact-container {
    display: flex;
    justify-content: center;
    gap: 300px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 290px;
}

.icon {
    width: 100px; 
    height: 100px;
    background-color: #0055a5;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon i {
    color: white;
    font-size: 60px; /* Adjust icon size */
}

.contact-item h3 {
    margin-top: 15px;
    font-size: 35px;
    color: #0055a5;
    font-weight: bold;
}

.contact-item p {
    margin-top: 10px;
    color: #333;
    font-size: 22px;
}

.contact-item a {
    text-decoration: none;
    color: #0055a5;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .contact-container {
        flex-direction: column; /* Stack items vertically on smaller screens */
        gap: 70px;
        align-items: center;
    }
}

@media screen and (max-width: 480px) {
    .contact-section h2 {
        font-size: 50px;
    }

    .icon {
        width: 50px;
        height: 50px;
    }

    .icon i {
        font-size: 30px;
    }

    .contact-item h3 {
        font-size: 18px;
    }

    .contact-item p {
        font-size: 14px;
    }
}
