:root {
    --primary-color: rgb(11, 80, 11);
    --secondary-color: #00E676;
    --text-color: #333333;
    --light-bg: rgb(246, 250, 245);
    --dark-bg: rgb(31, 31, 31);
    --white: #ffffff;
    --black: #000000;
    --dark-text-on-light: #1f1f1f;
    --light-text-on-dark: #f0f0f0;
    --error: #F44336;
    --disabled-light: #E0E0E0;
    --disabled-dark: #424242;
    --border-radius: 8px;
    --card-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --hover-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
}

/* Add smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Update typography styles */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}

p {
    margin-bottom: 1.5rem;
}

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

/* Header Styles */
header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 10px 0;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

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

.nav-links li {
    margin-left: 30px;
    position: relative;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 0;
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s;
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.nav-links a.btn {
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--white);
}

.nav-links a.btn:hover {
    background-color: var(--white);
    color: var(--primary-color);
    text-shadow: none;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--primary-color), #093809);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    max-width: 850px;
}

.hero-logo {
    margin: 0 auto 30px;
    animation: fadeIn 1s ease-in;
    opacity: 0;
    animation-fill-mode: forwards;
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    position: relative;
    border-radius: 16px;
}

.app-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(0, 230, 118, 0.5));
    position: relative;
    z-index: 5;
    mix-blend-mode: normal;
}

.hero-logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    border-radius: 16px;
    box-shadow: 0 0 30px 5px rgba(0, 230, 118, 0.3);
    opacity: 0.8;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-in;
    opacity: 0;
    animation-fill-mode: forwards;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1.5s ease-in;
    opacity: 0;
    animation-fill-mode: forwards;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    color: var(--white);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    animation: fadeInUp 2s ease-in;
    opacity: 0;
    animation-fill-mode: forwards;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: bold;
    transition: all 0.3s;
    border: 2px solid transparent;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
    text-shadow: none;
}

.btn-accent {
    background-color: var(--secondary-color);
    color: #000000;
    font-weight: bold;
    text-shadow: none;
    border: 2px solid rgba(0, 0, 0, 0.3);
}

.btn-accent:hover {
    background-color: #00c565;
    color: #000000;
    border-color: rgba(0, 0, 0, 0.5);
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.section-title p {
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: var(--white);
    text-align: center;
    border-top: 4px solid var(--secondary-color);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}

.feature-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:nth-child(1) {
    transition-delay: 0.1s;
}

.feature-card:nth-child(2) {
    transition-delay: 0.2s;
}

.feature-card:nth-child(3) {
    transition-delay: 0.3s;
}

.feature-card:nth-child(4) {
    transition-delay: 0.4s;
}

.feature-card:nth-child(5) {
    transition-delay: 0.5s;
}

.feature-card:nth-child(6) {
    transition-delay: 0.6s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    background-color: rgba(0, 230, 118, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* App Screenshots */
.screenshots {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.screenshot-slider {
    margin-top: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    perspective: 1000px;
}

.screenshot {
    width: 250px;
    border-radius: 22px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 6px solid var(--white);
    position: relative;
    transform: rotateY(5deg);
    z-index: 1;
}

.screenshot:nth-child(even) {
    transform: rotateY(-5deg);
}

.screenshot:hover {
    transform: rotateY(0) scale(1.05);
    z-index: 2;
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background-color: var(--white);
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 50px;
}

.step {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.step.animate {
    opacity: 1;
    transform: translateY(0);
}

.step:nth-child(1) {
    transition-delay: 0.1s;
}

.step:nth-child(2) {
    transition-delay: 0.2s;
}

.step:nth-child(3) {
    transition-delay: 0.3s;
}

.step:nth-child(4) {
    transition-delay: 0.4s;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: #000000;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.step h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: var(--light-bg);
}

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

.faq-item {
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    background-color: var(--white);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--hover-shadow);
}

.faq-question {
    padding: 20px;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    transition: background-color 0.3s ease;
}

.faq-question::after {
    content: "+";
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s;
}

.faq-question.active {
    background-color: var(--secondary-color);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

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

.faq-answer.active {
    padding: 20px;
    max-height: 500px; /* Adjust this value based on your content */
}

/* Roadmap Section - Timeline Layout */
.roadmap {
    padding: 100px 0;
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.roadmap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%2300E676" fill-opacity="0.05" d="M0,160L60,138.7C120,117,240,75,360,80C480,85,600,139,720,144C840,149,960,107,1080,90.7C1200,75,1320,85,1380,90.7L1440,96L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    z-index: 0;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 50px 0 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 6px;
    background-color: var(--primary-color);
    top: 35px;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 3px;
    opacity: 1;
    z-index: 0;
}

.timeline-item {
    padding: 30px 30px 15px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    margin-bottom: 40px;
    opacity: 1;
    margin-top: 55px;
    z-index: 1;
}

.timeline-item:first-child {
    margin-top: 35px; /* Less margin for first item */
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item::before {
    content: '';
    display: block;
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    right: -45px;
    top: -60px;
    background-color: var(--light-bg); /* Match the page background color */
    z-index: 50; /* Below the marker but above the line */
}

.timeline-item:nth-child(even)::before {
    left: -45px;
    right: auto;
}

.timeline-marker {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    right: -40px;
    top: -55px;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Solid green background */
    background-color: var(--secondary-color);
    border: none;
    /* Add a subtle lighter green outline */
    box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.5);
}

/* Larger background circle */
.timeline-marker::after {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    background-color: var(--secondary-color);
    border-radius: 50%;
    z-index: -1;
    left: -10%;
    top: -10%;
}

.timeline-marker i {
    font-size: 2.5rem;
    color: var(--dark-bg); /* Dark icon color */
    position: relative;
    z-index: 100; /* Higher than the marker background */
}

.timeline-item:nth-child(even) .timeline-marker {
    left: -40px;
    right: auto;
}

.timeline-content {
    padding: 25px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    position: relative;
    transition: all 0.3s ease;
    border-top: 4px solid var(--secondary-color);
    z-index: 1;
}

.timeline-content:hover {
    box-shadow: var(--hover-shadow);
    transform: translateY(-5px);
}

.timeline-content::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    top: 15px;
    background-color: var(--white);
    transform: rotate(45deg);
}

.timeline-item:nth-child(even) .timeline-content::after {
    left: -10px;
    right: auto;
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
    text-align: center;
}

.roadmap-features {
    list-style: none;
    padding: 0;
}

.roadmap-features li {
    margin-bottom: 12px;
    padding-left: 10px;
    display: flex;
    align-items: center;
}

.roadmap-features li i {
    color: var(--secondary-color);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* Update mobile view for connectors */
@media (max-width: 768px) {
    .timeline::before {
        left: 40px;
        top: 35px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
        padding-top: 30px;
        margin-top: 55px;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-item::before {
        left: -5px;
        right: auto;
        z-index: 50;
        width: 90px;
        height: 90px;
    }
    
    .timeline-item:nth-child(even)::before {
        left: -5px;
    }
    
    .timeline-marker {
        left: 0;
        right: auto;
        top: -55px;
        width: 80px;
        height: 80px;
        z-index: 99;
        background-color: var(--secondary-color);
        border: none;
        box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.5);
    }
    
    .timeline-item:nth-child(even) .timeline-marker {
        left: 0;
    }
    
    .timeline-content::after {
        left: -10px;
        right: auto;
        top: 15px;
    }
}

/* Download Section */
.download {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), #093809);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%2300E676" fill-opacity="0.1" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,224C672,245,768,267,864,266.7C960,267,1056,245,1152,213.3C1248,181,1344,139,1392,117.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    z-index: 1;
    opacity: 0.3;
}

.download .container {
    position: relative;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    max-width: 800px;
}

.download h2 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.download p {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: white;
}

.app-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    background-color: rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: var(--border-radius);
    display: inline-flex;
    margin-left: auto;
    margin-right: auto;
}

.app-badge {
    display: inline-block;
    transition: transform 0.3s;
    background-color: var(--white);
    padding: 10px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.app-badge:hover {
    transform: scale(1.05);
}

.app-badge img {
    height: 60px;
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

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

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
    font-size: 1.2rem;
}

.social-link:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--primary-color);
        flex-direction: column;
        text-align: center;
        transform: translateY(-100%);
        transition: transform 0.3s;
        padding: 20px 0;
        z-index: 999;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .screenshot {
        width: 200px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Add modern scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--secondary-color);
}

/* Bug Report Section */
.bug-report {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-bg), #e9f7e9);
    position: relative;
    overflow: hidden;
}

.bug-report::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%2300E676" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,165.3C384,171,480,149,576,165.3C672,181,768,235,864,224C960,213,1056,139,1152,122.7C1248,107,1344,149,1392,170.7L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    z-index: 0;
}

