/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #f5f5f5;
    background-color: #000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
header {
    background-color: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFD700;
}

.logo a {
    color: #FFD700;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #f5f5f5;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #FFD700;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(0, 0, 0, 1) 100%);
}

.hero h1 {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.hero .subtitle {
    font-size: 1.5rem;
    color: rgba(255, 215, 0, 0.8);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #000;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: #0a0a0a;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 3rem;
}

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

.feature-card {
    background-color: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.5);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #FFD700;
    margin-bottom: 1rem;
}

.feature-card p {
    color: rgba(245, 245, 245, 0.8);
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background-color: rgba(255, 215, 0, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s, border-color 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.5);
}

.pricing-card.featured {
    border-color: #FFD700;
    border-width: 3px;
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFD700;
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.pricing-card h3 {
    color: #FFD700;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    color: #FFD700;
    font-weight: bold;
    margin-bottom: 1rem;
}

.price span {
    font-size: 1rem;
    color: rgba(255, 215, 0, 0.7);
}

.savings {
    color: #FFD700;
    font-weight: bold;
    margin-bottom: 1rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-top: 1.5rem;
}

.pricing-features li {
    color: rgba(245, 245, 245, 0.8);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-features li:before {
    content: "✓";
    color: #FFD700;
    position: absolute;
    left: 0;
}

/* Legal Content */
.legal-content {
    padding: 4rem 0;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    color: #FFD700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.last-updated {
    color: rgba(255, 215, 0, 0.7);
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-content h2 {
    color: #FFD700;
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    color: #FFD700;
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content h4 {
    color: rgba(255, 215, 0, 0.9);
    font-size: 1.1rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.legal-content p,
.legal-content li {
    color: rgba(245, 245, 245, 0.85);
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content a {
    color: #FFD700;
    text-decoration: underline;
}

.legal-content a:hover {
    color: rgba(255, 215, 0, 0.8);
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
}

.contact-section h1 {
    text-align: center;
    color: #FFD700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-section .subtitle {
    text-align: center;
    color: rgba(255, 215, 0, 0.8);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    background-color: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: rgba(245, 245, 245, 0.8);
    margin-bottom: 1rem;
}

.contact-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.contact-link:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form-section {
    max-width: 600px;
    margin: 4rem auto;
}

.contact-form-section h2 {
    text-align: center;
    color: #FFD700;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-form {
    background-color: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 2rem;
}

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

.form-group label {
    display: block;
    color: #FFD700;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    color: #f5f5f5;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFD700;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background-color: #FFD700;
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.5);
}

/* FAQ Section */
.faq-section {
    max-width: 800px;
    margin: 4rem auto;
}

.faq-section h2 {
    text-align: center;
    color: #FFD700;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.faq-item {
    background-color: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    color: #FFD700;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: rgba(245, 245, 245, 0.85);
}

.faq-item a {
    color: #FFD700;
    text-decoration: underline;
}

.support-hours {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background-color: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
}

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

.support-hours p {
    color: rgba(245, 245, 245, 0.85);
}

/* Footer */
footer {
    background-color: #0a0a0a;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #FFD700;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section li {
    color: rgba(245, 245, 245, 0.7);
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: rgba(245, 245, 245, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #FFD700;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-bottom p {
    color: rgba(245, 245, 245, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero .subtitle {
        font-size: 1.2rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .features h2,
    .pricing h2 {
        font-size: 2rem;
    }

    .feature-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}
