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

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    background-image: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url('background.jpg');
    background-size: cover;
    background-position: center;
}

.container {
    width: 90%;
    max-width: 800px;
    text-align: center;
    padding: 60px 40px;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(200, 200, 200, 0.3);
}

.content {
    max-width: 600px;
    margin: 0 auto;
}

.logo {
    margin-bottom: 40px;
}

.logo img {
    max-width: 220px;
    height: auto;
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
    letter-spacing: 1px;
}

p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.tagline {
    font-size: 1.5rem;
    color: #1e88e5;
    font-weight: 300;
    margin-bottom: 30px;
}

.divider {
    width: 60px;
    height: 3px;
    background-color: #1e88e5;
    margin: 0 auto 30px;
    border-radius: 2px;
}

.contact {
    margin-top: 40px;
    font-size: 1rem;
    color: #555;
    font-weight: 500;
}

.email-button {
    display: inline-block;
    padding: 14px 40px;
    background-color: #1e88e5;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    margin: 20px 0;
    transition: all 0.3s;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    box-shadow: 0 4px 6px rgba(30, 136, 229, 0.2);
}

.email-button:hover {
    background-color: #1565c0;
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(30, 136, 229, 0.3);
}

@media (max-width: 768px) {
    .container {
        padding: 40px 30px;
    }
    
    h1 {
        font-size: 2.8rem;
    }
    
    .tagline {
        font-size: 1.3rem;
    }
    
    p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 30px 20px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    .logo img {
        max-width: 160px;
    }
}