* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    background-color: #f8fbff;
    color: #333;
    line-height: 1.6;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
.small-title,
.feature-list li,
.buttons,
.price-box,
.faq-question {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Match key UI fonts with dedicated server page */
.hero-badge,
.hero-title,
.section-header h2,
.pricing-table thead th,
.row-label,
.currency,
.amount,
.decimal,
.section-header-specs h3,
.expand-btn {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Match dedicated page title styles */
.vps-title {
    font-size: 42px;
    font-weight: 800;
    color: #0a0a0a;
    margin-bottom: 18px;
    line-height: 1.3;
    letter-spacing: -0.02em;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.gradient-blue {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Hero Section */
.hero {
    background: linear-gradient(8deg, #3b82f6, #1d4ed8);
    min-height: 500px;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.hero-title {
    color: white;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    word-break: break-word;
}

.hero-cta {
    background: white;
    color: #1d4ed8;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 32px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.hero-cta:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* Main Content */
.main-content {
    padding: 40px 0;
    background-color: #f8fbff;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    margin-top: 20px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: clamp(1.8rem, 2.5vw, 2.8rem);
    color: #0a0a0a;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    font-weight: 800;
    line-height: 1.2;
}

#gblue
 {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}



.section-description {
    display: flex;
    justify-content: center;
    gap: 40px;
    /* max-width: 800px; */
    margin: 0 auto;
    justify-self: center;
}

.description-left,
.description-right {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.description-left,
.description-right p{
    max-width: 550px;
}
.description-left strong,
.description-right strong {
    color: #333;
}

.container {
    /* Match configure page container width and gutters */
    margin: 0 auto;
    padding: 0 80px;
    width: 100%;
}

/* Avoid double gutters when containers are nested */
.container .container {
    padding-left: 0;
    padding-right: 0;
}

header {
    margin-bottom: 20px;
}

.header-content h1 {
    font-size: 28px;
    margin-bottom: 5px;
}

.header-content p {
    color: #666;
}

.server-listing-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.header-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
}

.add-ons {
    font-weight: 700;
    color: #0a0a0a;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: .02em;
}

.results-count {
    color: #333;
}

.sort-filter {
    display: flex;
    align-items: center;
}

.sort-filter span {
    margin-right: 10px;
    color: #666;
}

.main-content {
    display: flex;
    position: relative;
}

.filter-sidebar {
    width: 250px;
    padding: 20px;
    border-right: 1px solid #eee;
    background-color: #fff;
    position: relative;
    z-index: 10;
}

.mobile-filter-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-filter-btn {
    display: none;
    background-color: #2196F3;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    align-items: center;
    gap: 5px;
}

.mobile-filter-btn:hover {
    background-color: #1976D2;
}

.mobile-filter-header {
    display: none;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.mobile-filter-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.mobile-filter-close {
    background: none;
    border: none;
    font-size: 18px;
    color: #666;
    cursor: pointer;
    padding: 5px;
}

.mobile-filter-close:hover {
    color: #333;
}

/* Mobile filter footer apply button */
.mobile-filter-footer {
    display: none;
}

@media (max-width: 768px) {
    .hero {
        min-height: 400px;
        padding: 60px 20px;
    }

    .hero::after {
        width: 300px;
        height: 300px;
        right: -5%;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 15px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 8px 16px;
        margin-bottom: 16px;
    }

    .hero-title {
        font-size: clamp(1.6rem, 4vw, 2.5rem);
        line-height: 1.2;
    }

    .hero-cta {
        margin-top: 24px;
        padding: 12px 28px;
        font-size: 14px;
    }

    .section-header {
        margin-bottom: 30px;
        margin-top: 15px;
    }

    .section-header h2 {
        font-size: clamp(1.5rem, 3.5vw, 2rem);
        margin-bottom: 16px;
    }

    .mobile-filter-footer {
        display: block;
        /* position: sticky; */
        bottom: 0;
        left: 0;
        right: 0;
        background: #fff;
        padding: 12px 16px;
        border-top: 1px solid #eee;
    }

    .mobile-filter-apply {
        width: 100%;
        padding: 12px 16px;
        border-radius: 8px;
        background: linear-gradient(135deg, #3b82f6, #2563eb);
        color: #fff;
        border: none;
        font-weight: 700;
        font-size: 14px;
        cursor: pointer;
    }
}

.filter-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.filter-overlay.active {
    display: block;
}

.filter-toggle {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
    margin-right: 10px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: .4s;
}

.slider.round {
    border-radius: 20px;
}

.slider.round:before {
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:checked + .slider:before {
    transform: translateX(20px);
}

.filter-section h4 {
    color: #999;
    font-size: 12px;
    margin-bottom: 15px;
    font-weight: 600;
}

.filter-item {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.filter-item h5 {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.filter-item h5 i {
    color: #999;
}

.price-slider {
    margin-top: 15px;
}

.range-slider {
    width: 100%;
    height: 5px;
    background: #ddd;
    outline: none;
    -webkit-appearance: none;
    border-radius: 5px;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #2196F3;
    cursor: pointer;
}

/* RAM and Storage Slider Styles */
.ram-slider, .storage-slider {
    padding: 10px 0;
}

.slider-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.dual-slider {
    width: 100%;
    height: 5px;
    background: #ddd;
    outline: none;
    -webkit-appearance: none;
    border-radius: 5px;
    margin: 10px 0;
}

.dual-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #e53e3e;
    cursor: pointer;
}

.dual-slider::-moz-range-thumb {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #e53e3e;
    cursor: pointer;
    border: none;
}

.slider-track {
    position: relative;
    height: 5px;
    background: #ddd;
    border-radius: 5px;
    margin: 10px 0;
}

.slider-fill {
    position: absolute;
    height: 100%;
    background: #e53e3e;
    border-radius: 5px;
    width: 100%;
}

.ram-options, .storage-options {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ram-options .checkbox-container,
.storage-options .checkbox-container {
    margin-bottom: 5px;
    font-size: 12px;
}

/* Information Tags Styles */
.information-section {
    margin-top: 15px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 15px;
    align-items: center;
}

.information-tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.info-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    color: white;
}

.info-tag.ipv4 {
    background-color: #4caf50;
}

.info-tag.ipv6 {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.info-tag.ecc {
    background-color: #ff9800;
}

.info-tag.cloud {
    background-color: #9c27b0;
}

.info-tag.ssd {
    background-color: #607d8b;
}

.info-tag.nvme {
    background-color: #e91e63;
}

.price-range {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
    color: #666;
    font-size: 12px;
}

.checkbox-container {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 14px;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #eee;
    border-radius: 3px;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: #ccc;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: #2196F3;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.filter-dropdown {
    margin-top: 10px;
    display: none;
}

.filter-dropdown.active {
    display: block;
}

.server-results {
    flex: 1;
    padding: 20px;
    /* display: grid;
    grid-template-columns: 1fr;
    gap: 20px; */
}

.server-item {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: grid;
    grid-template-columns: 1fr auto;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    height: fit-content;
    margin-bottom: 20px;
}

.server-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.server-item:hover {
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
    border-color: #3b82f6;
}

.server-item:hover::before {
    opacity: 1;
}

.server-type {
    background-color: rgba(59, 130, 246, 0.08);
    color: #1d4ed8;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 12px;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.server-type.dedicated { color: #1d4ed8; }
.server-type.colocation { color: #16a34a; }
.server-type.tally { color: #e65100; }
.server-type.linux { color: #7c3aed; }
.server-type.vps { color: #0f766e; }

.server-info {
    grid-column: 1;
}

.server-model {
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 6px;
    color: #0a0a0a;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.availability {
    color: #16a34a;
    font-size: 12px;
    margin-bottom: 15px;
    font-weight: 600;
}

.specs {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px 15px;
    margin-top: 20px;
}

.spec-item {
    display: contents;
}

.spec-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #000000;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
}

.spec-label i {
    color: #6b7280;
    width: 16px;
    text-align: center;
}

.spec-value {
    color: #111827;
    font-weight: 500;
    font-size: 14px;
}

.price-section {
    grid-column: 2;
    align-self: end;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.price-info {
    text-align: right;
}

.price {
    font-size: 28px;
    font-weight: 800;
    color: #0a0a0a;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.vat-price {
    color: #6b7280;
    font-size: 12px;
}

.price-period {
    color: #6b7280;
    font-size: 12px;
    margin-bottom: 10px;
}

.setup-fee {
    margin: 5px 0;
    font-size: 12px;
    color: #666;
}

.availability-tag {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    margin: 6px 0;
    font-weight: 600;
}

.button-group {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.button {
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.button:hover::before {
    left: 100%;
}

.order-button {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 50%, #1e40af 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4), 0 2px 4px rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.order-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5), 0 4px 8px rgba(59, 130, 246, 0.3);
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%);
}

.configure-button {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    color: #1d4ed8;
    border: 2px solid #e0e7ff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.configure-button:hover {
    background: linear-gradient(135deg, #f0f7ff 0%, #e0e7ff 100%);
    border-color: #c7d2fe;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
    color: #1e40af;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-top: 1px solid #eee;
}

.prev-btn, .next-btn {
    background: none;
    border: none;
    font-size: 16px;
    color: #666;
    cursor: pointer;
    padding: 5px 10px;
}

.prev-btn:hover, .next-btn:hover {
    color: #333;
}

.page-numbers {
    display: flex;
    margin: 0 10px;
}

.page {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    margin: 0 5px;
    border: 1px solid #ddd;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page:hover {
    border-color: #999;
}

.page.active {
    background-color: #333;
    color: white;
    border-color: #333;
}

/* Dropdown styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background-color: #f9f9f9;
    color: #333;
    padding: 5px 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 3px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.dropbtn i {
    margin-left: 5px;
}

.dropdown-content {
    display: none;
    /*position: absolute;*/
    right: 0;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    z-index: 1;
    border-radius: 3px;
}

.dropdown-content a {
    color: #333;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    font-size: 14px;
}

.dropdown-content a:hover {
    background-color: #f5f5f5;
}



/* Feature list styles */
.feature-list {
    margin-top: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.feature-item i {
    color: #4caf50;
    margin-right: 5px;
}

/* Responsive styles */
@media (max-width: 1100px) {
    .server-results {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .main-content {
        flex-direction: column;
    }
    
    .filter-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #eee;
        position: static;
        height: auto;
        overflow: visible;
    }
    
    .server-item {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 15px;
    }
    
    .price-section {
        grid-column: 1;
        align-self: auto;
        flex-direction: column;
        align-items: flex-start;
        margin-top: 15px;
        gap: 8px;
    }
    
    .price-info {
        text-align: left;
    }
    
    .specs {
        gap: 6px 12px;
    }
    
    .button-group {
        margin-top: 10px;
    }
}

@media (max-width: 768px) {

    .container {
    padding: 0 20px;
    }
    .hero {
        min-height: 42vh;
        padding: 24px 0;
    }
    
    .hero-content {
        padding: 0 24px;
    }
    
    .hero-title {
        font-size: clamp(1.3rem, 4.5vw + 0.6rem, 2rem);
    }
    
    .section-description {
        flex-direction: column;
        gap: 16px;
        text-align: left;
    }
    
    .header-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .mobile-filter-controls {
        width: 100%;
        justify-content: space-between;
    }
    
    .mobile-filter-btn {
        display: flex !important;
    }
    
    .server-item {
        padding: 15px;
    }
    
    /* .specs {
        grid-template-columns: 1fr;
        gap: 4px 0;
    } */
    
    .spec-label {
        font-size: 14px;
    }
    
    .spec-value {
        font-size: 14px;
    }
    
    .filter-sidebar {
        position: fixed !important;
        top: 0;
        left: -100%;
        width: 80% !important;
        /* max-width: 300px; */
        height: 100vh;
        overflow-y: auto;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        transition: left 0.3s ease;
        border-right: none;
    }
    
    .filter-sidebar.active {
        left: 0;
    }
    
    .mobile-filter-header {
        display: flex !important;
    }
    
    .main-content {
        display: block;
    }
    
    .server-results {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: auto;
        padding: 50px 20px;
    }
    
    .hero::after {
        width: 200px;
        height: 200px;
        right: -10%;
    }
    
    .hero-content {
        padding: 0 12px;
    }
    
    .hero-badge {
        font-size: 10px;
        padding: 6px 14px;
        margin-bottom: 12px;
    }
    
    .hero-title {
        font-size: clamp(1.4rem, 5.5vw, 2rem);
        line-height: 1.15;
    }
    
    .hero-cta {
        margin-top: 20px;
        padding: 10px 24px;
        font-size: 13px;
    }
    
    .section-header h2 {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
        text-align: center;
        margin-bottom: 12px;
    }
    
    
    .section-description {
        gap: 12px;
    }
    
    .description-left,
    .description-right {
        font-size: 10px;
    }
    
    .section-header {
        margin-top: 0px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* .main-content {
        padding: 40px 0;
    } */
    
    .server-model {
        font-size: 18px;
    }
    
    .price {
        font-size: 24px;
    }
    
    .button-group {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }
    
    .button {
        width: 100%;
        padding: 12px;
        margin-bottom: 0;
        font-size: 14px;
    }
    
    .server-results {
        grid-template-columns: 1fr;
        padding: 10px;
        gap: 15px;
    }
    
    .server-item {
        padding: 12px;
        border-radius: 8px;
    }
    
    /* .specs {
        gap: 3px 0;
    } */
    
    .spec-label, .spec-value {
        font-size: 13px;
    }
    
    .price-section {
        gap: 6px;
    }
    
    .setup-fee, .vat-price, .price-period {
        font-size: 11px;
    }
    
    .availability-tag {
        font-size: 10px;
        padding: 3px 8px;
    }
    
    .mobile-filter-controls {
        /* flex-direction: column; */
        /* align-items: flex-start; */
        gap: 10px;
    }

    .sort-filter span {
        display: none;
    }
    
    .filter-sidebar {
        width: 100% !important;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .server-item {
        padding: 10px;
    }
    
    .price {
        font-size: 22px;
    }
    
    .server-model {
        font-size: 16px;
    }
    
    .specs {
        gap: 2px 12px;
    }
    
    .spec-label, .spec-value {
        font-size: 12px;
    }
}



/* Guarantee Section */

.guarantee-section {
    padding: 30px 80px;
    background: transparent;
}

.guarantee-container {
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.guarantee-content {
    flex: 1;
    padding: 50px;
}

.guarantee-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.guarantee-content p {
    font-size: 18px;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 30px;
}

.guarantee-image {
    flex: 1;
    text-align: center;
    position: relative;
}

.guarantee-image img {
    max-width: 60%;
    height: auto;
    border-radius: 16px;
}

@media (max-width: 992px) {
    .guarantee-container {
        flex-direction: column;
        gap: 30px;
        padding: 30px;
    }

    .guarantee-content {
        padding: 20px 0;
        text-align: center;
    }

    .guarantee-content h2 {
        font-size: 30px;
    }

    .guarantee-content p {
        font-size: 16px;
    }

}

@media (max-width: 768px) {
    .guarantee-section {
        padding: 30px 5%;
    }

    .empower-image img {
        max-width: 100%;
    }

    .guarantee-container {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .guarantee-section {
        padding: 20px 5%;
    }

    .guarantee-container {
        padding: 20px;
        gap: 20px;
        border-radius: 16px;
    }

    .guarantee-content {
        padding: 10px 0;
    }

    .guarantee-content h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .guarantee-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }

}