/* Minification failed. Returning unminified contents.
(25,24): run-time error CSS1039: Token not allowed after unary operator: '-primary-blue'
(33,22): run-time error CSS1039: Token not allowed after unary operator: '-light-blue'
(46,17): run-time error CSS1039: Token not allowed after unary operator: '-text-dark'
(50,17): run-time error CSS1039: Token not allowed after unary operator: '-text-gray'
(57,17): run-time error CSS1039: Token not allowed after unary operator: '-primary-blue'
(64,17): run-time error CSS1039: Token not allowed after unary operator: '-dark-blue'
(79,17): run-time error CSS1039: Token not allowed after unary operator: '-text-dark'
(95,17): run-time error CSS1039: Token not allowed after unary operator: '-text-dark'
(113,24): run-time error CSS1039: Token not allowed after unary operator: '-primary-blue'
(134,17): run-time error CSS1039: Token not allowed after unary operator: '-text-dark'
(145,22): run-time error CSS1039: Token not allowed after unary operator: '-bg-gray'
(152,24): run-time error CSS1039: Token not allowed after unary operator: '-primary-blue'
(158,17): run-time error CSS1039: Token not allowed after unary operator: '-text-dark'
(164,17): run-time error CSS1039: Token not allowed after unary operator: '-text-gray'
(183,22): run-time error CSS1039: Token not allowed after unary operator: '-gradient'
(194,22): run-time error CSS1039: Token not allowed after unary operator: '-gradient'
(218,22): run-time error CSS1039: Token not allowed after unary operator: '-bg-gray'
(227,17): run-time error CSS1039: Token not allowed after unary operator: '-text-dark'
(231,17): run-time error CSS1039: Token not allowed after unary operator: '-text-gray'
(236,17): run-time error CSS1039: Token not allowed after unary operator: '-text-dark'
(248,17): run-time error CSS1039: Token not allowed after unary operator: '-text-gray'
(264,22): run-time error CSS1039: Token not allowed after unary operator: '-bg-gray'
(272,24): run-time error CSS1039: Token not allowed after unary operator: '-primary-blue'
(286,17): run-time error CSS1039: Token not allowed after unary operator: '-text-dark'
(290,17): run-time error CSS1039: Token not allowed after unary operator: '-text-gray'
(307,17): run-time error CSS1039: Token not allowed after unary operator: '-text-dark'
(311,17): run-time error CSS1039: Token not allowed after unary operator: '-text-gray'
 */
/* SwiftMerge Support & About Pages Styles */

body {
    /*background: var(--bg-gray);*/
}

/* Support Grid */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.support-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.support-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 105, 255, 0.15);
}

.support-icon {
    width: 60px;
    height: 60px;
    background: var(--light-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.support-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--text-dark);
}

.support-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.support-card a {
    display: inline-block;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.support-card a:hover {
    color: var(--dark-blue);
}

/* Contact Form */
.contact-section {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-section h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.875rem;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Quick FAQ */
.quick-faq {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    margin-top: 3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.quick-faq h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    padding: 1.5rem;
    background: var(--bg-gray);
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-blue);
    background: white;
}

.faq-question {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.faq-answer {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Content Grid for About Page */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.full-width {
    grid-column: 1 / -1;
}

.section-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

/* Stats Section for About Page */
.stats-section {
    background: var(--gradient);
    color: white;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 4rem;
}

.stats-section h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stats-section p {
    opacity: 0.9;
    font-size: 1.1rem;
}

.stat-item {
    padding: 1rem;
}

/* Contact Info */
.contact-info {
    background: var(--bg-gray);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.contact-info h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-info p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.contact-info strong {
    color: var(--text-dark);
    display: inline-block;
    min-width: 90px;
}

.address-block {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.address-lines {
    color: var(--text-gray);
}

.address-lines div {
    line-height: 1.6;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background: var(--bg-gray);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 105, 255, 0.15);
    background: white;
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* CTA Box */
.cta-box {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cta-box p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-box .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
    .support-grid {
        grid-template-columns: 1fr;
    }

    .contact-section,
    .quick-faq {
        padding: 2rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

