:root {
    --primary-color: #e74c3c;
    --secondary-color: #c0392b;
    --dark-color: #1a1a1a;
    --darker-color: #111;
    --light-color: #f5f5f5;
    --lighter-color: #fff;
    --text-color: #e0e0e0;
    --muted-text: #999;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--dark-color);
    padding: 0;
    margin: 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Header Styles */
header {
    background: linear-gradient(to right, var(--darker-color), var(--dark-color));
    padding: 2rem 0;
    border-bottom: 3px solid var(--primary-color);
    text-align: center;
}

.logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--lighter-color);
    margin-bottom: 0.5rem;
}

.logo span {
    color: var(--primary-color);
}

.tagline {
    font-size: 1.2rem;
    color: var(--muted-text);
    margin-bottom: 1.5rem;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--lighter-color);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    text-decoration: none;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: rgba(231, 76, 60, 0.1);
    text-decoration: none;
}

.btn-outline {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid var(--text-color);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.cta-buttons {
    margin-top: 2rem;
}

/* Main Content Styles */
main {
    padding: 3rem 0;
}

section {
    margin-bottom: 3rem;
}

h2 {
    font-size: 2rem;
    color: var(--lighter-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    text-align: center;
    padding-top: 2rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 260px;
    height: 3px;
    background-color: var(--primary-color);
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: 1.3rem;
    color: var(--lighter-color);
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

.highlight {
    color: var(--primary-color);
    font-weight: 600;
}

/* FAQ Styles */
.faq-section {
    background-color: var(--darker-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.faq-header {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-header h2 {
    display: inline-block;
}

.faq-header h2::after {
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-question {
    color: var(--primary-color);
    cursor: pointer;
    position: relative;
    padding-left: 2.5rem;
}

.faq-question::before {
    content: 'Q:';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.faq-answer {
    padding-left: 2.5rem;
    margin-top: 1rem;
    position: relative;
}

.faq-answer::before {
    content: 'A:';
    position: absolute;
    left: 0;
    color: var(--muted-text);
    font-weight: bold;
}

ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.5rem;
}

/* Platform Section */
.platform-section {
    text-align: center;
}

.platform-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.platform-card {
    background-color: var(--darker-color);
    border-radius: 8px;
    padding: 2rem;
    flex: 1 1 300px;
    max-width: 350px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-top: 3px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-5px);
}

.platform-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.platform-card p {
    margin-bottom: 1.5rem;
    color: var(--muted-text);
}

/* Footer Styles */
footer {
    background-color: var(--darker-color);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: var(--text-color);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.copyright {
    color: var(--muted-text);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .logo {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    .faq-section {
        padding: 1.5rem;
    }
    
    .platform-card {
        flex: 1 1 100%;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}
