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

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    color: #e8e8e8;
    background: linear-gradient(135deg, #2c2c2c 0%, #4f4a4a 50%, #3a3a3a 100%);
    background-attachment: fixed;
    line-height: 1.6;
    min-height: 100vh;
}

.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    max-width: 980px;
    margin: 0 auto;
}

.content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(50px);
    border: 8px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    max-width: 750px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.logo {
    border: 8px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    margin-bottom: 25px;
}

h1 {
    color: #ffffff;
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.tagline {
    color: #e0e0e0;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 1.7;
}

.services {
    color: #d0d0d0;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-section {
    margin-top: 30px;
}

.email-btn {
    display: inline-block;
    background: linear-gradient(45deg, #ff8900, #ff6600);
    color: white;
    padding: 16px 32px;
	border: 8px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
	box-shadow: 0 8px 32px rgba(255, 137, 0, 0.2);
}

.email-btn:hover {
    background: linear-gradient(45deg, #ff6600, #ff7700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 137, 0, 0.2);
    color: white;
}

.email-text {
    margin-top: 15px;
    font-size: 16px;
}

.email-text a {
    color: #ff8900;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.email-text a:hover {
    color: #ff7700;
    text-decoration: underline;
}

.footer {
    margin-top: 40px;
    padding: 25px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .wrapper {
        padding: 15px;
        max-width: 100%;
    }
    
    .content {
        padding: 30px 20px;
        margin: 20px 0;
        max-width: 95%;
    }
    
    h1 {
        font-size: 1.8em;
    }
    
    .tagline {
        font-size: 16px;
    }
    
    .services {
        font-size: 15px;
    }
    
    .logo {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 25px 15px;
    }
    
    h1 {
        font-size: 1.6em;
    }
    
    .tagline, .services {
        font-size: 14px;
    }
    
    .logo {
        width: 150px;
        height: 150px;
    }
}