* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #c74545;
    --secondary-color: #9b3636;
    --text-color: #333;
    --bg-color: #fff;
    --bg-dark: #1a1a1a;
    --accent-color: #ff6b6b;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

.hdr9x {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper8z {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo4m {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo4m img {
    height: 40px;
    width: auto;
    background: white;
    padding: 5px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.nav-links3k {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links3k a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-links3k a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.menu-toggle6p {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.menu-toggle6p span {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s;
    border-radius: 3px;
}

.hero-section5r {
    position: relative;
    background-image: url('./0_VM8UK6564dAJH5oL.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 5rem 2rem;
    margin: 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section5r::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(199, 69, 69, 0.85), rgba(155, 54, 54, 0.85));
    z-index: 1;
}

.hero-content7w {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content7w h1 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content7w h1 i {
    color: #ffeb3b;
    margin-right: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.tag-list2x {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.tag-item9b {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.download-btn-main8x {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(199, 69, 69, 0.3);
    cursor: pointer;
    border: none;
}

.download-btn-main8x:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(199, 69, 69, 0.4);
}

.hero-desc4n {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}


.hero-image3r {
    margin: 2rem 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.hero-image3r img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.content-section2w {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.section-title6k {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title6k i {
    color: var(--primary-color);
}

.content-block5p {
    margin-bottom: 3rem;
}

.content-block5p h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.content-block5p h3 i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.content-block5p p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #555;
}

.feature-grid8m {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature-card7r {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.feature-card7r:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.feature-card7r h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.article-list9x {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.article-item4k {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.article-item4k:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.article-item4k h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.article-item4k h3 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-item4k h3 a:hover {
    color: var(--primary-color);
}

.article-meta7p {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.article-excerpt2n {
    color: #666;
    line-height: 1.6;
}

.footer8w {
    background: var(--bg-dark);
    color: white;
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

.footer-content3m {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid7x {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col4m h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col4m h3 i {
    font-size: 1rem;
}

.footer-col4m p {
    color: #ccc;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-links6k {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links6k li {
    color: #ccc;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links6k li i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.footer-links6k a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links6k a:hover {
    color: var(--accent-color);
}

.footer-bottom2x {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #888;
}

@media (max-width: 768px) {
    .nav-links3k {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem;
        gap: 1.5rem;
    }
    
    .nav-links3k.active8z {
        left: 0;
    }
    
    .menu-toggle6p {
        display: flex;
    }
    
    .hero-section5r {
        min-height: 500px;
        padding: 3rem 1rem;
    }
    
    .hero-content7w h1 {
        font-size: 1.8rem;
    }
    
    .hero-desc4n {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .section-title6k {
        font-size: 1.5rem;
    }
    
    .feature-grid8m {
        grid-template-columns: 1fr;
    }
    
    .footer-grid7x {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .nav-wrapper8z {
        padding: 1rem;
    }
}

