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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    min-height: 100vh;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    background-image: url('london-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-content {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
}

.logo h1 {
    font-size: 3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.logo .subtitle {
    font-size: 1.1rem;
    color: #718096;
    font-weight: 300;
    margin-bottom: 2rem;
}

.construction-message h2 {
    font-size: 2.5rem;
    color: #4a5568;
    margin-bottom: 1rem;
    font-weight: 400;
}

.construction-message p {
    font-size: 1.2rem;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.construction-message .description {
    font-size: 1rem;
    color: #718096;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-info {
    border-top: 1px solid #e2e8f0;
    padding-top: 2rem;
}

.contact-info p {
    font-size: 0.95rem;
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-content {
        padding: 2rem 1.5rem;
    }

    .logo h1 {
        font-size: 2.5rem;
    }

    .construction-message h2 {
        font-size: 2rem;
    }
}