* {
    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.8;
    color: #333;
    background-color: #f8f9fa;
}

.header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #f0b90b;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-links a:hover {
    background: #f0b90b;
    color: #1a1a2e;
}

.hero {
    background: linear-gradient(135deg, #0d1117 0%, #161b22 100%);
    color: #fff;
    padding: 6rem 2rem;
    text-align: center;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #f0b90b;
}

.hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin-bottom: 2rem;
    color: #c9d1d9;
}

.hero-features {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}

.feature-item {
    background: rgba(240, 185, 11, 0.1);
    border: 1px solid #f0b90b;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    min-width: 200px;
}

.feature-item .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: #f0b90b;
    margin-bottom: 0.5rem;
}

.section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: #f0b90b;
    margin: 1rem auto 0;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.card h3 {
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.card p {
    color: #666;
    line-height: 1.8;
}

.card .tag {
    display: inline-block;
    background: #f0b90b;
    color: #1a1a2e;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-top: 1rem;
    font-weight: bold;
}

.stats {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 5rem 2rem;
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    color: #f0b90b;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: #c9d1d9;
    margin-top: 0.5rem;
}

.news-list {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.news-item {
    padding: 2rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.news-item:last-child {
    border-bottom: none;
}

.news-date {
    background: #f0b90b;
    color: #1a1a2e;
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    text-align: center;
    min-width: 80px;
    font-weight: bold;
}

.news-date .day {
    font-size: 1.8rem;
    display: block;
}

.news-date .month {
    font-size: 0.85rem;
}

.news-content h3 {
    color: #1a1a2e;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.news-content p {
    color: #666;
    line-height: 1.8;
}

.news-content a {
    color: #f0b90b;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 0.5rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 2;
}

.about-image {
    background: linear-gradient(135deg, #f0b90b 0%, #f5d76e 100%);
    border-radius: 15px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
}

.contact-section {
    background: linear-gradient(135deg, #0d1117 0%, #161b22 100%);
    color: #fff;
    padding: 5rem 2rem;
}

.contact-section .section-title {
    color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(240, 185, 11, 0.2);
    border-color: #f0b90b;
}

.contact-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: #f0b90b;
    margin-bottom: 0.8rem;
}

.contact-card p {
    color: #c9d1d9;
    line-height: 1.8;
}

.form-section {
    max-width: 600px;
    margin: 3rem auto 0;
    background: rgba(255,255,255,0.05);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #f0b90b;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 1rem;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.btn {
    background: #f0b90b;
    color: #1a1a2e;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn:hover {
    background: #f5d76e;
    transform: translateY(-2px);
}

.footer {
    background: #0d1117;
    color: #c9d1d9;
    padding: 3rem 2rem;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #f0b90b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f5d76e;
}

.footer p {
    margin-bottom: 0.5rem;
}

.footer .copyright {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

.breadcrumb {
    background: #e9ecef;
    padding: 1rem 2rem;
    margin-bottom: 2rem;
}

.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
}

.breadcrumb span {
    color: #f0b90b;
    margin: 0 0.5rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    color: #1a1a2e;
    margin-bottom: 0.8rem;
}

.product-info p {
    color: #666;
    margin-bottom: 1rem;
}

.table-section {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

th {
    background: #1a1a2e;
    color: #f0b90b;
}

tr:hover {
    background: #f8f9fa;
}

.advantages-list {
    list-style: none;
    padding: 0;
}

.advantages-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.advantages-list .icon {
    font-size: 1.5rem;
    color: #f0b90b;
}

@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 250px;
    }

    .section {
        padding: 3rem 1rem;
    }

    .news-item {
        flex-direction: column;
    }
}
