

.hosting-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #111 100%);
}

.hosting-column {
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.hosting-intro-section {
    width: 100%;
    padding: 2rem;
    background: rgba(15, 15, 15, 0.75);
    border-radius: 12px;
    border: 1px solid #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
}

.hosting-intro-section h1 {
    color: #00cccc;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-decoration: underline;
    text-decoration-color: #00cccc;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.hosting-intro-section p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.hosting-cta-btn {
    display: inline-block;
    padding: 0.6rem 1.8rem;
    background: #00cccc;
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.hosting-cta-btn:hover {
    background: #00aaaa;
    color: #fff;
    box-shadow: 0 0 15px #00cccc;
    transform: translateY(-2px);
}

.hosting-benefits-section {
    width: 100%;
    padding: 2rem;
    background: rgba(15, 15, 15, 0.75);
    border-radius: 12px;
    border: 1px solid #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
}

.hosting-benefits-section h2 {
    color: #00cccc;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    text-decoration: underline;
    text-decoration-color: #00cccc;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.hosting-benefits-section ul {
    list-style: disc inside;
    max-width: 700px;
    margin: 1rem auto 0;
    padding: 0;
    text-align: left;
}

.hosting-benefits-section ul li {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.6rem;
}

.hosting-steps-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
}

.hosting-step-cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
}

.hosting-step-card {
    background: rgba(15, 15, 15, 0.75);
    border: 1px solid #00ffff;
    border-radius: 12px;
    padding: 1.2rem;
    width: 220px;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.hosting-step-card h3 {
    color: #00cccc;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    text-decoration: underline;
    text-decoration-color: #00cccc;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.hosting-step-card p {
    color: #ccc;
    font-size: 0.92rem;
    line-height: 1.6;
}

.hosting-step-btn {
    display: inline-block;
    padding: 6px 14px;
    background: #00cccc;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.hosting-step-btn:hover {
    background: #00aaaa;
    box-shadow: 0 0 15px #00cccc;
    transform: translateY(-2px);
}

.hosting-resources-section {
    width: 100%;
    text-align: center;
    padding: 1rem 0;
}

.hosting-resources-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 1rem;
}

.hosting-resource-card {
    width: 200px;
    height: 250px;
    border: 2px solid #0ff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.hosting-resource-card img {
    width: 100%;
    height: 70%;
    object-fit: cover;
}

.hosting-resource-title {
    width: 100%;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.35);
    color: #00cccc;
    font-size: 1rem;
    border-top: 1px solid #0ff;
}

.hosting-resource-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 18px #00cccc;
}

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

@media (max-width: 768px) {
    .hosting-step-cards-wrapper,
    .hosting-resources-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }

    .hosting-step-card,
    .hosting-resource-card {
        width: 85%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hosting-step-card h3,
    .hosting-intro-section h1 {
        font-size: 1.5rem;
    }

    .hosting-step-card p,
    .hosting-benefits-section ul li {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .hosting-step-card h3,
    .hosting-intro-section h1 {
        font-size: 1.3rem;
    }

    .hosting-step-card p,
    .hosting-benefits-section ul li {
        font-size: 0.85rem;
    }
}
