body {
    font-family: 'Sarabun', sans-serif;
    background-color: #FDF8F0;
    color: #4A3F35;
}
h1, h2 {
    font-family: 'Itim', cursive;
    color: #6F4E37;
    font-weight: 800;
}
.card {
    background-color: #FFFDF7;
    border-radius: 2rem;
    box-shadow: 0 12px 20px -4px rgba(0, 0, 0, 0.15), 0 5px 10px -5px rgba(0, 0, 0, 0.1);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border-color 0.3s ease-in-out;
    border: 3px solid #8B5E3C;
    margin-top: 12%;
    margin-left: 15%;
    margin-right: 15%;
    
}
.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px -8px rgba(0, 0, 0, 0.2), 0 10px 15px -7px rgba(0, 0, 0, 0.15);
    border-color: #4F7942;
}
.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.25rem;
    color: #4F7942;
}
.card-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #5C4033;
    line-height: 1.2;
}
.card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
}
.card-list li {
    margin-bottom: 0.6rem;
    padding-left: 1.8rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.5;
    color: #4A3F35;
}
.card-list li::before {
    content: '🌿';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1rem;
    color: #4F7942;
}