@import url('https://fonts.cdnfonts.com/css/public-pixel');
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');

:root {
    --color-primary: #58A6FF; 
    --color-secondary: #161B22; 
    --color-dark: #0D1117; 
    --color-light: #F0F6FC; 
    --font-sans: 'Lexend', sans-serif;
    --font-slogan: 'Public Pixel', sans-serif; 
}

html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--color-light); 
    background-color: var(--color-dark); 
}

h1, h2, h3 {
    margin-bottom: 0.5em;
    line-height: 1.1;
    color: var(--color-light); 
}

/* Link reset globale */
a { text-decoration: none; color: inherit; }

.section {
    padding: 80px 5%;
    max-width: 1400px; /* Aumentato per far stare comode le 4 colonne */
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: var(--color-light);
}

.dark-bg {
    background-color: var(--color-secondary); 
}

/* HEADER & NAV */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    background-color: rgba(22, 27, 34, 0.95); 
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px); 
    border-bottom: 1px solid rgba(88, 166, 255, 0.2); 
    z-index: 1000;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--color-primary); 
    display: flex; align-items: center;
}

.logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    display: block;
}

.nav a {
    text-decoration: none;
    color: var(--color-light);
    margin-left: 20px;
    padding: 5px 10px;
    transition: color 0.3s;
}

.nav a:hover { color: var(--color-primary); }

/* DROPDOWN */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--color-secondary);
    min-width: 220px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.5);
    z-index: 10;
    top: 100%; 
    left: 0;
    border-radius: 4px;
    border: 1px solid rgba(88, 166, 255, 0.3);
    padding: 5px 0;
}

.dropdown-content a {
    padding: 12px 16px;
    display: block;
    margin: 0; 
}

.dropdown-content a:hover {
    background-color: rgba(88, 166, 255, 0.1);
}

.dropdown:hover .dropdown-content { display: block; }

/* HAMBURGER MENU ICON */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--color-light);
    margin: 3px 0;
    transition: 0.4s;
}

/* Animazione Hamburger */
.menu-toggle.is-active .bar:nth-child(2) { opacity: 0; }
.menu-toggle.is-active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }


/* BOTTONI */
.btn {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
    cursor: pointer;
    border: none; /* Fix per button element */
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-dark); 
    border: 2px solid var(--color-primary);
}
.btn-primary:hover {
    background-color: transparent; 
    color: var(--color-primary);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-light);
    border: 2px solid var(--color-light);
    margin-top: 20px;
}
.btn-secondary:hover {
    background-color: var(--color-light);
    color: var(--color-dark);
}

.btn-large { padding: 15px 30px; font-size: 1.1em; }

/* HERO */
.hero {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Rimosso URL fisso per permettere override inline nelle altre pagine */
    background-position: center; 
    background-size: cover;
    background-attachment: fixed; 
    color: var(--color-light); 
    position: relative; 
}
/* Default immagine per la home se non specificata */
.hero:not([style*="background-image"]) {
    background-image: url('sfondoHome.jpg');
}

.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}
.hero-content {
    max-width: 800px;
    padding: 40px;
    z-index: 2; 
}
.hero h1 {
    font-size: 3em; 
    font-family: var(--font-slogan); 
    color: var(--color-primary); 
}

/* --- SEZIONE SERVIZI (CARD HOME) --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    padding: 0;
    border-radius: 12px;
    background-color: var(--color-secondary);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    overflow: hidden; 
    height: 100%;
    position: relative;
    border: 1px solid transparent; 
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(88, 166, 255, 0.15);
    border-color: rgba(88, 166, 255, 0.3);
}

.card-header-image {
    height: 200px; 
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.card-header-image::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 100%; 
    background: linear-gradient(to bottom, transparent 40%, var(--color-secondary) 100%);
    z-index: 1;
}

.card-title-overlay {
    position: absolute;
    bottom: 15px; left: 20px; z-index: 2; width: 90%;
}

.card-title-overlay h3 {
    margin: 0;
    font-size: 1.4em;
    font-weight: 800; 
    color: var(--color-light); 
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-title-overlay .price-tag {
    font-size: 0.95rem;
    color: var(--color-primary);
    font-weight: 600;
    display: block;
    margin-top: 5px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

.card-body {
    padding: 10px 25px 30px 25px; 
    display: flex;
    flex-direction: column;
    flex-grow: 1; 
}

.card-body p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: rgba(240, 246, 252, 0.8);
    line-height: 1.5;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 12px; 
    margin-bottom: 30px;
    margin-top: auto; 
}

.feature-item {
    display: flex;
    align-items: flex-start; 
    font-size: 0.9rem;
    color: var(--color-light);
    line-height: 1.3;
}

.feature-item::before {
    content: "✔";
    color: var(--color-primary);
    margin-right: 12px;
    font-weight: bold;
    flex-shrink: 0; 
}

.btn-service {
    margin-top: auto;
    background-color: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    font-family: var(--font-sans);
    transition: 0.3s;
    width: 100%;
    text-align: center;
}
.btn-service:hover {
    background-color: var(--color-primary);
    color: var(--color-dark);
}

/* --- PORTFOLIO (BENTO GRID STYLE) --- */
#portfolio {
    display: block;
    clear: both;
}

