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

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.container {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 60px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.content h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 700;
}

.content p {
    font-size: 1.2em;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.5;
}

.contact-button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px;
    background-color: #ff4b5c;
    color: #fff;
    font-size: 1.1em;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: #ff2d3a;
    cursor: pointer;
}

@media (max-width: 768px) {
    .content h1 {
        font-size: 2em;
    }
    
    .content p {
        font-size: 1em;
    }
}
