.hm-1d4cbf7e-container {
    background: #FAF8F5;
    padding: 6rem 2rem;
    font-family: sans-serif;
}

.hm-1d4cbf7e-header-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.hm-1d4cbf7e-header-left {
    max-width: 600px;
}

.hm-1d4cbf7e-label {
    color: #C9A961;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hm-1d4cbf7e-title {
    font-size: 3rem;
    color: #1A1A1A;
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 1rem 0;
}

.hm-1d4cbf7e-italic {
    color: #4A7C59;
    font-style: italic;
}

.hm-1d4cbf7e-desc {
    color: #6B7280;
    font-size: 1.125rem;
    margin: 0;
    line-height: 1.5;
}

.hm-1d4cbf7e-btn {
    display: inline-block;
    background: #C9A961;
    color: #1A1A1A;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}

.hm-1d4cbf7e-btn:hover {
    background: #B89850;
    color: #1A1A1A;
}

.hm-1d4cbf7e-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hm-1d4cbf7e-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hm-1d4cbf7e-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.hm-1d4cbf7e-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #F5F5F5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.hm-1d4cbf7e-emoji {
    font-size: 2.5rem;
}

.hm-1d4cbf7e-card-title {
    color: #1A1A1A;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.hm-1d4cbf7e-card-sub {
    color: #6B7280;
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.4;
}

/* Tablet */
@media (max-width: 1024px) {
    .hm-1d4cbf7e-container {
        padding: 4rem 1.5rem;
    }
    .hm-1d4cbf7e-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile Carousel */
@media (max-width: 768px) {
    .hm-1d4cbf7e-container {
        padding: 3rem 0; /* Removing side padding for full bleed carousel */
    }
    .hm-1d4cbf7e-header-area {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 1.5rem;
        margin-bottom: 2rem;
    }
    .hm-1d4cbf7e-btn {
        width: 100%;
        text-align: center;
    }
    .hm-1d4cbf7e-title {
        font-size: 2.25rem;
    }
    
    .hm-1d4cbf7e-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 0 1.5rem 1.5rem 1.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        gap: 1rem;
    }
    .hm-1d4cbf7e-grid::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Edge */
    }
    
    .hm-1d4cbf7e-card {
        flex: 0 0 260px;
        scroll-snap-align: start;
    }
}