/* General Body Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #121212; /* Dark background */
    color: #E0E0E0; /* Soft white text */
}

/* Header and Navigation */
header {
    background-color: #1F1F1F; /* Slightly lighter dark shade for header */
    padding: 15px 30px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo span {
    font-size: 1.8rem;
    font-weight: bold;
    color: #00FF00; /* Lime green for logotype */
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: #E0E0E0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #00FF00; /* Lime green on hover */
}

/* Hamburger Menu for Mobile */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background-color: #E0E0E0;
    margin: 5px 0;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 20px;
    background: #1F1F1F;
    min-height: 60vh;
}

.hero-content h1 {
    font-size: 3rem;
    color: #00FF00; /* Vibrant green headline */
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
    color: #FFFFFF; /* White text for visibility */
}

.cta-buttons .cta-primary {
    background-color: #00FF00;
    color: #121212;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-right: 10px;
    transition: background-color 0.3s;
}

.cta-buttons .cta-primary:hover {
    background-color: #00CC00;
}

.cta-buttons .cta-secondary {
    background-color: transparent;
    color: #00FF00;
    border: 2px solid #00FF00;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

.cta-buttons .cta-secondary:hover {
    background-color: #00FF00;
    color: #121212;
}

/* General Section Styling */
.content-section {
    padding: 60px 20px;
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.content-section h2 {
    font-size: 2.5rem;
    color: green;
    margin-bottom: 20px;
}

/* Cinematic Strip (How It Works) */
.cinematic-strip {
    display: flex;
    justify-content: space-around;
    background-color: #1F1F1F;
    padding: 40px 20px;
    text-align: center;
}

.step {
    max-width: 300px;
}

.step-icon {
    font-size: 3rem;
    color: #00FF00;
}

.step h3 {
    font-size: 1.5rem;
    color: green;
    margin: 10px 0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}

.features-grid h2 {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 2.5rem;
    color: green;
}

.feature {
    background-color: #1F1F1F;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.feature-icon {
    font-size: 2.5rem;
    color: #00FF00;
}

.feature h3 {
    font-size: 1.3rem;
    margin: 10px 0;
}

/* Social Proof (Impact Stories) */
.social-proof {
    text-align: center;
}

.story {
    margin: 20px auto;
    max-width: 600px;
}

.story blockquote {
    font-style: italic;
    font-size: 1.2rem;
    margin: 0;
}

.story cite {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #00FF00;
}

/* Partner Section */
.partner-section {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    padding: 60px 20px;
    background-color: #1F1F1F;
    text-align: center;
}

.partner-section h2 {
    width: 100%;
    text-align: center;
    font-size: 2.5rem;
    color: green;
}

.partner-panel {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 8px;
    max-width: 400px;
}

.partner-panel h3 {
    font-size: 1.8rem;
    color: green;
}

/* Download Prompt */
.download-prompt {
    text-align: center;
    padding: 60px 20px;
}

.download-prompt h2 {
    font-size: 2.5rem;
    color: green;
}

.app-badges {
    margin-top: 20px;
}

.app-badge-placeholder {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border-radius: 5px;
    margin: 5px;
    text-decoration: none;
}

/* FAQ Section */
.faq-item {
    margin-bottom: 20px;
    text-align: left;
}

.faq-item h3 {
    font-size: 1.3rem;
    color: green;
}

/* Footer */
footer {
    background-color: #1F1F1F;
    padding: 30px 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
}

.footer-info, .footer-links, .footer-social {
    margin: 10px;
}

.footer-info a {
    color: #00FF00;
    text-decoration: none;
}

.footer-links a {
    color: #E0E0E0;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    color: #00FF00;
}

.footer-social span {
    margin: 0 10px;
    color: #888; /* Inactive social icons */
}

/* Inquiry Page Specific Styles */
.inquiry-section {
    padding: 60px 20px;
    max-width: 600px;
    margin: auto;
    text-align: center;
}

.inquiry-title {
    font-size: 2.5rem;
    color: #00FF00; /* Lime green */
    margin-bottom: 30px;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.inquiry-form label {
    margin-bottom: 5px;
    font-weight: bold;
    color: #E0E0E0;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #333;
    background-color: #2a2a2a;
    color: #E0E0E0;
    width: 100%;
    box-sizing: border-box; /* Ensures padding doesn't affect width */
}

.inquiry-form textarea {
    resize: vertical;
}

.inquiry-form .cta-primary {
    background-color: #00FF00;
    color: #121212;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: center;
}

.inquiry-form .cta-primary:hover {
    background-color: #00CC00;
}

.back-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1rem;
}

.back-link:hover {
    color: #00FF00;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #1F1F1F;
        position: absolute;
        top: 70px;
        left: 0;
        padding: 10px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        text-align: center;
        margin: 10px 0;
    }

    .hamburger {
        display: block;
    }

    .cinematic-strip, .partner-section, .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .partner-panel {
        margin-bottom: 20px;
    }
}
