/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6366f1;
    --secondary-color: #a21caf;
    --accent-color: #f72585;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --success-color: #4caf50;
    --error-color: #f44336;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #f5f7fa;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

ul, ol {
    list-style-position: inside;
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: var(--primary-color);
}

.hidden {
    display: none;
}

section {
    padding: 4rem 0;
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 15px;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
}

nav ul {
    display: flex;
    margin-bottom: 0;
}

nav ul li {
    margin-left: 1.5rem;
    list-style-type: none;
}

nav ul li a {
    color: var(--dark-color);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

nav ul li a.active {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    padding: 6rem 0;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.2rem;
}

/* Features Section */
.features {
    text-align: center;
    background-color: white;
}

.features h2 {
    margin-bottom: 3rem;
    font-size: 2rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature {
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature i {
    font-size: 2.5rem;
    background-image: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.feature h3 {
    margin-bottom: 1rem;
}

.feature p {
    margin-bottom: 1.5rem;
    color: var(--gray-color);
}

.feature-link {
    font-weight: 600;
    display: inline-block;
}

.feature-link:after {
    content: ' →';
    transition: margin-left 0.3s ease;
}

.feature-link:hover:after {
    margin-left: 5px;
}

/* Contact Section */
.contact {
    background-color: white;
}

/* Simple Contact Section */
.simple-contact {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background-color: var(--light-color);
    border-radius: 8px;
    text-align: center;
}

.simple-contact p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.email-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.email-container i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.email-container a {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-color);
}

.email-container a:hover {
    text-decoration: underline;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.contact-info {
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: 8px;
}

.contact-info h2 {
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.info-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-right: 1rem;
    width: 24px;
    text-align: center;
}

.support-hours {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light-gray);
}

.support-hours h3 {
    margin-bottom: 1rem;
}

.contact-form {
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
}

#formStatus {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 4px;
    text-align: center;
}

.success-message {
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--success-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 1.5rem;
}

.success-message i,
.error-message i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.error-message {
    background-color: rgba(244, 67, 54, 0.1);
    color: var(--error-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 1.5rem;
}

/* FAQ Section */
.faq {
    background-color: white;
}

.faq-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.category-btn {
    background: none;
    border: none;
    padding: 0.5rem 1rem;
    margin: 0 0.5rem 1rem;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
    background-color: var(--primary-color);
    color: white;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    background-color: var(--light-color);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(67, 97, 238, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.toggle-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 1000px;
}

.faq-answer p, .faq-answer ul, .faq-answer ol {
    margin-bottom: 1rem;
}

.faq-answer ul, .faq-answer ol {
    padding-left: 1rem;
}

.contact-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: 8px;
}

.contact-cta h3 {
    margin-bottom: 1rem;
}

.contact-cta p {
    margin-bottom: 1.5rem;
    color: var(--gray-color);
}

/* FAQ Preview */
.faq-preview {
    background-color: var(--light-color);
    text-align: center;
}

.faq-preview h2 {
    margin-bottom: 1rem;
}

.faq-preview p {
    margin-bottom: 2rem;
    color: var(--gray-color);
}

/* Guide Section */
.guide {
    background-color: white;
}

.guide .container {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 2rem;
}

.guide-nav {
    position: sticky;
    top: 100px;
    align-self: start;
}

.guide-nav ul {
    list-style-type: none;
    margin-bottom: 0;
}

.guide-nav ul li {
    margin-bottom: 0.5rem;
}

.guide-nav ul li a {
    display: block;
    padding: 0.8rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.guide-nav ul li a:hover {
    background-color: rgba(67, 97, 238, 0.05);
}

.guide-content section {
    padding: 2rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.guide-content section:last-child {
    border-bottom: none;
}

.guide-content h2 {
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.guide-section {
    margin-bottom: 3rem;
}

.guide-section:last-child {
    margin-bottom: 0;
}

.guide-section h3 {
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.guide-section p, .guide-section ul, .guide-section ol {
    margin-bottom: 1.5rem;
}

.guide-image {
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.troubleshooting-item {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background-color: var(--light-color);
    border-radius: 8px;
}

.troubleshooting-item h4 {
    margin-bottom: 0.8rem;
    color: var(--dark-color);
}

/* Legal Content Section (Privacy Policy & Terms of Service) */
.legal-content {
    background-color: white;
    padding: 4rem 0;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--light-gray);
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.legal-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.legal-section h3 {
    color: var(--secondary-color);
    margin: 1.5rem 0 1rem;
    font-size: 1.3rem;
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-section ul, .legal-section ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
}

.legal-section strong {
    font-weight: 600;
    color: var(--dark-color);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 2.5rem 0;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social a {
    color: white;
    font-size: 1.2rem;
    margin-left: 1rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.social a:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .guide .container {
        grid-template-columns: 1fr;
    }
    
    .guide-nav {
        position: static;
        margin-bottom: 2rem;
    }
    
    .guide-nav ul {
        display: flex;
        flex-wrap: wrap;
    }
    
    .guide-nav ul li {
        margin-right: 0.5rem;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    footer .container {
        flex-direction: column;
    }
    
    .social {
        margin-top: 1rem;
    }
    
    .social a:first-child {
        margin-left: 0;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .email-container {
        flex-direction: column;
        padding: 1.2rem;
    }
}

@media (max-width: 576px) {
    header .container {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 1rem;
    }
    
    nav ul li:first-child {
        margin-left: 0;
    }
    
    .faq-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .category-btn {
        width: 100%;
        max-width: 200px;
        margin-bottom: 0.5rem;
    }
    
    .simple-contact {
        padding: 1.5rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section h3 {
        font-size: 1.2rem;
    }
} 