* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    background: linear-gradient(135deg, #c77d8b, #5b4b8a);
    color: #333;
}

.hero {
    display: flex;
    justify-content: space-between;
    padding: 80px 100px;
    min-height: 100vh;
}

.hero-left {
    width: 55%;
    color: #fff;
}

.hero-left h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.hero-left h2 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-left p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background-color: #6c63ff;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: #554ee6;
}

.hero-right {
    width: 35%;
    background-color: #fff;
    padding: 30px;
    border-radius: 16px;
}

.hero-right h3 {
    margin-bottom: 20px;
    font-size: 22px;
}

.hero-right ul {
    list-style: none;
}

.hero-right li {
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.6;
}

.content {
    background-color: #fff;
    padding: 60px 100px;
}

.content h2 {
    margin-bottom: 20px;
    font-size: 28px;
}

.content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}
