body {
    margin: 0;
    font-family: 'Mulish', sans-serif;
    background-color: #fffaf4;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
}

h1 {
    font-size: 2.5rem;
    color: #6b4c3b;
    margin-bottom: 0.3rem;
}

p {
    margin: 0.5rem 0 2rem;
    font-size: 1.1rem;
    color: #7a6b5f;
    text-align: center;
    max-width: 500px;
}



.cards, .card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    width: 100%;
    max-width: 800px;
    text-align: center;
}

.card-title {
    padding: 0;
}

.subcard {
    background-color: #fff3e6;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
    text-decoration: none;
    color: inherit;
}


.subcard:hover {
    transform: scale(1.03);
}

.icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.card-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.3rem;
}

.card-name {
    font-size: 1rem;
    color: #8b7463;
}

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