/* Web Hosting page */
body {
    background-color: #E5E5E5;
}

/* Hero */
.hosting-hero {
    position: relative;
    overflow: hidden;
    height: 450px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.hosting-hero-image-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hosting-hero-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hosting-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.25));
}

.hosting-hero .container {
    position: relative;
    z-index: 2;
    height: 450px;
    display: flex;
    align-items: flex-end;
}

.hosting-hero-content {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding-bottom: 30px;
    align-items: right; 
    text-align: right;
    padding-left: 820px;
}

.hosting-hero-title {
    margin: 0;
    font-size: 32px;
    font-weight: 600;
    color: #4caf50;
    text-align: right;
    white-space: nowrap;
}

/* Cards section */
.hosting-section {
    background: #E5E5E5;
    padding: 60px 0;
}

.hosting-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.hosting-card {
    background: #0f2530;
    color: #fff;
    border-radius: 14px;
    padding: 22px 22px 18px 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.hosting-card-title {
    margin: 0 0 10px 0;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

.hosting-card-price {
    text-align: center;
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 10px;
}

.hosting-card-price strong {
    font-size: 38px;
    font-weight: 900;
    letter-spacing: 0.2px;
}

.hosting-features {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 6px;
    font-size: 13px;
    line-height: 1.45;
    opacity: 0.95;
    text-align: center;
}

.hosting-actions {
    margin-top: auto;
    display: flex;
    justify-content: center;
    padding-top: 14px;
}

.hosting-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.75);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.4px;
    transition: transform 0.15s ease, background 0.15s ease;
}

.hosting-btn:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-1px);
}

.hosting-empty {
    background: #fff;
    border-radius: 12px;
    padding: 22px;
    border: 1px solid rgba(0,0,0,0.06);
    text-align: center;
    color: #6b7280;
}

@media (max-width: 1024px) {
    .hosting-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .hosting-grid {
        grid-template-columns: 1fr;
    }
    .hosting-hero-title {
        font-size: 28px;
        white-space: normal;
    }
}
