/* Base Desktop Styles */
.help-slant {
    clip-path: polygon(0 74%, 100% 0, 100% 100%, 0% 100%);
    margin-top: 7rem;
    background-color: #ffffff;
    height: 100px;
    margin-bottom: -1px;
}

.help-slant-second {
    clip-path: polygon(0 0, 100% 0, 100% 30%, 0% 100%);
    background-color: #ffffff;
    height: 100px;

}

.help-section {
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
    padding-bottom: 8rem;
}

.help-section h1 {
    text-align: center;
    font-size: 8rem;
    padding: 5rem 2rem 3rem 2rem;
    z-index: 100;
    font-weight: 900;
    margin: 0;
    color: #333;
    position: relative;
}

.help-section h5 {
    color: #e5e5e5;
    font-size: 25000px;
    position: absolute;
    z-index: 0;
    margin: 0;
    font-weight: 900;
    top: 2rem;
    left: -5rem;
    pointer-events: none;
    user-select: none;
}

.help-section #secondh5 {
    right: -5rem;
    left: auto;
    top: 15rem;
    font-size: 20000px;
}

.help-card-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 2rem 6rem;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 100;
    position: relative;
}

.help-card {
    background-color: #202020;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 350px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.help-card::before {
    display: none;
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.help-card h3 {
    font-size: 1.8rem;
    color: white;
    font-weight: 700;
    padding: 2rem 2rem 1rem 2rem;
    text-align: center;
    margin: 0;
}

.help-card p {
    font-size: 1.1rem;
    color: white;
    line-height: 1.6;
    padding: 0 2rem 1.5rem 2rem;
    text-align: left;
    margin: 0;
    flex-grow: 1;
}

.help-card a {
    background-color: #f2f2f2;
    margin: 2rem;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.1rem;
    color: #000;
    font-weight: 600;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.help-card a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background-color: #e8e8e8;
}

/* Tablet Styles */
@media (max-width: 1200px) {
    .help-section h1 {
        font-size: 6rem;
        padding: 4rem 2rem 3rem 2rem;
    }

    .help-card-wrapper {
        padding: 2rem 4rem;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
    }

    .help-section h5 {
        font-size: 20000px;
    }

    .help-section #secondh5 {
        font-size: 15000px;
        top: 12rem;
    }
}

@media (max-width: 900px) {
    .help-section h1 {
        font-size: 4.5rem;
    }

    .help-card-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .help-slant {
        margin-top: 3rem;
        height: 60px;
        clip-path: polygon(0 60%, 100% 0, 100% 100%, 0% 100%);
    }

    .help-slant-second {
        height: 60px;
        clip-path: polygon(0 0, 100% 0, 100% 40%, 0% 100%);
    }

    .help-section {
        padding-bottom: 5rem;
    }

    .help-section h1 {
        font-size: 3.5rem;
        padding: 3rem 1rem 2rem 1rem;
    }

    .help-section h5 {
        font-size: 12000px;
        opacity: 0.3;
        top: 1rem;
    }

    .help-section #secondh5 {
        font-size: 10000px;
        top: 8rem;
    }

    .help-card-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem;
        max-width: none;
    }

    .help-card {
        min-height: 300px;
    }

    .help-card h3 {
        font-size: 1.5rem;
        padding: 1.5rem 1.5rem 1rem 1.5rem;
    }

    .help-card p {
        font-size: 1rem;
        padding: 0 1.5rem 1rem 1.5rem;
    }

    .help-card a {
        margin: 1.5rem;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .help-section h1 {
        font-size: 2.8rem;
        padding: 2rem 0.5rem 1.5rem 0.5rem;
    }

    .help-card-wrapper {
        padding: 1.5rem;
        gap: 1rem;
    }

    .help-card {
        min-height: 280px;
    }

    .help-card h3 {
        font-size: 1.3rem;
        padding: 1.25rem;
    }

    .help-card p {
        font-size: 0.95rem;
        padding: 0 1.25rem 1rem 1.25rem;
    }

    .help-card a {
        margin: 1.25rem;
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }

    .help-section h5 {
        font-size: 8000px;
    }

    .help-section #secondh5 {
        font-size: 6000px;
        top: 6rem;
    }
}

/* Very Small Mobile */
@media (max-width: 360px) {
    .help-section h1 {
        font-size: 2.4rem;
    }

    .help-card h3 {
        font-size: 1.2rem;
    }

    .help-card p {
        font-size: 0.9rem;
    }
}