@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    background-color: #f4f4f4;
}

header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #f8f9fa;
}

.logo-section {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-name {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
}

.menu {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.menu a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    padding: 10px 15px;
    border-radius: 5px;
}

.menu a:hover {
    color: red;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    flex-direction: column;
}

.contact-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    width: 80%;
    max-width: 500px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-card h2 {
    margin-bottom: 20px;
    font-size: 24px;
}

.icon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-item i {
    font-size: 30px;
    margin-bottom: 5px;
}

.icon-item p {
    font-size: 16px;
    margin-top: 5px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .menu {
        gap: 20px;
    }

    .menu a {
        font-size: 16px;
    }

    .contact-card {
        width: 90%;
        padding: 15px;
    }

    .icon-item i {
        font-size: 25px;
    }

    .icon-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-card p {
        font-size: 14px;
    }

    .brand-name {
        font-size: 24px;
    }

    .logo {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .menu a {
        font-size: 14px;
    }

    .contact-card p {
        font-size: 12px;
    }

    .logo {
        width: 60px;
        height: 60px;
    }

    .brand-name {
        font-size: 20px;
    }

    .icon-grid {
        grid-template-columns: 1fr 1fr;
    }
}

a {
    text-decoration: none; /* Remove underline from links */
    color: black; /* Change the text color of the links */
}

a:hover {
    color: #f39c12; /* Change color on hover (example: orange) */
}

.icon-item i {
    color: black; /* Set color for the icons */
    font-size: 24px; /* Adjust icon size if necessary */
}

.icon-item p {
    color: black; /* Set color for the text below the icons */
}

.icon-item:hover i {
    color: #f39c12; /* Change icon color on hover (example: orange) */
}

@media (max-width: 480px) {
    .menu {
        flex-wrap: wrap; /* Allow wrapping */
        justify-content: center; /* Center items */
        gap: 10px;
    }

    .menu a {
        flex-basis: 30%; /* Adjust width as necessary */
        text-align: center; /* Center-align text */
    }
}
