/* Support Page Styles */
.support-container {
    background-color: white;
    padding: 40px;
    margin: 40px auto;
    max-width: 1200px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.support-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #66CC33;
}

.support-header h1 {
    font-family: Arial, sans-serif;
    color: #003333;
    margin-bottom: 15px;
    font-size: 2.5em;
}

.support-header p {
    font-family: Arial, sans-serif;
    color: #666;
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.support-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid #66CC33;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-card {
    border-left-color: #003333;
    background-color: #f0f8f0;
}

.product-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.support-card h3 {
    font-family: Arial, sans-serif;
    color: #003333;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.support-card p {
    font-family: Arial, sans-serif;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.support-btn {
    display: inline-block;
    background-color: #66CC33;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    font-family: 'Bangers', cursive;
    font-size: 1.2em;
    transition: all 0.3s ease-in-out;
}

.support-btn:hover {
    background-color: #559922;
    transform: translateY(-2px);
}

.contact-btn {
    background-color: #003333;
}

.contact-btn:hover {
    background-color: #002222;
}

.support-footer {
    background-color: #f0f8f0;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #66CC33;
}

.support-footer h2 {
    font-family: Arial, sans-serif;
    color: #003333;
    margin-bottom: 15px;
}

.support-footer p {
    font-family: Arial, sans-serif;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.support-footer a {
    color: #66CC33;
    text-decoration: none;
    font-weight: bold;
}

.support-footer a:hover {
    color: #559922;
    text-decoration: underline;
}

/* Responsive design */
@media (max-width: 768px) {
    .support-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .support-container {
        padding: 20px;
        margin: 20px auto;
    }
}