.hosting-hero {
    background-color: #0056ff; 
    color: white;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
}

.hosting-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

/* Left Content */
.hosting-text {
    flex: 1;
    max-width: 600px;
    color: white;
}

.hosting-text .starting-price {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ffec00;
}

.hosting-text h1 {
    font-size: 5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}

.hosting-text ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.hosting-text ul li {
    font-size: 1.4rem;
    margin-bottom: 10px;
    line-height: 1.5;
    display: flex;
    align-items: center;
}

.hosting-text ul li::before {
    content: "✔";
    color: #ffec00;
    margin-right: 10px;
}

.hosting-text .btn.primary {
    background: #ffec00;
    color: #0056ff;
    padding: 12px 25px;
    font-size: 1.6rem;
    font-weight: bold;
    border-radius: 25px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    margin-top: 20px;
}

.hosting-text .btn.primary:hover {
    background: #f5d700;
}

/* Right Content */
.hosting-art {
    flex: 1;
    text-align: center;
}

.hosting-art img {
    width: 500px;
    max-width: 100%;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hosting-container {
        flex-direction: column;
        text-align: center;
    }

    .hosting-text {
        margin-bottom: 30px;
    }

    .hosting-art img {
        width: 80%;
    }
}
