.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 85px 8%;
}

.hero-text {
    max-width: 500px;
}

.hero-text h1 {
    font-size: 45px;
    margin-bottom: 15px;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 20px;
}

.hero-btn {
    background: #4b5bdc;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.1s ease;
}

.hero-img img {
    width: 875px;
    max-width: 875px;
    height: 535px;
    border-radius: 16px;
}

.hero-btn:hover {
    background: #3b4bcc;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(75, 91, 220, 0.3);
}