/* Hero Section - 11.11 Sale CTA */
.hero-section {
    background: white url('/img/hero-bg.png') center center no-repeat;
    color: #333;
    padding: 3rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #f0f0f0;
    background-size: cover;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.85) 0%,
        rgba(255, 255, 255, 0.6) 45%,
        rgba(255, 255, 255, 0) 70%
    );
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    height: calc(100vh - 200px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    margin: 0 0 0rem 0;
    font-weight: 700;
    color: #333;
}

.hero-logo {
    animation: fadeUp 0.8s ease-out forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-cta-button {
    display: inline-block;
    padding: 1.75rem 3rem;
    background: linear-gradient(135deg, #ff9a3d, #ff6f61);
    color: white;
    font-size: 26px !important;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
    box-shadow: 0 8px 20px rgba(255, 106, 97, 0.3);
    border: none;
    cursor: pointer;
    margin-top: 1.5rem;
    animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
}

.hero-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 122, 24, 0.35);
    background: linear-gradient(135deg, #ff8a2d, #ff5f51);
    color: white;
    animation: none;
}

/* Scroll Hint */
.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
    z-index: 3;
    opacity: 0.7;
}

.scroll-hint-text {
    font-weight: 600;
}

.scroll-hint-arrow {
    font-size: 1.5rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(6px);
    }
}

/* Hero Responsive Styles */
@media (max-width: 768px) {
    .hero-section {
        padding: 2.5rem 1rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-logo {
        max-width: 150px;
        margin: 1rem auto;
    }

    .hero-cta-button {
        padding: 1.25rem 2rem;
        font-size: 20px !important;
    }

    .scroll-hint {
        bottom: 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-logo {
        max-width: 120px;
    }

    .hero-cta-button {
        padding: 1rem 1.5rem;
        font-size: 18px !important;
        width: 100%;
        max-width: 300px;
    }

    .scroll-hint {
        display: none;
    }
}

/* Universal Section Styling */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    margin-top: 0;
    color: #333;
    text-align: center;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1.6;
}

/* Section container styling for consistency */
.seo-section,
.recommended,
.faq-section,
.categories-section,
.articles-section,
.sales-section {
    padding: 6rem 20px;
    text-align: center;
}

/* Alternating section backgrounds for better visual flow */
.bg-filled {
    background: linear-gradient(135deg, #ff9a3d, #ff6f61);
    color: white;
}

.seo-section .section-title,
.seo-section .section-subtitle {
    color: white;
}

.seo-section p {
    font-size: 1.05rem;
    line-height: 1.8;
}
.seo-section .features__card p {
    color: #ff6f61;
    font-weight: 500;
}

.affiliate-cta {
    text-align: center;
    margin-top: 2rem;
}

.section-container {
    margin: 0 auto;
    max-width: 1200px;
}

.bg-white {
    background-color: white;
}

/* Categories section now uses universal .section-title and .section-subtitle classes */

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.category-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 100%;
}

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

.category-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.category-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 154, 61, 0.85), rgba(255, 111, 97, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.category-icon {
    font-size: 3rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.category-content {
    padding: 1.75rem;
    text-align: left;
    direction: ltr;
}

.category-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
    color: #333;
    line-height: 1.3;
}

.category-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin: 0 0 1rem;
    height: 3em;
    overflow: hidden;
}

.category-cta {
    display: inline-flex;
    align-items: center;
    color: #ff6f61;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.category-card:hover .category-cta {
    color: #ff9a3d;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .categories-section {
        padding: 0 15px;
        margin: 2rem auto;
    }

    .categories-section h2 {
        font-size: 2rem;
    }

    .categories-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .category-image {
        height: 150px;
    }

    .category-content {
        padding: 1rem;
    }

    .category-content h3 {
        font-size: 1.1rem;
    }

    .category-content p {
        font-size: 0.9rem;
        height: auto;
        min-height: 2.5em;
    }

    .category-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .categories-section h2 {
        font-size: 1.8rem;
    }

    .category-image {
        height: 180px;
    }

    .category-content p {
        height: auto;
    }
}

