:root {
    --hseo-primary: #1a202c;
    --hseo-accent: #2b6cb0;
    --hseo-text: #4a5568;
    --hseo-bg: #ffffff;
    --hseo-radius: 24px;
}

.hseo-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--hseo-text);
    line-height: 1.7;
}

.hseo-section {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: var(--hseo-bg);
    padding: 40px;
    border-radius: var(--hseo-radius);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
}

.hseo-section.hseo-reverse {
    flex-direction: row-reverse;
}

.hseo-image-group {
    flex: 1;
    position: relative;
    display: flex;
    gap: 16px;
}

.hseo-img-lg {
    width: 70%;
    height: 320px;
    object-fit: cover;
    border-radius: var(--hseo-radius);
}

.hseo-img-sm {
    width: 25%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--hseo-radius);
    align-self: flex-end;
}

.hseo-content {
    flex: 1.2;
}

.hseo-content h2 {
    font-size: 28px;
    color: var(--hseo-primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.hseo-content h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--hseo-accent);
    margin-top: 10px;
    border-radius: 2px;
}

.hseo-content p {
    font-size: 16px;
    margin-bottom: 16px;
    text-align: justify;
}

.hseo-content strong {
    color: var(--hseo-accent);
    font-weight: 600;
}

@media (max-width: 968px) {
    .hseo-section, .hseo-section.hseo-reverse {
        flex-direction: column;
        padding: 24px;
        gap: 24px;
    }
    .hseo-image-group {
        width: 100%;
    }
    .hseo-img-lg {
        width: 65%;
        height: 240px;
    }
    .hseo-img-sm {
        width: 30%;
        height: 160px;
    }
    .hseo-content h2 {
        font-size: 22px;
    }
}
/* Hosting Özellikler Bölümü Stilleri - public_html/css/linuxcss.css dosyasına eklenecektir */

:root {
    --hfeat-dark: #0f172a;
    --hfeat-blue: #0284c7;
    --hfeat-blue-light: #e0f2fe;
    --hfeat-text: #475569;
    --hfeat-bg-card: #ffffff;
    --hfeat-radius-lg: 20px;
    --hfeat-radius-md: 12px;
}

.hfeat-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--hfeat-text);
}

/* Üst Başlık Alanı */
.hfeat-header-zone {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    gap: 30px;
}

.hfeat-title-left {
    max-width: 750px;
}

.hfeat-title-left h2 {
    font-size: 28px;
    color: var(--hfeat-dark);
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.hfeat-title-left p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--hfeat-text);
}

/* Izgara Düzeni (Grid) */
.hfeat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

/* Kart Genel Yapısı */
.hfeat-card {
    background-color: var(--hfeat-bg-card);
    border: 1px solid #e2e8f0;
    border-radius: var(--hfeat-radius-lg);
    padding: 30px;
    transition: all 0.3s ease;
}

.hfeat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    border-color: #cbd5e1;
}

/* Öne Çıkan Sol Büyük Kart Efekti */
.hfeat-card-highlight {
    grid-row: span 2;
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    color: #ffffff;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Kart İçi Elementler */
.hfeat-icon-box {
    width: 48px;
    height: 48px;
    background-color: var(--hfeat-blue-light);
    color: var(--hfeat-blue);
    border-radius: var(--hfeat-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.hfeat-card-highlight .hfeat-icon-box {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.hfeat-card h3 {
    font-size: 18px;
    color: var(--hfeat-dark);
    font-weight: 600;
    margin-bottom: 12px;
}

.hfeat-card-highlight h3 {
    color: #ffffff;
    font-size: 22px;
}

.hfeat-card p {
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;
}

.hfeat-card strong {
    color: var(--hfeat-blue);
    font-weight: 600;
}

.hfeat-card-highlight strong {
    color: #38bdf8;
    font-weight: 600;
}

/* Buton Yapıları */
.hfeat-btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--hfeat-radius-md);
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.hfeat-btn-outline {
    color: var(--hfeat-blue);
    border: 2px solid var(--hfeat-blue);
}

.hfeat-btn-outline:hover {
    background-color: var(--hfeat-blue);
    color: #ffffff;
}

.hfeat-btn-solid {
    background-color: var(--hfeat-blue);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.2);
}

.hfeat-btn-solid:hover {
    background-color: #0369a1;
    transform: translateY(-1px);
}

/* Alt Banner Alanı */
.hfeat-footer-banner {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--hfeat-radius-lg);
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.hfeat-banner-text h3 {
    font-size: 18px;
    color: var(--hfeat-dark);
    margin-bottom: 6px;
    font-weight: 600;
}

.hfeat-banner-text p {
    font-size: 14px;
    color: var(--hfeat-text);
}

/* Responsive Düzenlemeler */
@media (max-width: 968px) {
    .hfeat-header-zone {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .hfeat-grid {
        grid-template-columns: 1fr;
    }
    
    .hfeat-card-highlight {
        grid-row: span 1;
        justify-content: transform;
    }
    
    .hfeat-footer-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
        gap: 20px;
    }
    
    .hfeat-action-right, .hfeat-banner-action {
        width: 100%;
    }
    
    .hfeat-btn {
        width: 100%;
        text-align: center;
    }
}