* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

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

.site-header {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.site-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1a1a1a;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #667eea;
}

.home-hero {
    padding: 80px 0;
    color: white;
}

.home-hero__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.home-hero__content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.home-hero__content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.button {
    display: inline-block;
    padding: 15px 30px;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.features {
    background: white;
    padding: 80px 0;
}

.features h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #1a1a1a;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 16px;
    transition: all 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

.page-content {
    background: white;
    padding: 60px 0;
    min-height: 60vh;
}

.page-content h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.page-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.sitemap-container {
    background: white;
    margin: 40px 0;
    border-radius: 16px;
    padding: 40px;
}

.sitemap-container h1 {
    text-align: center;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.sitemap-container > p {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.sitemap-section {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
}

.sitemap-section h2 {
    color: #667eea;
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sitemap-list {
    list-style: none;
}

.sitemap-list li {
    margin-bottom: 12px;
}

.sitemap-list a {
    color: #475569;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s;
}

.sitemap-list a:hover {
    color: #667eea;
    background: white;
}

.sitemap-list a i {
    width: 20px;
    text-align: center;
    color: #94a3b8;
}

.sitemap-list a:hover i {
    color: #667eea;
}

.back-to-home {
    text-align: center;
    margin-top: 50px;
}

.back-to-home a {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.back-to-home a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102,126,234,0.3);
}

.contact-info {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 40px;
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #555;
    font-size: 1.1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #667eea;
    width: 30px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.site-footer {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 30px 0;
    margin-top: auto;
}

@media (max-width: 768px) {
    .site-nav {
        flex-direction: column;
        gap: 20px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .home-hero__content {
        flex-direction: column;
        text-align: center;
    }

    .home-hero__content h1 {
        font-size: 2rem;
    }
}
