/* Support Page Styles */
.page-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 3rem;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.page-title i {
    font-size: 2.5rem;
    animation: heartbeat 1.5s ease-in-out infinite;
}

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

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    margin: 0;
}

.support-section {
    padding: 3rem 0 5rem 0;
}

.support-content {
    display: grid;
    grid-template-columns: 4fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.support-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.support-text .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
}

.support-description {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-light);
}

.support-description h1,
.support-description h2,
.support-description h3,
.support-description h4,
.support-description h5,
.support-description h6 {
    color: var(--text-color);
    margin: 1.5rem 0 1rem 0;
    font-weight: 700;
}

.support-description h1 { font-size: 2rem; }
.support-description h2 { font-size: 1.75rem; }
.support-description h3 { font-size: 1.5rem; }
.support-description h4 { font-size: 1.25rem; }

.support-description p {
    margin: 0 0 1rem 0;
}

.support-description ul,
.support-description ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.support-description li {
    margin: 0.5rem 0;
}

.support-description strong {
    font-weight: 700;
    color: var(--text-color);
}

.support-description em {
    font-style: italic;
}

.support-description a {
    color: var(--primary-color);
    text-decoration: underline;
}

.support-description a:hover {
    color: #1d4ed8;
}

.support-description blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #6b7280;
}

.support-description code {
    background: #f3f4f6;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.support-description img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
}

.support-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #f3f4f6;
    transform: translateX(4px);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-item span {
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.9375rem;
}

.support-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-width: 300px;
}

.support-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.support-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color), #1d4ed8);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon i {
    font-size: 1.75rem;
    color: white;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 1.5rem 0;
}

.bank-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bank-detail {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bank-detail label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.bank-detail span {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
}

.iban-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
}

.iban-number {
    flex: 1;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-color);
    letter-spacing: 0.025em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.copy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.copy-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.other-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.other-methods p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

.support-info-box {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: #eff6ff;
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
}

.support-info-box i {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.support-info-box h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-color);
}

.support-info-box p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* Responsive */
@media (min-width: 769px) {
    .support-content {
        grid-template-columns: 4fr 1fr !important;
    }
}

@media (max-width: 1024px) {
    .support-content {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 3rem 0;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-title i {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1.125rem;
    }
    
    .support-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .support-text .section-title {
        font-size: 1.75rem;
    }
    
    .support-features {
        grid-template-columns: 1fr;
    }
    
    .iban-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .copy-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 1.75rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .support-card {
        padding: 1.5rem;
    }
    
    .support-info-box {
        flex-direction: column;
        padding: 1.5rem;
    }
}
