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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    height: 100vh;
    overflow: hidden;
    background-color: #ffffff;
}

.coming-soon-container {
    height: 100vh;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.content {
    text-align: center;
    z-index: 1;
    padding: 2rem;
}

.logo {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #333;
}

.content p {
    font-size: 1.2rem;
    color: #666;
}

.contact-info {
    font-size: 1rem;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    transition: border-color 0.3s ease;
}

.contact-info a:hover {
    border-bottom-color: #fff;
}

@media (max-width: 768px) {
    .logo svg {
        width: 220px;
        height: 32px;
    }
    
    .content h2 {
        font-size: 1.8rem;
    }
    
    .content p {
        font-size: 1rem;
    }
}