* {
    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: #333;
    background: #f5f5f5;
}

.k7d9m2p {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.5s ease-out;
}

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

.n5x8q4w {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.p2m7k9r h1 {
    font-size: 24px;
    color: #fff;
    font-weight: 600;
    transition: transform 0.3s ease;
}

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

.p2m7k9r a {
    color: #fff;
    text-decoration: none;
}

.t8j3n6m {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

.t8j3n6m li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.t8j3n6m li a:hover::after {
    width: 100%;
}

.t8j3n6m li a:hover {
    background: rgba(255,255,255,0.1);
}

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

.w9d5h2k::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveBackground 20s linear infinite;
}

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

.c4q8n7j {
    text-align: center;
    color: #fff;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

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

.c4q8n7j h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.c4q8n7j p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.b6m3x9q {
    display: inline-block;
    padding: 12px 40px;
    background: #fff;
    color: #667eea;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.b6m3x9q:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.r5h2n8k {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

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

.x7k2d9n {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    animation: fadeIn 0.6s ease-out;
    animation-fill-mode: both;
}

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

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

.x7k2d9n:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.q3w8n5j {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.m2k9p7x {
    padding: 20px;
}

.m2k9p7x h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.m2k9p7x p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.f8n3q6k {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.f8n3q6k:hover {
    color: #764ba2;
}

.h4n7m2p {
    text-align: center;
    margin-bottom: 40px;
}

.h4n7m2p h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.h4n7m2p h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.h4n7m2p p {
    color: #666;
    font-size: 16px;
    margin-top: 20px;
}

.d9k5x2m {
    background: #fff;
    padding: 60px 0;
}

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

.v3m7k9x {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.z8n2q5k h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.z8n2q5k p,
.z8n2q5k ul {
    opacity: 0.9;
    line-height: 1.8;
}

.z8n2q5k ul {
    list-style: none;
}

.z8n2q5k ul li {
    margin-bottom: 10px;
}

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

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

.t5k9m3x {
    text-align: center;
    padding: 20px 0;
    background: rgba(0,0,0,0.2);
    margin-top: 40px;
}

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

.y2n8k4p.g7m3k9x {
    opacity: 1;
    transform: translateY(0);
}

.y2n8k4p:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.s4n9k7m {
    padding: 10px 20px;
    background: #f9f9f9;
    border-radius: 5px;
    margin-bottom: 30px;
    font-size: 14px;
    color: #666;
}

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

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

.w3k8n5j {
    background: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    animation: fadeIn 0.6s ease-out;
}

.w3k8n5j h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
}

.w3k8n5j img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin: 20px 0;
}

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

.p7m2k9n {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    font-size: 14px;
    color: #999;
}

.p7m2k9n span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.n8k3m7q {
    list-style: none;
    margin: 20px 0;
}

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

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

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

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

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

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

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

    .w9d5h2k {
        height: 400px;
    }

    .c4q8n7j h2 {
        font-size: 32px;
    }

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

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

    .w3k8n5j {
        padding: 20px;
    }
}