/* SALES SECTION */
.sales-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.sale-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 100%;
}

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

.sale-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.sale-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.sale-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sale-card:hover .sale-image img {
    transform: scale(1.05);
}

.sale-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 154, 61, 0.85), rgba(255, 111, 97, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sale-card:hover .sale-overlay {
    opacity: 1;
}

.sale-badge {
    background: white;
    color: #ff6f61;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.sale-content {
    padding: 1.5rem;
    text-align: left;
    direction: ltr;
}

.sale-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
    color: #333;
    line-height: 1.3;
}

.sale-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin: 0 0 1rem;
    height: 3em;
    overflow: hidden;
}

.sale-cta {
    display: inline-flex;
    align-items: center;
    color: #ff6f61;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.sale-card:hover .sale-cta {
    color: #ff9a3d;
}

.sales-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 16px;
    border-top: 3px solid #ff6f61;
}

.sales-cta p {
    font-size: 1.1rem;
    color: #666;
    margin: 0 0 1.5rem 0;
}

/* Sales Section Responsive */
@media (max-width: 1024px) {
    .sales-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .sales-section {
        padding: 3rem 15px;
    }

    .sales-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .sale-image {
        height: 150px;
    }

    .sale-content {
        padding: 1rem;
    }

    .sale-content h3 {
        font-size: 1.1rem;
    }

    .sale-content p {
        font-size: 0.9rem;
        height: auto;
        min-height: 2.5em;
    }

    .sales-cta {
        margin-top: 2rem;
        padding: 1.5rem;
    }

    .sales-cta p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .sales-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .sale-image {
        height: 180px;
    }

    .sale-content p {
        height: auto;
    }

    .sales-cta {
        padding: 1rem;
    }
}

/* COUPONS SECTION */
.coupons-section {
    padding: 5rem 20px;
}

.coupons-section .section-title,
.coupons-section .section-subtitle {
    color: white;
}

.coupons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Coupon Code Cards */
.coupon-code-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    border: 2px dashed rgba(255, 111, 97, 0.3);
}

.coupon-code-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #ff6f61;
}

.coupon-discount {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ff6f61;
    line-height: 1.2;
}

.coupon-condition {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.coupon-code-text {
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    letter-spacing: 1px;
    border: 1px solid #e9ecef;
}

.copy-coupon-btn {
    background: linear-gradient(135deg, #ff9a3d, #ff6f61);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    margin-top: 0.5rem;
}

.copy-coupon-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 111, 97, 0.4);
}

.copy-coupon-btn.copied {
    background: #28a745;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

/* Coupons CTA */
.coupons-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.coupons-cta .cta-button {
    background: white;
    color: #ff6f61;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.coupons-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

/* Legacy coupon-card styles (keep for compatibility) */
.coupon-card {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.coupon-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.coupon-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 0.75rem;
}

.coupon-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin: 0 0 1rem;
}

.coupon-cta {
    display: inline-block;
    color: #ff6f61;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.coupon-card:hover .coupon-cta {
    color: #ff9a3d;
}

/* Coupons Section Responsive */
@media (max-width: 1024px) {
    .coupons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .coupons-section {
        padding: 3rem 15px;
    }

    .coupons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .coupon-card {
        padding: 1.5rem 1rem;
    }

    .coupon-code-card {
        padding: 1.25rem 1rem;
    }

    .coupon-discount {
        font-size: 1.5rem;
    }

    .coupon-icon {
        font-size: 2.5rem;
    }

    .coupon-card h3 {
        font-size: 1.1rem;
    }

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

    .coupons-cta .cta-button {
        padding: 0.85rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .coupons-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .coupon-card {
        padding: 1.5rem;
    }

    .coupon-code-card {
        padding: 1rem;
    }

    .coupon-discount {
        font-size: 1.3rem;
    }

    .coupon-code-text {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }

    .copy-coupon-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

/* CTA SECTION */
.section-cta {
    text-align: center;
    padding: 5rem 0;
    background: linear-gradient(135deg, #ff9a3d, #ff6f61);
}

.section-cta h2 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
}

.section-cta .cta-button {
    background: white;
    color: #ff6f61;
}

.section-cta h2 {
    color: white;
    margin-bottom: 2.5rem;
    font-size: 2rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
}

/* Light CTA for orange backgrounds */
/* All light buttons on orange sections inherit from .cta-button-light */

/* Universal Section Responsive Styles */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
    }

    .cta-button,
    .cta-button-light {
        font-size: 18px;
        padding: 14px 20px;
    }

    .seo-section,
    .recommended,
    .faq-section,
    .categories-section,
    .articles-section {
        padding: 3rem 15px;
    }
}

/* Categories Section Responsive */
@media (max-width: 768px) {
    .categories-cta {
        margin-top: 2rem;
        padding: 1.5rem 0;
    }

    .categories-cta p {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        padding: 0 1rem;
    }
}

/* Articles Section Grid - Override main.css styles */
.articles-section {
    /* Override the main.css blog-section grid layout */
    display: block !important;
    grid-template-columns: unset !important;
    padding: 5rem 20px;
    text-align: center;
}

.posts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.posts .blog-post {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: start;
}

/* Add image container for better overlay control */
.posts .blog-post .blog-image-container {
    position: relative;
    overflow: hidden;
}

.posts .blog-post .blog-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.posts .blog-post:hover .blog-image-overlay {
    opacity: 1;
}

.posts .blog-post h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
    color: #333;
    line-height: 1.3;
}

