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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    margin: 0 auto;
}

.content {
    display: flex;
    align-items: center;
    gap: 25px;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.image-container {
    flex: 1;
    transform: translateX(-100px);
    opacity: 0;
    animation: slideInLeft 1s ease-out 0.5s forwards;
    max-width: 300px;
    margin: 0 auto;
}

.model-image {
    width: 100%;
    max-width: 300px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    object-fit: cover;
}

.text-content {
    flex: 1;
    transform: translateX(100px);
    opacity: 0;
    animation: slideInRight 1s ease-out 0.8s forwards;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ff69b4;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #e0e0e0;
}

ul {
    list-style: none;
    margin-bottom: 30px;
}

li {
    margin: 10px 0;
    font-size: 1.1rem;
    color: #e0e0e0;
}

.signup-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, #ff69b4, #ff1493);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.2s forwards;
}

.signup-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255,105,180,0.3);
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .content {
        flex-direction: column;
        text-align: center;
    }

    .image-container, .text-content {
        transform: translateX(0);
    }

    h1 {
        font-size: 2rem;
    }

    .model-image {
        margin-bottom: 30px;
    }
}
