* {
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #fff4e1;
    margin: 0;
    padding: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.container {
    width: 90%;
    max-width: 1200px;
    text-align: center;
}

.main-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #d35400;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.sub-title {
    font-size: 1.8rem;
    font-weight: 400;
    color: #e67e22;
}

.logo-container {
    text-align: center;
    margin-bottom: 20px;
}

.logo {
    width: 150px;
    height: auto;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-gap: 20px;
}

.card {
    background: linear-gradient(135deg, #fff7e6, #ffe6cc);
    border: 1px solid #f5c26b;
    border-radius: 20px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.card:hover {
    background: #ffebcc;
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.icon {
    font-size: 4rem;
    margin-bottom: 15px;
    color: #e67e22;
}

p {
    font-size: 1.2rem;
    margin: 0;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.card {
    animation: fadeIn 0.5s ease-in-out;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}
