/* Hero Section */
.page-hero {
    background: linear-gradient(135deg, #0066B3 0%, #1d4ed8 100%);
    color: white;
    padding: 100px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,112C1248,107,1344,117,1392,122.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    opacity: 0.3;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-hero .lead {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}
/* Section Styles */
.section {
    padding: 60px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #0f70b7;
}

.bg-light {
    background-color: --dark-blue;
}

/* Stats Cards */
.stats-row {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
}

.stat-card {
    background: white;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.stat-icon {
    font-size: 3rem;
    color: #FF8C00;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #0f70b7;
    margin: 0.5rem 0;
}

.stat-label {
    font-size: 1rem;
    color: #6c757d;
    margin: 0;
}

/* Service Boxes */
.service-box {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
	margin:20px 0;
}

.service-box:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    color: #0066B3;
    margin-bottom: 1.5rem;
}

.service-box h4 {
    color: #FF8C00;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.service-list {
    list-style: none;
    padding: 0;
	
}

.service-list li {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
    color: #6c757d;
	
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li:before {
    content: "✓ ";
    color: #f97316;
    font-weight: bold;
    margin-right: 8px;
}

/* Economic Data */
.economic-data {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.data-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.data-row:last-child {
    border-bottom: none;
}

.data-row.highlight {
    background-color: #f8f9fa;
    margin: 0 -15px;
    padding: 15px;
    border-radius: 5px;
}

.data-label {
    font-weight: 500;
    color: #2c3e50;
}

.data-value {
    font-weight: 700;
    color: #f97316;
    font-size: 1.2rem;
}

/* Info Box */
.info-box {
    background: #f97316;
    color: white;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
}

.info-box h4 {
    color: white;
    margin-bottom: 1rem;
}

.info-box i {
    margin-right: 10px;
}

/* Location List */
.location-list {
    list-style: none;
    padding: 0;
}

.location-list li {
    padding: 10px 0;
    color: #2c3e50;
}

.location-list i {
    color: #f97316;
    margin-right: 10px;
}

/* Download Section - Blue & Orange Theme */
.download-section {
    background: linear-gradient(135deg, #0066B3 0%, #0170c3 100%);
    color: white;
    padding: 80px 0;
}


.download-section .section-title,
.download-section .lead {
    color: white;
}

.download-section .lead {
    line-height: 1.8;
    font-size: 1.2rem;
	margin-bottom: 40px !important;
}

.download-section .btn-primary {
    background-color: #f97316; /* orange strong */
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
    border-radius: 8px;
}

.download-section .btn-primary:hover {
    background-color: #fb923c; /* lighter orange */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}


.download-section .btn-primary i {
    margin-right: 10px;
    color: white;
}

.download-section .btn-primary {
    position: relative;
    z-index: 10;
}


/* Value Cards */
.value-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 3rem;
    color: #f97316;
    margin-bottom: 1rem;
}

.value-card h4 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1rem;
}

.value-card p {
    color: #6c757d;
    margin: 0;
}
.stats-row {
    display: flex;
    justify-content: center;      /* Centra orizzontalmente */
    align-items: stretch;         /* Mantiene le card uguali */
    gap: 20px;                    /* Spaziatura uniforme */
    flex-wrap: wrap;              /* Va a capo se serve */
}

.stat-card {
    width: 100%;
	min-width:260px;
    max-width: 260px;             /* Dimensione card uniforme */
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero .lead {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .data-row {
        flex-direction: column;
        text-align: center;
    }
    
    .data-value {
        margin-top: 5px;
    }
    
    /* Ensure cards stack on mobile */
    .stats-row {
        flex-direction: column;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    /* On tablets, show 2 cards per row */
    .stats-row .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 992px) {
    /* On desktop, show all 4 cards in a row */
    .stats-row {
        flex-wrap: nowrap;
    }
}