.c-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    margin-bottom: 64px;
}

@media (min-width: 768px) {
    .c-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.c-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 32px;
}

.c-stats-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid #f3f4f6;
}

.c-stats-card h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.c-stats-card p {
    font-size: 0.875rem;
}

.c-image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(41, 105, 255, 0.1) 0%, rgba(41, 105, 255, 0.05) 100%);
    padding: 16px;
}

.c-image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.c-about-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid #f3f4f6;
}

.c-about-card h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.c-about-card p {
    margin-bottom: 24px;
}

.c-features-list {
    list-style: none;
    margin-bottom: 24px;
}

.c-features-list li {
    display: flex;
    align-items: center;
    color: #374151;
    margin-bottom: 12px;
}

.c-features-list li span:first-child {
    margin-right: 8px;
}

.c-button {
    background: #2969ff;
    color: white;
    padding: 12px 24px;
    border-radius: 9999px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    width: fit-content;
    transition: background-color 0.2s;
}

.c-button.c-gray {
    background: #374151;
}

.c-button:hover {
    opacity: .8;
}

.c-graph {
    width: 100%;
    margin-top: 16px;
    background: linear-gradient(180deg, rgba(41, 105, 255, 0.1) 0%, rgba(41, 105, 255, 0.05) 100%);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

/* Services Section Styles */
.c-services-section {
    background: #111827;
    padding: 64px 16px;
}

.c-services-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .c-services-header {
        grid-template-columns: 2fr 1fr;
    }
}

