/*
support Hero Section
*/

.support-hero {
    width: 100%;
    padding: 100px 40px 80px;
    background: #111;
    text-align: center;
}

.hero-content h1 {
    font-size: 43px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    color: #cccccc;
    font-weight: 400;
}

/*
support Grid Section
*/

.support-grid-section {
    width: 100%;
    padding: 100px 40px;
    background: #ffffff;
}

.support-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.support-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.support-card {
    background: #fffffff9;
    /* box-shadow: 0 0px 8px rgba(81, 81, 81, 0.1); */
    border: 2px solid #dedede;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    height: 320px;
}

.support-card-link:hover .support-card {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    background: #ffffffbd;
}

/* 7번째 카드(마지막)를 2번째 열에 배치 */
.support-card:nth-child(7) {
    grid-column: 2 / 3;
}

.support-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.support-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-icon img {
    filter: invert(12%) sepia(64%) saturate(5917%) hue-rotate(357deg) brightness(95%) contrast(108%);
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.support-card h3 {
    font-size: 24px;
    color: #282828;
    font-weight: 600;
    margin-bottom: 16px;
}

.support-card p {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    font-weight: 400;
}

/*
support Detail Section
*/

.support-detail-section {
    width: 100%;
    padding: 120px 40px;
    background: #f5f5f5;
}

.detail-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.detail-visual {
    flex: 1;
}

.detail-visual img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.detail-text {
    flex: 1;
}

.detail-text h2 {
    font-size: 40px;
    color: #282828;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.3;
}

.detail-text p {
    font-size: 18px;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 32px;
}

.support-list {
    list-style: none;
    padding: 0;
}

.support-list li {
    font-size: 17px;
    color: #282828;
    font-weight: 500;
    margin-bottom: 16px;
    padding-left: 0;
}

/*
support CTA Section
*/

.support-cta-section {
    width: 100%;
    padding: 120px 40px;
    text-align: center;
    background: linear-gradient(135deg, #b70701 0%, #690501 100%);
    transition: all 0.3s ease;
}

.cta-content h2 {
    font-size: 43px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 20px;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-btn {
    padding: 16px 48px;
    background: #ffffff;
    text-decoration-line: none;
    color: #b70701;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}


/*
Responsive Design
*/

@media (max-width: 1024px) {
    .support-hero {
        padding: 140px 40px 100px;
    }

    .hero-content h1 {
        font-size: 44px;
    }

    .hero-content p {
        font-size: 19px;
    }

    .support-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .detail-container {
        gap: 60px;
    }

    .detail-text h2 {
        font-size: 34px;
    }

    .detail-text p {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .support-hero {
        padding: 120px 20px 80px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 17px;
    }

    .support-grid-section {
        padding: 80px 20px;
    }

    .support-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .support-card {
        padding: 32px 24px;
    }

    .support-detail-section {
        padding: 80px 20px;
    }

    .detail-container {
        flex-direction: column;
        gap: 40px;
    }

    .detail-text h2 {
        font-size: 28px;
    }

    .detail-text p {
        font-size: 16px;
    }

    .support-cta-section {
        padding: 80px 20px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-content p {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .support-hero {
        padding: 100px 20px 60px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .support-grid-section {
        padding: 60px 20px;
    }

    .support-card {
        padding: 28px 20px;
    }

    .support-card h3 {
        font-size: 20px;
    }

    .support-card p {
        font-size: 15px;
    }

    .support-detail-section {
        padding: 60px 20px;
    }

    .detail-text h2 {
        font-size: 24px;
    }

    .detail-text p {
        font-size: 15px;
    }

    .support-list li {
        font-size: 15px;
    }

    .support-cta-section {
        padding: 60px 20px;
    }

    .cta-content h2 {
        font-size: 26px;
    }

    .cta-content p {
        font-size: 15px;
    }

    .cta-btn {
        padding: 14px 40px;
        font-size: 16px;
    }
}