body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f8f8f8;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 5000px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

header {
    background-color: #7d4caf;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: center;  /* Center horizontally */
    align-items: center;      /* Center vertically */
    gap: 10px;                /* Space between h2 and img */
    padding: 15px;
    margin-left: -20px;
    flex-direction: row;
    margin-top: -20px;
    width: 380px;
    font-size: 18px;
    height:40px;
}
header h2 {
    margin: 0;
    font-size: 24px;         /* Adjust for matching size */
}

header img {
    height: 24px;            /* Same as font-size for visual balance */
    width: auto;
}
.pi-icon {
    font-size: 30px;
}

.logo img {
    width: 110px;
    height: 80px;
    margin: 10px 0;
}

h3 {
    color: #ff9900;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 1px;
}

.icon {
    text-decoration: none;
    color: black;
    background: white;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
}

.icon img {
    width: 50px;
    height: 50px;
}

.icon p {
    font-size: 14px;
    margin-top: 5px;
}

.highlight {
    background-color: #ffffff;
    
}

.icon{
    border: 2px solid #7d4caf;
    border-radius: 20px;
}
.icon:hover {
    background-color: #ece5ff;
}

.explore-btn {
    background-color: #6a4b8a;
    color: white;
    padding: 10px;
    width: 90%;
    border: 2px solid #7d4caf;
    border-radius: 20px;
    margin-top: 15px;
    font-size: 16px;
    cursor: pointer;
}
.explore-btn img{
    height: 30px;
}
.explore-btn:hover {
    background-color: #6b3f9a;
}
