/* Network Section Container */
.network-section {
    background: linear-gradient(135deg, #1a1f25 0%, #2c3e50 100%);
    color: #fff;
    padding: 4rem 2rem;
}

.network-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styling */
.network-header {
    text-align: center;
    margin-bottom: 3rem;
}

.network-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #3498db, #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Grid Layout */
.network-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

/* Card Styling */
.network-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.network-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.network-card.primary {
    border: 2px solid #3498db;
    background: rgba(52, 152, 219, 0.1);
}

.network-card.active {
    border: 2px solid #2ecc71; /* Highlight with green border */
    background: rgba(46, 204, 113, 0.1); /* Subtle green background */
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.3); /* Add shadow */
}

/* Icon Styling */
.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #3498db;
}

/* Service List Styling */
.service-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-list li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #ecf0f1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
}

/* Price Information */
.price-info {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 8px;
}

.price-info span {
    display: block;
    margin: 0.5rem 0;
    font-weight: bold;
    color: #3498db;
}

/* Currency Display */
.currency-display {
    font-size: 0.9rem;
    color: #95a5a6;
    margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .network-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .network-section {
        padding: 2rem 1rem;
    }

    .network-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .network-header h2 {
        font-size: 2rem;
    }
}