.bug-report-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.bug-report-info {
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    border-left: 5px solid var(--primary-color);
}

.bug-report-info h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.bug-report-info p {
    margin-bottom: 25px;
    color: var(--text-color);
}

.bug-tips {
    list-style: none;
}

.bug-tips li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.bug-tips li i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.bug-report-form {
    padding: 30px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-color);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.2);
}

.form-submit {
    margin-top: 30px;
    text-align: right;
}

.form-submit button {
    padding: 12px 30px;
    font-size: 1rem;
}

.success-message {
    background-color: rgba(0, 230, 118, 0.1);
    border: 1px solid var(--secondary-color);
    border-radius: var(--border-radius);
    padding: 15px;
    display: flex;
    align-items: center;
    color: var(--primary-color);
    animation: fadeIn 0.5s ease;
}

.success-message i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-right: 10px;
}

.success-message p {
    margin: 0;
}

.error-message {
    background-color: rgba(244, 67, 54, 0.1);
    border: 1px solid #F44336;
    border-radius: var(--border-radius);
    padding: 15px;
    display: flex;
    align-items: center;
    color: #D32F2F;
    animation: fadeIn 0.5s ease;
    margin-top: 15px;
}

.error-message i {
    color: #F44336;
    font-size: 1.5rem;
    margin-right: 10px;
}

.error-message p {
    margin: 0;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), #093809);
    color: var(--white);
    text-align: center;
    padding: 150px 0 60px;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Info Box Styling */
.info-box {
    background-color: rgba(0, 230, 118, 0.08);
    border-left: 4px solid var(--secondary-color);
    padding: 20px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    margin-top: 30px;
}

.info-box h3 {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.info-box h3 i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.info-box p {
    margin: 0;
    font-size: 0.95rem;
}

/* Active Nav Link */
.nav-links a.active {
    color: var(--secondary-color);
}

.nav-links a.active::after {
    width: 100%;
}

/* Make the form responsive */
@media (max-width: 768px) {
    .bug-report-container {
        grid-template-columns: 1fr;
    }
    
    .bug-report-info,
    .bug-report-form {
        padding: 20px;
    }
}

/* Feature Request Page */
.feature-request-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.feature-request-info h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-tips {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.feature-tips li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.feature-tips li i {
    color: var(--accent-color);
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

/* Responsive design for feature request page */
@media (max-width: 768px) {
    .feature-request-container {
        grid-template-columns: 1fr;
    }
    
    .feature-request-info {
        order: 1;
    }
    
    .feature-request-form {
        order: 0;
    }
}

/* Add an active state highlight for the feature request link in the footer */
.footer-links a.active {
    color: var(--accent-color);
    font-weight: 500;
} 