.portfolio-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: 280px;
    grid-auto-flow: dense;
    gap: 20px;
    margin-top: 40px;
}

.portfolio-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--color-secondary);
    border: 1px solid transparent;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    cursor: pointer;
}

.portfolio-card.wide { grid-column: span 2; }
.portfolio-card.tall { grid-row: span 2; 
width:auto
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(88, 166, 255, 0.15);
    border-color: rgba(88, 166, 255, 0.3);
}

.port-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.portfolio-card:hover .port-bg {
    transform: scale(1.1);
}

.port-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(13, 17, 23, 0.95) 10%, rgba(13, 17, 23, 0.6) 50%, transparent 100%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    pointer-events: none; 
}

.port-tag {
    color: var(--color-primary);
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.port-overlay h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 800; 
    color: var(--color-light);
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    line-height: 1.2;
}

.port-overlay p {
    font-size: 0.9rem;
    color: rgba(240, 246, 252, 0.7);
    margin-top: 5px;
    margin-bottom: 0;
    line-height: 1.4;
}


/* --- FORM & FOOTER --- */
.contact-form {
    max-width: 550px; 
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px; 
}

.contact-form input, 
.contact-form input[type="tel"],
.contact-form select, 
.contact-form textarea {
    padding: 16px;
    border: 1px solid rgba(88, 166, 255, 0.1); 
    border-radius: 8px;
    width: 100%;
    background-color: var(--color-secondary); 
    color: var(--color-light);
    font-family: var(--font-sans);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.contact-form input:focus, 
.contact-form select:focus, 
.contact-form textarea:focus {
    border-color: var(--color-primary);
    background-color: #1c2128; 
    box-shadow: 0 0 8px rgba(88, 166, 255, 0.1);
}

.contact-form select {
    cursor: pointer;
    appearance: none; 
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2358A6FF' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 20px) center;
}

.contact-form textarea { 
    min-height: 130px; 
    resize: none; 
}

.contact-form .btn-primary {
    padding: 18px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    cursor: pointer;
}

.footer {
    text-align: center;
    padding: 40px 5%;
    background-color: #000; 
    font-size: 0.9em;
    border-top: 1px solid rgba(88, 166, 255, 0.05);
    margin-top: 50px; /* Aggiunto margine per staccare dal form */
}

.footer a { 
    color: var(--color-primary); 
    text-decoration: none; 
    margin: 0 10px;
    transition: opacity 0.3s;
}

.footer a:hover {
    opacity: 0.7;
}

/* ==================================================
   NUOVE AGGIUNTE PER PAGINE SERVIZI E CONFIGURATORE
   (Questo è il codice che mancava o era incompleto)
   ================================================== */

.pricing-section {
    padding: 60px 5%;
    max-width: 1400px; /* Più largo per accomodare 4 card */
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    /* Grid adattiva: da 1 a 4 colonne */
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

/* FORZA 4 COLONNE SU PC (Schermi grandi) */
@media (min-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pricing-card {
    background: var(--color-secondary);
    border: 1px solid rgba(88, 166, 255, 0.1);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}
.pricing-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.pricing-card.featured {
    border-color: var(--color-primary);
    background: linear-gradient(180deg, rgba(88,166,255,0.08) 0%, var(--color-secondary) 100%);
}
.pricing-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--color-light);
    min-height: 40px; /* Allinea i titoli */
    display: flex; align-items: center; justify-content: center;
}

/* PREZZO (CORRETTO PER STARE SU UNA RIGA) */
.price {
    font-size: 1.5rem; /* Font ridotto (era 2.5rem) per entrare nelle card strette */
    color: var(--color-primary);
    font-weight: bold;
    margin: 15px 0;
    font-family: var(--font-slogan);
    line-height: 1.3;
}
.price span {
    font-size: 0.8rem;
    font-family: var(--font-sans);
    opacity: 0.7;
    font-weight: normal;
}

.pricing-features {
    list-style: none;
    margin: 20px 0;
    text-align: left;
    padding: 0;
    font-size: 0.9rem;
}
.pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: rgba(240, 246, 252, 0.8);
}
.pricing-features li::before {
    content: "▸";
    color: var(--color-primary);
    margin-right: 8px;
}

