* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(72, 187, 120, 0.3);
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #48bb78;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo em {
    font-style: normal;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #48bb78;
    transform: translateY(-2px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #48bb78;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.hero {
    padding: 150px 0 100px;
    text-align: center;
    background: linear-gradient(180deg, rgba(72, 187, 120, 0.1) 0%, transparent 100%);
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #48bb78, #38a169, #48bb78);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.hero p {
    font-size: 18px;
    color: #a0aec0;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero .btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 10px;
}

.hero .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(72, 187, 120, 0.4);
}

.hero .btn-secondary {
    background: transparent;
    border: 2px solid #48bb78;
}

.hero .btn-secondary:hover {
    background: rgba(72, 187, 120, 0.1);
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.stat-item .number {
    font-size: 36px;
    font-weight: bold;
    color: #48bb78;
    margin-bottom: 10px;
}

.stat-item .label {
    font-size: 14px;
    color: #a0aec0;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: #ffffff;
}

.section-title span {
    color: #48bb78;
}

.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: #48bb78;
}

.product-card .icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #ffffff;
}

.product-card p {
    color: #a0aec0;
    font-size: 14px;
    line-height: 1.8;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.news-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    border-left: 4px solid #48bb78;
    transition: transform 0.3s ease, background 0.3s ease;
}

.news-card:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.1);
}

.news-card .date {
    font-size: 12px;
    color: #48bb78;
    margin-bottom: 10px;
}

.news-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
}

.news-card p {
    color: #a0aec0;
    font-size: 14px;
    line-height: 1.8;
}

.about {
    background: rgba(72, 187, 120, 0.05);
    border-radius: 20px;
    padding: 60px;
    margin: 50px 0;
}

.about h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #48bb78;
}

.about p {
    color: #a0aec0;
    font-size: 16px;
    line-height: 2;
    margin-bottom: 15px;
}

.contact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

.contact-item .icon {
    font-size: 36px;
    margin-bottom: 15px;
    color: #48bb78;
}

.contact-item h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ffffff;
}

.contact-item p {
    color: #a0aec0;
    font-size: 14px;
}

footer {
    background: rgba(0, 0, 0, 0.5);
    padding: 50px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: #48bb78;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #48bb78;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #718096;
    font-size: 14px;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .contact {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}