.posts .blog-post:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.posts .blog-post img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
    margin-bottom: 0;
    border-radius: 0;
    display: block;
}

.posts .blog-post:hover img {
    transform: scale(1.05);
}

.posts .blog-post h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 1.5rem 1.5rem 0.75rem;
    color: #333;
    line-height: 1.4;
    flex-grow: 1;
}

.posts .blog-post h3 a {
    color: inherit;
    text-decoration: none;
}

.posts .blog-post h3 a:hover {
    color: #ff6f61;
}

.posts .blog-post .blog-post-cta {
    padding: 0 1.5rem 1.5rem;
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.posts .blog-post .read-more {
    display: inline-flex;
    align-items: center;
    color: #ff6f61;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 0.5rem 1rem;
    border: 1px solid #ff6f61;
    border-radius: 20px;
    background: rgba(255, 111, 97, 0.05);
}

.posts .blog-post:hover .read-more {
    color: white;
    background: #ff6f61;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 111, 97, 0.3);
}

.posts .blog-post-date {
    font-size: 0.85rem;
    color: #888;
    font-weight: 400;
    white-space: nowrap;
}

/* Articles Grid Responsive */
@media (max-width: 1024px) {
    .posts {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .posts {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .posts .blog-post img {
        height: 150px;
    }

    .posts .blog-post h3 {
        font-size: 1.1rem;
        margin: 1rem 1rem 0.5rem;
    }

    .posts .blog-post .blog-post-cta {
        padding: 0 1rem 1rem;
    }
}

@media (max-width: 480px) {
    .posts {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .posts .blog-post img {
        height: 180px;
    }

    .posts .blog-post .blog-post-cta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    .posts .blog-post .read-more {
        align-self: center;
    }
}

/* FAQ Support Section Styling */
.faq-support-section {
    margin-top: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-top: 3px solid #ff6f61;
    text-align: left;
}

.faq-support-section h3 {
    text-align: center;
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.support-intro {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.support-steps {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.support-step {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    background: linear-gradient(135deg, #ff9a3d, #ff6f61);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1.1rem;
}

.step-content p {
    margin: 0 0 0.75rem 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.4;
}

.support-link {
    color: #ff6f61;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.support-link:hover {
    border-bottom-color: #ff6f61;
}

.support-tip {
    background: #fff3cd;
    border: 1px solid #ffecb5;
    border-radius: 8px;
    padding: 1rem;
    color: #856404;
    text-align: center;
}

.support-tip strong {
    color: #533f03;
}

@media (max-width: 768px) {
    .support-steps {
        flex-direction: column;
        gap: 1.5rem;
    }

    .faq-support-section {
        padding: 1.5rem;
        margin-top: 2rem;
    }
}