/* --- CONFIGURATORE WIZARD (STILE AVANZATO) --- */
.configurator-section { background: #0d1117; padding: 80px 5%; border-top: 1px solid rgba(88,166,255,0.1); }
.config-container {
    max-width: 800px; margin: 0 auto; background: var(--color-secondary); padding: 40px;
    border-radius: 16px; box-shadow: 0 10px 40px rgba(0,0,0,0.5); position: relative;
}
.progress-bar-wrapper { width: 100%; height: 6px; background: #30363d; border-radius: 3px; margin-bottom: 40px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--color-primary); width: 33%; transition: width 0.4s ease; }

.step { display: none; animation: fadeIn 0.5s ease; }
.step.active { display: block; }
.step h3 { text-align: center; margin-bottom: 30px; font-size: 1.8em; }

/* Radio/Option Cards (Step 1) */
.options-grid-wizard { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 15px; margin: 30px 0; }
.wizard-option, .check-card {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1);
    padding: 25px 15px; border-radius: 12px; cursor: pointer; text-align: center;
    transition: all 0.2s ease; display: flex; flex-direction: column; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}
.wizard-option:hover, .check-card:hover { border-color: var(--color-primary); background: rgba(88, 166, 255, 0.05); transform: translateY(-3px); }
.wizard-option.selected, .check-card.selected { border-color: var(--color-primary); background: rgba(88, 166, 255, 0.15); box-shadow: 0 0 15px rgba(88, 166, 255, 0.2); }
.wizard-option input, .check-card input { display: none; }
.wizard-icon { font-size: 2.5rem; display: block; margin-bottom: 15px; }

/* Checklist Cards (Step 2 - NUOVO STILE) */
.features-selection { display: grid; grid-template-columns: 1fr; gap: 15px; margin: 30px 0; }
@media (min-width: 600px) { .features-selection { grid-template-columns: 1fr 1fr; } }

.check-card { align-items: flex-start; text-align: left; padding: 20px; min-height: 120px; }
.check-title { font-weight: bold; font-size: 1.1em; color: var(--color-light); display: block; margin-bottom: 5px; }
.check-desc { font-size: 0.85em; color: rgba(240, 246, 252, 0.6); line-height: 1.4; display: block; }

/* Badge interno al form */
.form-badge {
    background-color: var(--color-primary); color: var(--color-dark);
    font-size: 0.65rem; font-weight: bold; text-transform: uppercase;
    padding: 2px 8px; border-radius: 4px; margin-left: 10px; vertical-align: middle; display: inline-block;
}

/* Campi Form & Disclaimer (Step 3) */
.input-group { display: flex; flex-direction: column; gap: 15px; margin: 20px 0; }
.input-group label { font-size: 0.9em; font-weight: bold; margin-left: 5px; color: var(--color-primary); }
.input-group input, .input-group textarea {
    padding: 16px; border: 1px solid rgba(88, 166, 255, 0.2); border-radius: 8px;
    background-color: rgba(13, 17, 23, 0.8); color: var(--color-light);
    font-family: var(--font-sans); width: 100%; outline: none; transition: 0.3s;
}
.input-group input:focus, .input-group textarea:focus { border-color: var(--color-primary); box-shadow: 0 0 8px rgba(88, 166, 255, 0.2); }

.price-disclaimer {
    background: rgba(210, 153, 34, 0.1); border: 1px solid #D29922; /* Giallo Warning */
    border-radius: 8px; padding: 15px; margin: 20px 0; display: flex; gap: 15px; align-items: flex-start;
}
.disclaimer-icon { font-size: 1.5rem; }
.disclaimer-text h4 { color: #D29922; margin-bottom: 5px; font-size: 1rem; margin-top: 0;}
.disclaimer-text p { font-size: 0.85rem; color: rgba(240, 246, 252, 0.8); margin: 0; }

.nav-btns { margin-top: 30px; display: flex; justify-content: center; gap: 15px; }

/* SEZIONE CONSULENZA DIRETTA (EXTRA) */
.consultation-cta {
    text-align: center; padding: 60px 5%; background: linear-gradient(to right, rgba(22, 27, 34, 0.9), rgba(13, 17, 23, 0.9));
    border-top: 1px solid rgba(88,166,255,0.1); margin-top: 0;
}
.cta-box { max-width: 600px; margin: 0 auto; }
.cta-box h2 { font-size: 2em; margin-bottom: 15px; }
.cta-box p { margin-bottom: 25px; opacity: 0.8; }

/* PAGINA GRAZIE */
.thank-you-wrapper { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; flex-direction: column; padding: 20px; }
.check-icon { font-size: 4rem; color: #238636; margin-bottom: 20px; }
.cta-buttons { display: flex; gap: 20px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }

@keyframes fadeIn { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); }}

/* RESPONSIVE FINALE */
@media (max-width: 768px) {
    .menu-toggle { display: flex; z-index: 1001; }
    
    .nav {
        display: none; 
        position: absolute;
        top: 100%; left: 0; width: 100%;
        flex-direction: column;
        background-color: var(--color-secondary);
        padding: 20px 0;
        text-align: center;
        border-top: 1px solid rgba(255,255,255,0.1);
        height: auto;
    }
    .nav.active { display: flex; }
    .nav a { margin: 15px 0; display: block; }
    
    .dropdown-content {
        position: static;
        background: transparent;
        box-shadow: none;
        border: none;
        padding-left: 20px;
    }
    .dropdown:hover .dropdown-content { display: block; }

    .hero h1 { font-size: 1.8em; }
    
    .portfolio-masonry {
        grid-template-columns: 1fr; /* Una colonna su mobile */
        grid-auto-rows: 250px;
    }
    .portfolio-card.wide, 
    .portfolio-card.tall {
        grid-column: auto; /* Resetta span su mobile */
        grid-row: auto;
    }
    
    /* Prezzi su mobile */
    .pricing-grid { grid-template-columns: 1fr; }
    .config-container { padding: 20px; }
    
    /* Bottoni mobile impilati */
    .nav-btns { flex-direction: column-reverse; }
    .nav-btns .btn { width: 100%; }
} 



/* --- ETICHETTA "PIÙ RICHIESTO" (ORA VISIBILE SU PC) --- */
.badge-best {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #D32F2F; /* Rosso acceso */
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 8px 15px;
    border-bottom-left-radius: 12px; 
    border-top-right-radius: 11px; 
    z-index: 10;
    font-family: var(--font-sans);
    letter-spacing: 1px;
    box-shadow: -2px 2px 5px rgba(0,0,0,0.2);
    display: block; /* Assicura che si veda sempre */
}

/* --- STILE BOTTONI FORM MIGLIORATO --- */
.nav-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    align-items: center;
}