.c-services-title {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.c-services-description {
    color: #9ca3af;
    text-align: right;
}

.c-services-link {
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-top: 8px;
    border: 1px solid white;
    border-radius: 9999px;
    padding: 8px 15px;
}

.c-services-link:hover {
    opacity: .8;
}

.c-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .c-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.c-left-bar {
    width: 4px; 
    height: 24px; 
    background: #FFB801; 
    display: inline-block;
    margin-right: 12px; 
    vertical-align: middle;
}

.c-service-card {
    background: #1f2937;
    border-radius: 12px;
    padding: 24px;
    height: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.c-service-card.c-purple {
    background: #2969ff;
}

.c-cloud {
    font-size: 48px; 
    color: white; 
    margin-bottom: 24px;
    display: flex;
}

.c-cloud h3 {
    margin: 0;
}

.c-service-card-title {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.c-service-card h3 {
    color: white; 
    font-size: 1.25rem; 
    margin-bottom: 8px;
}

.c-service-card p {
    color: #9ca3af; 
    font-size: 15px; 
    margin-bottom: 24px;
}

.c-service-card.c-purple p,
.c-service-card.c-purple ul li {
    color: white;
}

.c-service-card.c-purple .c-features-list {
    margin-bottom: 10px;
}

.c-service-card.c-purple .c-button {
    margin-bottom: 20px;
    background: #FFB801;
}

.c-service-card img {
    width: 250px;
    max-width: 250px;
    margin: 0 auto;
}

.c-stats-container {
    background: #1f2937;
    border-radius: 12px;
    padding: 32px;
    margin-top: 48px;
    text-align: center;
}

.c-stats-header {
    color: white;
    margin-bottom: 32px;
    max-width: 65%;
}

.c-stats-header p span {
    color: #FFB801;
}

.c-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .c-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .c-stats-header {
        max-width: 100%;
    }
    .c-stat-item h3 {
        text-align: left;
    }
}

.c-stat-item h3 {
    color: white;
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.c-stat-item p {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Sidebar Styles */
.iph-sidebar {
    width: 280px;
    height: fit-content;
    overflow-y: auto;
}

.iph-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 0 10px;
}

.iph-filter-header h3 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.iph-reset-filter {
    color: #2969ff;
    text-decoration: none;
    font-size: 14px;
    display: none;
}

.iph-reset-filter:hover {
    text-decoration: underline;
}

.iph-filter-section {
    margin-bottom: 10px;
    background: #f6f6f6;
    padding: 5px 15px;
    border-radius: 10px;
}

.iph-filter-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.iph-expand-icon {
    font-size: 16px;
    color: black;
    transition: transform 0.3s ease;
}

.iph-filter-title.iph-expanded .iph-expand-icon {
    transform: rotate(0deg);
}

.iph-filter-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 5px;
}

.iph-filter-content.iph-collapsed {
    display: none;
}

.iph-checkbox-item {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 15px;
    color: #333;
    position: relative;
    padding-left: 24px;
    font-weight: 500;
    justify-content: space-between;
}

.iph-checkbox-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.iph-checkmark {
    position: absolute;
    left: 0;
    top: 2px;
    height: 16px;
    width: 16px;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 3px;
}

.iph-checkbox-item input:checked ~ .iph-checkmark {
    background-color: #2969ff;
    border-color: #2969ff;
}

.iph-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.iph-checkbox-item input:checked ~ .iph-checkmark:after {
    display: block;
}

.iph-checkbox-item .iph-checkmark:after {
    left: 4px;
    top: 1px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.iph-count {
    color: #666;
    font-size: 13px;
    line-height: 1.4;
    margin-left: 4px;
}

/* Main Content Styles */
.iph-main-content {
    flex: 1;
    margin: 8px 0 0 30px;
    background-color: #fff;
}

.iph-server-card {
    background-color: #f6f6f6;
    border: 1px solid #c5c5c5;
    border-radius: 10px;
    margin-bottom: 25px;
    padding: 20px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    display: flex;
    justify-content: space-between;
}

.iph-server-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.iph-server-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
}

.iph-server-title {
    font-size: 25px;
    font-weight: 600;
    color: black;
    line-height: 1;
}

.iph-server-price {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.iph-server-price .units-section-price span {
    font-size: 35px !important;
}

.iph-server-price .decimal-section-price .decimal-area {
    height: 15px !important;
}

.iph-price {
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.iph-period {
    font-size: 14px;
    color: #666;
    margin-left: 4px;
}

.iph-tax-info {
    font-size: 12px;
    color: #666;
    margin-top: 2px;
}

.iph-server-specs {
    font-size: 14px;
    color: #454545;
}

.iph-server-details {
    padding-top: 16px;
}

.iph-detail-row {
    display: grid;
    align-items: flex-end;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}

.iph-detail-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    height: 100%;
    max-width: 180px;
}

.iph-detail-item-btn .configure_product {
    font-size: 20px !important;
    padding: 10px 15px !important;
    border-radius: 10px !important;
}

.iph-detail-row .iph-detail-item:not(:last-child) {
    border-right: 1px solid #b9b9b9;
    padding-right: 20px;
}

.iph-detail-label {
    font-size: 14px;
    color: #454545;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.iph-detail-label strong {
    font-weight: 600;
}

.option-spec-package {
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    column-gap: 6px;
}

.iph-detail-value {
    font-size: 15px;
    color: #454545;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 10px;
    line-height: 1.4;
}

.iph-item-badge {
    background-color: #f8f9fa;
    border: 1px solid #28a745;
    border-radius: 16px;
    padding: 4px 12px;
    font-size: 12px;
    color: #28a745;
    font-weight: 500;
    white-space: nowrap;
    margin-bottom: 4px;
}

.iph-configure-btn {
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.iph-configure-btn:hover {
    background-color: #218838;
}

.container-fluid-iph {
    max-width: 1396px !important;
}

.m-0 {
    margin: 0px !important;
}

.p-0 {
    padding: 0px !important;
}

.skeleton-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
}

.skeleton-text {
  width: 100%;
  height: 125px;
  background: #e0e0e0;
  border-radius: 10px;
  animation: shimmer 1.5s infinite linear;
}

.skeleton-text.short {
  width: 60%;
}

.filters-container {
    display: none;
    align-items: center;
    column-gap: 30px;
    margin-bottom: 20px;
    justify-content: center;
}

.show-filter-element {
    padding: 5px 15px;
    border: 2px solid #2969ff;
    border-radius: 10px;
    color: #2969ff;
}

.clear-filter-element {
    padding: 5px 15px;
    border: 2px solid #2969ff;
    border-radius: 10px;
    color: white;
    background-color: #2969ff;
    display: none;
}

.clear-filter-element .iph-reset-filter {
    color: white;
    font-size: unset;
}

.iph-close-filter {
    display: none;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #2969ff;
    color: white;
}

.iph-sidebar.visible-filter {
    transform: translateX(0);
    opacity: 1;
}

.show-filter-stat {
    background-color: rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.primary-iph-reset-filter {
    cursor: pointer;
}

.filter-title {
    line-height: 1.4;
}

.ml-0 {
    margin-left: 0px !important;
}

@keyframes shimmer {
  0% {
    background-position: 100%;
  }
  100% {
    background-position: -100%;
  }
}

.skeleton-text {
  background: linear-gradient(
    90deg,
    #e0e0e0 25%,
    #f5f5f5 50%,
    #e0e0e0 75%
  );
  background-size: 200% 100%;
}

@media (max-width: 1024px) {
    .iph-container {
        flex-direction: column;
    }
    
    .iph-main-content {
        margin: 0;
        margin-bottom: 20px;
    }
    
    .filters-container {
        display: flex;   
    }
    
    .iph-sidebar {
        transform: translateX(-100%);
        opacity: 0;
        transition: transform 0.5s ease-out;
        position: fixed;
        left: 0;
        top: 0;
        z-index: 9999;
        background: white;
        height: 100%;
        padding: 20px;
        width: 350px;
    }
    
    .iph-close-filter {
        display: flex;
    }
    
    .clear-filter-element {
        display: block;
    }
    
    .primary-iph-reset-filter {
        display: none !important;
    }
}

@media(max-width: 900px) {
    .iph-packages-container-data {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .iph-packages-container-data .iph-server-card {
        flex-direction: column;
        row-gap: 20px;
    }
    
    .iph-packages-container-data .iph-server-price {
        align-items: flex-end;
        row-gap: 10px;
    }
    
    .iph-packages-container-data .iph-detail-row {
        grid-template-columns: 1fr;
    }
    
    .iph-packages-container-data .iph-detail-item:not(:last-child),
    .iph-packages-container-data .iph-detail-item {
        flex-direction: row-reverse;
        width: 100%;
        border: none;
        max-width: 100%;
        justify-content: space-between;
        border-bottom: 1px solid rgb(185, 185, 185);
        padding-bottom: 15px;
        column-gap: 15px;
    }
    
    .iph-packages-container-data .iph-detail-value {
        margin: 0;
    }
    
    .iph-server-card {
        margin: 0;
    }
}

@media(max-width: 700px) {
    .iph-packages-container-data {
        grid-template-columns: 1fr;
    }
}