/* How Can You Help Section */
.how-to-help-section {
    background: #f8f9fa;
    padding: 100px 20px;
}

.how-to-help-container {
    max-width: 1440px;
    margin: 0 auto;
}

.help-header {
    margin-bottom: 60px;
}

.help-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.help-subtitle {
    font-size: 1.25rem;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
}

.help-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.help-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    background: rgb(33, 33, 44);
}

.help-card:hover .help-card-icon svg {
    stroke: #ffffff;
}

.help-card:hover .help-card-title {
    color: #ffffff;
}

.help-card:hover .help-card-description {
    color: #b8b8c8;
}

.help-card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.help-card-icon .material-icons {
    font-size: 40px;
    position: absolute;
    transition: opacity 0.4s ease, color 0.4s ease;
}

.help-card-icon svg {
    width: 100%;
    height: 100%;
    stroke: #1a1a24;
    transition: stroke 0.4s ease;
}

/* Heart icon default state - show outline, hide filled */
.help-card-icon .heart-outline {
    opacity: 1;
    color: #1a1a24;
}

.help-card-icon .heart-filled {
    opacity: 0;
    color: #f91f56;
}

/* Heart icon hover state - hide outline, show filled with pulse */
.help-card:hover .help-card-icon .heart-outline {
    opacity: 0;
}

.help-card:hover .help-card-icon .heart-filled {
    opacity: 1;
    animation: heartPulse 1.2s ease-in-out infinite;
}

/* Pulsing animation */
@keyframes heartPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}


.help-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a24;
    margin-bottom: 16px;
    transition: color 0.4s ease;
}

.help-card-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
    transition: color 0.4s ease;
}

.help-card-button {
    display: inline-block;
    padding: 12px 32px;
    background: none;
    color: var(--primary-dark);
    text-decoration: none;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.4s ease;
    border: 0.5px solid rgba(26, 26, 36, 0.3);
    cursor: pointer;
}


.help-card:hover .help-card-button {
    background: var(--primary-accent);
    color: #1a1a24;
}



/* Responsive Design */
@media (max-width: 768px) {
    .help-title {
        font-size: 2rem;
        text-align: center;
    }

    .help-subtitle {
        text-align: justify;
        font-size: 1rem;
    }

    .help-cards-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .how-to-help-section {
        padding: 60px 20px;
    }

    .help-title {
        font-size: 1.75rem;
    }

    .help-card {
        padding: 30px 20px;
    }
}