.nav-btns .btn {
    margin: 0 !important; /* Rimuove margini vecchi che disallineano */
    padding: 15px 35px; /* Più grandi e comodi */
    font-size: 1rem;
    min-width: 140px; /* Larghezza minima uguale per tutti */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

/* Bottone AVANTI (Primario) */
.nav-btns .btn-primary {
    background: var(--color-primary);
    color: var(--color-dark);
    border: 2px solid var(--color-primary);
    box-shadow: 0 4px 15px rgba(88, 166, 255, 0.3); /* Effetto glow */
}
.nav-btns .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 166, 255, 0.5);
    background: #79b8ff; /* Leggermente più chiaro all'hover */
}

/* Bottone INDIETRO (Secondario) */
.nav-btns .btn-secondary {
    background: transparent;
    color: rgba(240, 246, 252, 0.7);
    border: 2px solid rgba(240, 246, 252, 0.2);
}
.nav-btns .btn-secondary:hover {
    border-color: var(--color-light);
    color: var(--color-light);
    background: rgba(255,255,255,0.05);
}

.package-select {
    width: 100%;
    padding: 12px;
    margin: 15px 0;
    background-color: rgba(13, 17, 23, 0.8); /* Sfondo scuro */
    border: 1px solid rgba(88, 166, 255, 0.3); /* Bordo azzurrino */
    border-radius: 8px;
    color: var(--color-light);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    appearance: none; /* Rimuove lo stile di default del browser */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2358A6FF' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;
}

.package-select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 10px rgba(88, 166, 255, 0.2);
}

.package-select option {
    background-color: var(--color-secondary);
    color: var(--color-light);
    padding: 10px;
}

