* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(208deg, rgba(252, 167, 171, 1) 0%, rgba(244, 239, 234, 1) 49%, rgba(255, 255, 255, 1) 100%);
    color: #222;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
}

/* Marquee strip */
.marquee-strip {
    width: 100%;
    background: linear-gradient(208deg, #7D141D 0%, #EE2843 100%);
    color: #fff;
    font-weight: bold;
    padding: 8px 0;
    font-size: 16px;
    text-transform: uppercase;
}

/* Center content */
.center-content {
    text-align: center;
    max-width: 600px;
    padding: 40px;
}

.logo {
    width: 180px;
    height: 180px;
    background: url('DataBackup-Logo.png') no-repeat center/cover;
    margin: 0 auto 20px;
}

h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #EE2B44;
}

p {
    margin-bottom: 20px;
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.5;
}

.contact-container {
    margin-bottom: 30px;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 20px;
}

.socials a {
    color: #EE2B44;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 20px;
}

.socials a:hover {
    color: #F4EFEA;
    background: #EE2B44;
    transition: 0.3s ease;
}

footer {
    font-size: 12px;
    font-weight: 600;
    opacity: 0.9;
}
