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

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

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.content {
    text-align: center;
    max-width: 600px;
}

.logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin-bottom: 40px;
}

.coming-soon {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: #E67E22;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.email-link {
    display: inline-block;
    font-size: 1.1rem;
    color: #E67E22;
    text-decoration: none;
    padding: 12px 24px;
    border: 2px solid #E67E22;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.email-link:hover {
    background-color: #E67E22;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.3);
}

@media (max-width: 768px) {
    .logo {
        max-width: 250px;
        margin-bottom: 30px;
    }

    .coming-soon {
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .email-link {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 200px;
        margin-bottom: 25px;
    }

    .coming-soon {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
}