* {
    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.6;
    color: #2c3e50;
    background: #fff;
}

.q8m3k7n {
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.r5n8p2m {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.t4k9m6x h1 {
    font-size: 28px;
    color: #1a1a1a;
    font-weight: 600;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
}

.t4k9m6x h1:hover {
    transform: scale(1.05);
}

.t4k9m6x a {
    color: #1a1a1a;
    text-decoration: none;
}

.w7j2n5p {
    display: flex;
    list-style: none;
    gap: 35px;
}

.w7j2n5p li a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.w7j2n5p li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.w7j2n5p li a:hover::after {
    width: 80%;
}

.w7j2n5p li a:hover {
    color: #667eea;
}

.y9k3m8x {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.y9k3m8x::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: movePattern 20s linear infinite;
}

@keyframes movePattern {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(100px, 100px);
    }
}

.p6n2k9m {
    text-align: center;
    color: #fff;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
    max-width: 800px;
    padding: 0 20px;
}

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

.p6n2k9m h2 {
    font-size: 56px;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: 2px;
}

.p6n2k9m p {
    font-size: 22px;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.8;
}

.d3m7k5n {
    display: inline-block;
    padding: 14px 45px;
    background: rgba(255, 255, 255, 0.95);
    color: #667eea;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.d3m7k5n:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: #fff;
}

.x5k8n3m {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
}

.m9p2k7x {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeIn 0.8s ease-out;
}

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

.m9p2k7x h2 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.m9p2k7x h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.m9p2k7x p {
    color: #666;
    font-size: 18px;
    margin-top: 25px;
}

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

.k7m3n9x {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.k7m3n9x:nth-child(1) { animation-delay: 0.1s; }
.k7m3n9x:nth-child(2) { animation-delay: 0.2s; }
.k7m3n9x:nth-child(3) { animation-delay: 0.3s; }
.k7m3n9x:nth-child(4) { animation-delay: 0.4s; }
.k7m3n9x:nth-child(5) { animation-delay: 0.5s; }
.k7m3n9x:nth-child(6) { animation-delay: 0.6s; }

.k7m3n9x:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.n8k4m2x {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.k7m3n9x:hover .n8k4m2x {
    transform: scale(1.1);
}

.j2m9k5n {
    padding: 30px;
}

.j2m9k5n h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.j2m9k5n p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 15px;
}

.l5n3k8p {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.l5n3k8p:hover {
    color: #764ba2;
    transform: translateX(5px);
}

.b9k5m2x {
    background: #f8f9fa;
    padding: 80px 0;
}

.h6n2k9m {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 80px 0;
    margin-top: 100px;
}

.p3m7k5n {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
}

.r8n4k2m h3 {
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 600;
}

.r8n4k2m p,
.r8n4k2m ul {
    opacity: 0.95;
    line-height: 2;
    font-size: 15px;
}

.r8n4k2m ul {
    list-style: none;
}

.r8n4k2m ul li {
    margin-bottom: 12px;
}

.r8n4k2m ul li a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.r8n4k2m ul li a:hover {
    opacity: 0.7;
}

.t9n5k3x {
    text-align: center;
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.2);
    margin-top: 50px;
    font-size: 14px;
}

.q2n8k6m {
    position: fixed;
    bottom: 35px;
    right: 35px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
    z-index: 999;
}

.q2n8k6m.m5k9n3x {
    opacity: 1;
    transform: translateY(0);
}

.q2n8k6m:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.w3n7k2m {
    padding: 12px 25px;
    background: #f5f5f5;
    border-radius: 8px;
    margin-bottom: 35px;
    font-size: 14px;
    color: #666;
}

.w3n7k2m a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.w3n7k2m a:hover {
    color: #764ba2;
}

.y7k3m9n {
    background: #fff;
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    animation: fadeIn 0.6s ease-out;
}

.y7k3m9n h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.y7k3m9n img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 12px;
    margin: 25px 0;
}

.y7k3m9n p {
    color: #555;
    line-height: 1.9;
    margin-bottom: 25px;
    font-size: 16px;
}

.y7k3m9n h3 {
    font-size: 26px;
    color: #1a1a1a;
    margin: 35px 0 20px;
}

.k4n9m7p {
    display: flex;
    gap: 25px;
    margin: 25px 0;
    font-size: 14px;
    color: #999;
    flex-wrap: wrap;
}

.k4n9m7p span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.x9n2k5m {
    list-style: none;
    margin: 25px 0;
}

.x9n2k5m li {
    padding: 18px 0;
    border-bottom: 1px solid #eee;
}

.x9n2k5m li:last-child {
    border-bottom: none;
}

.x9n2k5m li a {
    color: #333;
    text-decoration: none;
    font-size: 17px;
    transition: color 0.3s ease;
    display: block;
}

.x9n2k5m li a:hover {
    color: #667eea;
}

.x9n2k5m li time {
    color: #999;
    font-size: 14px;
    margin-left: 18px;
}

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

.g7n4k2p .k7m3n9x {
    height: 100%;
}

@media (max-width: 768px) {
    .r5n8p2m {
        flex-direction: column;
        height: auto;
        padding: 20px;
    }

    .w7j2n5p {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .y9k3m8x {
        height: 80vh;
    }

    .p6n2k9m h2 {
        font-size: 36px;
    }

    .g4n8k2p,
    .g7n4k2p {
        grid-template-columns: 1fr;
    }

    .y7k3m9n {
        padding: 30px 20px;
    }

    .p3m7k5n {
        grid-template-columns: 1fr;
    }
}
