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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    padding: 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
}

.logo-wrapper {
    margin-bottom: 30px;
}

.logo {
    max-width: 150px;
    height: auto;
    object-fit: contain;
}

.text-content {
    color: #333;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 500;
}

.cta-button {
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.6);
}

.cta-button:active {
    transform: translateY(0);
}

@media (max-width: 480px) {
    .container {
        padding: 30px 20px;
    }

    .logo {
        max-width: 120px;
    }

    .text-content {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .cta-button {
        padding: 14px 30px;
        font-size: 16px;
    }
}