/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #fff;
    background: linear-gradient(125deg, #03421C 0%, #05581f 50%, #0a9444 100%);
    min-height: 100vh;
}

/* Header Styles */
.header {
    background: rgba(3, 66, 28, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 2px solid #ffdd62;
}

.header-container {
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
}

.logo img {
    height: 40px;
    margin-right: 0.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ffdd62;
}

.nav-menu a::after,
.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffdd62, #cfa91f);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.header-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    gap: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.9rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(125deg, #ffdd62 -4.11%, #cfa91f 70.56%);
    color: #03421C;
}

.btn-primary:hover {
    transform: translateY(-2px);
    color: #03421C;
    box-shadow: 0 5px 15px rgba(255, 221, 98, 0.4);
}

.btn-secondary {
    background: linear-gradient(96deg, #0a9444 4.45%, #08d05d 52.06%, #0a7f3c 99.67%);
    color: #fff;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 5px 15px rgba(10, 148, 68, 0.4);
}

.btn-danger {
    background: linear-gradient(125deg, #ff4757, #ff3742);
    color: #fff;
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 71, 87, 0.4);
    color: #fff;
}

/* Mobile Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 66, 28, 0.7);
    z-index: -1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(125deg, #ffdd62, #cfa91f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 221, 98, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(125deg, #ffdd62, #cfa91f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    width: 100%;
}

.content-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffdd62;
}

.content-text p {
    margin-bottom: 1rem;
}

.content-text ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.content-text li {
    margin-bottom: 0.5rem;
}

.content-image {
    text-align: center;
}

.content-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.content-image img:hover {
    transform: scale(1.05);
}

/* Features Section */
.features {
    background: rgba(3, 66, 28, 0.3);
    padding: 4rem 0;
    margin: 4rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 221, 98, 0.2);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #ffdd62;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffdd62;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffdd62;
}

.content-image {
    width: 100%;
}

/* Table Styles */
.table-container {
    overflow-x: auto;
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(255, 221, 98, 0.2);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    margin: 0;
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    word-wrap: break-word;
    max-width: 200px;
}

th {
    background: rgba(255, 221, 98, 0.2);
    color: #ffdd62;
    font-weight: bold;
    white-space: nowrap;
}

tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* FAQ Section */
.faq-section {
    margin: 4rem 0;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.faq-question {
    padding: 1.5rem;
    background: rgba(255, 221, 98, 0.1);
    cursor: pointer;
    font-weight: bold;
    color: #ffdd62;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 221, 98, 0.2);
}

.faq-answer {
    padding: 1.5rem;
    display: none;
}

.faq-answer.active {
    display: block;
}

/* Footer */
.footer {
    background: rgba(3, 66, 28, 0.9);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    border-top: 2px solid #ffdd62;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffdd62;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .content-grid {
        display: flex;
        align-items: center;
        gap: 2rem;
        flex-direction: column;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 1418px) {
    .header-container {
        padding: 0 1rem;
    }
    
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(3, 66, 28, 0.95);

    }

    .nav-menu {
        flex-direction: column;
        padding: 1rem;
        display: flex;
        gap: 1rem;
        align-items: center;
    }
    
    nav.active {
        display: block;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .header-buttons {
        gap: 0.5rem;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .main-content {
        padding: 2rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .content-text h2 {
        font-size: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .table-container {
        margin: 1rem 0;
        border-radius: 8px;
    }
    
    table {
        min-width: 400px;
        font-size: 0.85rem;
    }
    
    th, td {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
        max-width: 150px;
    }
    
    th {
        font-size: 0.9rem;
        padding: 0.75rem 0.5rem;
    }
}

@media (max-width: 590px) {
    .header-buttons .btn-danger{
        display: none;
    }
}

@media (max-width:480px) {
    .header-buttons {
        width: 100%;
        justify-content: center;
        margin-top: 15px;
        order: 3;
    }

    .header-container {
        flex-wrap: wrap;
    }

    .hero-title {
        font-size: 2rem;
    }

    .content-text h2 {
        font-size: 1.25rem;
    }

    .content-text p {
        font-size: 0.9rem;
    }
    
    .table-container {
        margin: 0.5rem 0;
        border-radius: 6px;
    }
    
    table {
        min-width: 350px;
        font-size: 0.8rem;
    }
    
    th, td {
        padding: 0.5rem 0.3rem;
        font-size: 0.8rem;
        max-width: 120px;
    }
    
    th {
        font-size: 0.85rem;
        padding: 0.5rem 0.3rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(255, 221, 98, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 221, 98, 0.8);
    }
}

.glow {
    animation: glow 2s ease-in-out infinite;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

.hidden {
    display: none;
}

/* Link Styles */
a {
    color: #ffdd62;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #cfa91f;
}

/* Highlighted text */
.highlight {
    color: #ffdd62;
    font-weight: bold;
}

/* Success/Error messages */
.success {
    color: #08d05d;
    background: rgba(8, 208, 93, 0.1);
    padding: 1rem;
    border-radius: 5px;
    border-left: 4px solid #08d05d;
}

.error {
    color: #ff4757;
    background: rgba(255, 71, 87, 0.1);
    padding: 1rem;
    border-radius: 5px;
    border-left: 4px solid #ff4757;
} 