* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0a0a;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e0e0e0;
}

.container {
    width: 100%;
    max-width: 800px;
    padding: 2rem;
}

.content {
    text-align: center;
}

.logo h1 {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.tagline {
    font-size: 1.2rem;
    letter-spacing: 0.3em;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 4rem;
}

.main-content {
    margin: 4rem 0;
}

.main-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.contact-info {
    margin: 2rem 0;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border: 2px solid #333333;
    border-radius: 50px;
    transition: all 0.3s ease;
    background: #1a1a1a;
}

.contact-btn:hover {
    background: #2a2a2a;
    border-color: #555555;
    transform: translateY(-2px);
}

.footer {
    margin-top: 4rem;
    opacity: 0.7;
}

.footer p {
    font-size: 0.9rem;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    
    .main-content h2 {
        font-size: 1.8rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .contact-btn {
        font-size: 1rem;
        padding: 0.8rem 2rem;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 0.8rem;
        letter-spacing: 0.2em;
    }
    
    .main-content h2 {
        font-size: 1.5rem;
    }
    
    .description {
        font-size: 0.95rem;
    }
}
