/* Reset e base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Legal Pages Styles */
.legal-content {
    background: linear-gradient(135deg, #efebe6 0%, #d4d0bd 100%);
    padding: 80px 0 60px 0;
    min-height: calc(100vh - 200px);
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(37, 42, 83, 0.1);
    border: 1px solid #d4d0bd;
}

.legal-document h1 {
    color: #252a53;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
    border-bottom: 3px solid #863703;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.legal-document h2 {
    color: #617f52;
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 4px solid #8c9b73;
    background: linear-gradient(90deg, rgba(140, 155, 115, 0.1) 0%, transparent 100%);
    padding: 15px;
    border-radius: 5px;
}

.legal-document h3 {
    color: #863703;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid #b2b696;
}

.legal-document p {
    color: #252a53;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.last-updated {
    color: #8c9b73 !important;
    font-style: italic;
    text-align: center !important;
    font-size: 0.9rem !important;
    margin-bottom: 40px !important;
    background: #efebe6;
    padding: 10px;
    border-radius: 20px;
    border: 1px solid #d4d0bd;
}

.legal-document ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.legal-document ul li {
    color: #252a53;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.legal-document ul li:before {
    content: "▶";
    color: #863703;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.legal-document ul li:hover {
    background: rgba(239, 235, 230, 0.5);
    padding: 8px 15px 8px 25px;
    margin-left: -10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

/* Responsive Design for Legal Pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 40px 0;
    }
    
    .legal-document {
        padding: 30px 20px;
        margin: 0 20px;
        border-radius: 10px;
    }
    
    .legal-document h1 {
        font-size: 2rem;
    }
    
    .legal-document h2 {
        font-size: 1.3rem;
        margin-top: 30px;
    }
    
    .legal-document h3 {
        font-size: 1.1rem;
    }
    
    .legal-document p {
        font-size: 0.95rem;
        text-align: left;
    }
}

/* Script per animazione scrolling immagini */
.scroll-indicator {
    position: fixed;
    top: 50%;
    right: 20px;
    width: 4px;
    height: 200px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
    z-index: 100;
    display: none;
}

.scroll-indicator.active {
    display: block;
}

.scroll-progress {
    width: 100%;
    background: #863703;
    border-radius: 2px;
    height: 0%;
    transition: height 0.1s ease-out;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #252a53;
    color: white;
    z-index: 2000;
    padding: 20px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-text {
    flex: 1;
}

.cookie-text p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-policy-link {
    color: #8c9b73;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-policy-link:hover {
    color: #b2b696;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.accept-btn {
    background-color: #617f52;
    color: white;
}

.accept-btn:hover {
    background-color: #8c9b73;
    transform: translateY(-2px);
}

.reject-btn {
    background-color: transparent;
    color: #efebe6;
    border: 2px solid #863703;
}

.reject-btn:hover {
    background-color: #863703;
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cookie-text p {
        font-size: 0.9rem;
    }
    
    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .cookie-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: white;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: none;
    width: 100%;
    padding: 0;
}

.right-section {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-right: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 0;
    padding-left: 20px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-img {
    height: 50px;
    width: auto;
}

.company-name {
    font-size: 1.8rem;
    font-weight: 600;
    color: #252a53;
    white-space: nowrap;
}

.main-navigation {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-link {
    color: #252a53;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 25px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
    background-color: #617f52;
    color: white;
    transform: translateY(-2px);
}

.nav-link:active {
    transform: translateY(0);
}

.language-dropdown {
    background-color: #863703;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.language-dropdown:hover {
    background-color: #a04204;
    transform: translateY(-2px);
}

.language-dropdown option {
    background-color: #863703;
    color: white;
    padding: 5px;
}

/* Main Content */
.main-content {
    margin-top: 0; /* Rimosso spazio per header fisso */
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: -30% 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('foto4.jpg');
    background-size: cover;
    background-position: center;
    will-change: transform;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-content h2 {
    font-size: 2.2rem;
    font-weight: 400;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    font-size: 1.3rem;
    color: #617f52;
    font-weight: 300;
}

/* Content Sections */
.content-section {
    padding: 80px 0;
    content-visibility: auto;
    contain-intrinsic-size: auto 600px;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.text-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.text-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.placeholder-image {
    height: 400px; /* Desktop: ripristinate dimensioni originali */
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.6);
    border: 2px dashed rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.section-image {
    width: 100%;
    height: 400px; /* Desktop: ripristinate dimensioni originali */
    object-fit: cover;
    object-position: center; /* Desktop: foto intere, non tagliate */
    border-radius: 15px;
    transition: all 0.3s ease;
}

/* Effetto scrolling dinamico per le immagini e tabelle - solo desktop */
@media (min-width: 769px) {
    .image-content {
        position: relative;
        height: 100%;
        overflow: hidden;
    }
    
    .section-image.scroll-animate {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 400px;
        transform: translateY(0);
        will-change: transform;
    }
    
    /* Effetto scroll per immagine investitori */
    .investor-image-container {
        position: relative;
        height: 100%;
        overflow: hidden;
        min-height: 400px;
    }
    
    .investor-image.scroll-animate {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 400px;
        transform: translateY(0);
        will-change: transform;
    }
    
    /* Effetto scroll per tabella asset portfolio */
    .section-3 .image-content {
        position: relative;
        height: 100%;
        overflow: hidden;
        min-height: 400px;
    }
    
    .asset-table.scroll-animate {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        transform: translateY(0);
        will-change: transform;
    }
    
    .scroll-container {
        position: relative;
        height: 100%;
        min-height: 400px;
    }
}

.asset-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.asset-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
    background-color: #f8f9fa;
    color: #252a53;
    font-weight: 500;
    border-right: 1px solid #eee;
}

.asset-table td.label-col {
    background-color: #252a53;
    color: white;
    font-weight: 600;
    width: 25%;
}

.asset-table td:nth-child(2) {
    width: 37.5%;
}

.asset-table td:nth-child(3) {
    width: 37.5%;
}

.asset-table td:last-child {
    border-right: none;
}

.asset-table tr:last-child td {
    border-bottom: none;
}

.asset-table tr:hover td:not(.label-col) {
    background-color: #617f52;
    color: white;
    transition: all 0.3s ease;
}

.placeholder-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Sezioni con colori alternati */
.section-1 {
    background-color: #d4d0bd;
    color: #252a53;
}

.section-2 {
    background-color: #b2b696;
    color: #252a53;
}

.section-3 {
    background-color: #8c9b73;
    color: white;
}

.section-4 {
    background-color: #617f52;
    color: white;
}

.section-5 {
    background-color: #526349;
    color: white;
}

.section-6 {
    background-color: #3e4a3c;
    color: white;
}

/* CRM Opportunities Section */
.crm-section {
    text-align: center;
}

.crm-title {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: white;
}

.minerals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.mineral-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}



.mineral-name {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #efebe6;
}

.mineral-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    text-align: justify;
}



/* Investor Section */
.investor-section {
    text-align: center;
}

.investor-title {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: white;
}

.investor-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.investor-text {
    text-align: left;
}

.investor-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.investor-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.investor-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center; /* Allineato con .section-image */
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.investor-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.investor-placeholder {
    width: 100%;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.investor-placeholder:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

/* Responsive per Sezione Investitori */
@media (max-width: 968px) {
    .investor-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .investor-text {
        text-align: center;
    }
    
    .investor-title {
        font-size: 2.3rem;
    }
    
    .investor-image,
    .investor-placeholder {
        height: 300px;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .investor-title {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .investor-text p {
        font-size: 1rem;
    }
    
    .investor-image,
    .investor-placeholder {
        height: 300px; /* Allineato con .section-image per tablet */
    }
    
    .investor-content {
        gap: 30px;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .investor-title {
        font-size: 1.8rem;
    }
    
    .investor-text p {
        font-size: 0.95rem;
    }
    
    .investor-image,
    .investor-placeholder {
        height: 180px;
    }
    
    .investor-content {
        gap: 25px;
        padding: 0 10px;
    }
    
    /* Sezione 5 - Card Minerali più piccole per smartphone */
    .minerals-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .mineral-card {
        padding: 20px 18px;
        margin: 0 10px;
    }
    
    .mineral-name {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
    
    .mineral-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

/* Tungsten Market Analysis Section */
.tungsten-market-section {
    margin: 0 auto;
    max-width: 1200px;
}

.tungsten-market-section .section-title {
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
    font-size: 2.5rem;
    font-weight: 700;
}

.market-subtitle {
    text-align: center;
    color: #a8b5a8;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Price Chart Container */
.price-chart-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    margin: 40px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 400px;
    position: relative;
}

.price-chart-container canvas {
    max-height: 100%;
}

@media (max-width: 768px) {
    .price-chart-container {
        height: 300px;
        padding: 20px;
        margin: 30px 0;
    }
    
    /* Ottimizzazione per due grafici su tablet */
    .tungsten-market-section .price-chart-container:first-of-type {
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .price-chart-container {
        height: 250px;
        padding: 15px;
        margin: 20px 0;
    }
    
    /* Maggiore spazio verticale tra i grafici su mobile */
    .tungsten-market-section .price-chart-container:first-of-type {
        margin-bottom: 20px;
    }
}

@media (max-width: 320px) {
    .price-chart-container {
        height: 220px;
        padding: 12px;
        margin: 15px 0;
    }
}

.market-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.market-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.card-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.card-header h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.market-card p {
    color: #e0e0e0;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
    text-align: justify;
}

/* Card Download Button */
.card-download-section {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.card-download-btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.card-download-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
    color: #ffffff;
}

@media (max-width: 768px) {
    .card-download-btn {
        font-size: 0.85rem;
        padding: 9px 14px;
    }
}

@media (max-width: 480px) {
    .card-download-section {
        margin-top: 15px;
        padding-top: 12px;
    }
    
    .card-download-btn {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
}

@media (max-width: 768px) {
    .tungsten-market-section .section-title {
        font-size: 2rem;
    }
    
    .market-subtitle {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }
    
    .market-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .market-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .tungsten-market-section .section-title {
        font-size: 1.8rem;
    }
    
    .market-subtitle {
        font-size: 1.1rem;
    }
    
    .card-header h4 {
        font-size: 1.1rem;
    }
    
    .market-card p {
        font-size: 0.9rem;
        text-align: justify;
    }
}

/* Investment Opportunity Section Styles */
.investment-opportunity {
    text-align: center;
    padding: 0 20px;
}

.investment-title {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: white;
}

.investment-hero {
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.investment-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #d4d0bd;
    line-height: 1.3;
}

.investment-intro {
    font-size: 1.2rem;
    line-height: 1.6;
    color: white;
    opacity: 0.9;
}

.investment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin: 50px 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.investment-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-align: center;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.investment-card h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    opacity: 0.9;
}

.big-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4d0bd;
    margin-bottom: 10px;
    line-height: 1;
}

.investment-card p {
    color: white;
    font-size: 0.95rem;
    opacity: 0.8;
    margin: 0;
}

.investment-cta {
    margin-top: 50px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #d4d0bd;
}

.cta-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: white;
    opacity: 0.9;
}

/* Bottom Line List Styles */
.bottom-line-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bottom-line-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 0;
    margin: 0;
}

.list-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

.list-text {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.6;
    color: white;
    opacity: 0.9;
    text-align: left;
    margin: 0;
}

/* Investment Opportunity Section - Responsive Styles */
@media (max-width: 968px) {
    .investment-title {
        font-size: 2.3rem;
    }

    .investment-subtitle {
        font-size: 1.5rem;
    }

    .investment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .highlight-card {
        transform: none;
    }

    .investment-cta {
        padding: 35px 25px;
    }
}

@media (max-width: 768px) {
    .investment-opportunity {
        padding: 0 15px;
    }

    .investment-title {
        font-size: 2rem;
    }

    .investment-subtitle {
        font-size: 1.3rem;
        line-height: 1.4;
    }

    .investment-intro {
        font-size: 1rem;
    }

    .investment-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 40px 0;
        max-width: 350px;
    }

    .investment-card {
        padding: 25px 20px;
    }

    .big-number {
        font-size: 2rem;
    }

    .card-icon {
        font-size: 2rem;
        height: 50px;
    }

    .investment-cta {
        padding: 30px 20px;
    }

    .cta-content h3 {
        font-size: 1.5rem;
    }

    .cta-content p {
        font-size: 1rem;
    }
    
    .bottom-line-list {
        gap: 18px;
    }
    
    .bottom-line-item {
        gap: 12px;
    }
    
    .list-icon {
        font-size: 1.3rem;
        width: 26px;
        height: 26px;
    }
    
    .list-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .investment-title {
        font-size: 1.8rem;
    }

    .investment-subtitle {
        font-size: 1.1rem;
    }

    .investment-intro {
        font-size: 0.95rem;
    }

    .investment-card {
        padding: 20px 15px;
    }

    .investment-card h4 {
        font-size: 1rem;
    }

    .big-number {
        font-size: 1.8rem;
    }

    .card-icon {
        font-size: 1.8rem;
        height: 45px;
    }

    .investment-cta {
        padding: 25px 15px;
    }

    .cta-content h3 {
        font-size: 1.3rem;
    }

    .cta-content p {
        font-size: 0.95rem;
    }
    
    .bottom-line-list {
        gap: 15px;
    }
    
    .bottom-line-item {
        gap: 10px;
    }
    
    .list-icon {
        font-size: 1.2rem;
        width: 24px;
        height: 24px;
    }
    
    .list-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

/* Footer */
.footer {
    background-color: #252a53;
    color: white;
    padding: 60px 0 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-navigation {
    text-align: right;
}

.footer-navigation h3 {
    color: #8c9b73;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-nav-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav-link {
    color: #b2b696;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    font-weight: 300;
}

.footer-nav-link:hover {
    color: white;
    text-decoration: underline;
}

.footer-copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    color: #b2b696;
    font-size: 0.9rem;
    margin: 0 0 15px 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-link {
    color: #8c9b73;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #b2b696;
    text-decoration: underline;
}

.separator {
    color: #617f52;
    font-size: 0.8rem;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #efebe6;
    text-align: left;
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    text-align: center;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item strong {
    color: #863703;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 8px;
}

.contact-item p {
    line-height: 1.6;
    color: #efebe6;
}

/* Rimuovi styling link per telefono e PI */
.contact-item p a {
    color: #efebe6 !important;
    text-decoration: none !important;
}

/* Disabilita link automatici browser per telefoni e numeri */
.contact-item p,
.footer-copyright p {
    color: #efebe6 !important;
    text-decoration: none !important;
}

.contact-item p *,
.footer-copyright p * {
    color: inherit !important;
    text-decoration: none !important;
}

/* Forza rimozione link automatici */
.footer a[href^="tel:"],
.footer a[href^="mailto:"] {
    color: #efebe6 !important;
    text-decoration: none !important;
    pointer-events: none;
}



/* Header fisso solo per desktop */
@media (min-width: 769px) {
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
    }
    
    .main-content {
        margin-top: 80px; /* Compensa altezza header fisso */
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .section-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .text-content h2 {
        font-size: 2rem;
    }
    
    .section-image,
    .placeholder-image {
        height: 300px;
    }
    
    .contact-details {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .footer-navigation {
        text-align: center;
    }
    
    .footer-nav-links {
        align-items: center;
    }
    
    /* Sezione Asset Portfolio centrata per tablet */
    .section-3 .section-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .section-3 .text-content {
        max-width: 800px;
        margin: 0 auto;
    }
    
    .section-3 .asset-table {
        max-width: 900px;
        margin: 20px auto;
    }
    
    /* Header mobile layout */
    .header .container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 15px 20px;
    }
    
    .logo {
        margin: 0;
        padding: 0;
        text-align: center;
    }
    
    .company-name {
        font-size: 1.6rem; /* Font più grande per tablet */
    }
    
    .right-section {
        flex-direction: column;
        gap: 15px;
        padding: 0;
        align-items: center;
    }
    
    .main-navigation {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .nav-link {
        font-size: 1rem; /* Font più grande per tablet */
        padding: 8px 16px;
    }
    
    /* Footer responsive per tablet */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        align-items: center;
    }
    
    .contact-info h3 {
        text-align: center;
    }
    
    .footer-navigation {
        text-align: center;
    }
    
    .footer-nav-links {
        flex-direction: row;
        gap: 15px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 0;
    }
    
    .header .container {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 10px 20px;
    }
    
    .logo {
        margin: 0;
        padding: 0;
        text-align: center;
        flex-direction: column;
        gap: 8px;
    }
    
    .logo-link {
        flex-direction: column;
        gap: 8px;
    }
    
    .logo-img {
        height: 40px; /* Logo più grande per mobile */
    }
    
    .company-name {
        font-size: 1.4rem; /* Font più grande per mobile */
        text-align: center;
    }
    
    .right-section {
        flex-direction: column;
        gap: 12px;
        padding: 0;
        align-items: center;
        width: 100%;
    }
    
    .main-navigation {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        width: 100%;
    }
    
    .nav-link {
        font-size: 1rem; /* Font più grande per mobile */
        padding: 8px 14px;
    }
    
    .language-dropdown {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    /* Footer mobile */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        align-items: center;
    }
    
    .contact-info h3 {
        text-align: center;
    }
    
    .footer-navigation {
        text-align: center;
    }
    
    .footer-nav-links {
        flex-direction: row;
        gap: 12px;
        justify-content: center;
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content h2 {
        font-size: 1.6rem;
    }
    
    .content-section {
        padding: 50px 0;
    }
    
    .text-content h2 {
        font-size: 1.8rem;
    }
    
    .crm-title {
        font-size: 1.8rem;
    }
    
    .text-content p {
        font-size: 1rem;
    }
    
    .placeholder-image {
        height: 180px; /* Mobile: ridotte per mobile */
    }
    
    .section-image {
        height: 180px; /* Mobile: ridotte per mobile */
        object-position: center 30%; /* Mobile: possibile leggero ritaglio */
    }
    
    /* Sezione Asset Portfolio centrata per mobile */
    .section-3 .section-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        padding: 0 10px;
    }
    
    .section-3 .text-content {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 10px;
    }
    
    .section-3 .asset-table {
        max-width: 100%;
        margin: 20px 10px;
        font-size: 0.85rem;
    }
    
    .section-3 .asset-table td {
        padding: 10px 8px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header .container {
        padding: 8px 15px;
        gap: 10px;
    }
    
    .logo-img {
        height: 35px; /* Logo più grande anche su schermi piccolissimi */
    }
    
    .company-name {
        font-size: 1.2rem; /* Font più grande */
    }
    
    .nav-link {
        font-size: 0.9rem; /* Font più grande */
        padding: 6px 10px;
    }
    
    .language-dropdown {
        padding: 6px 9px;
        font-size: 11px;
    }
    
    .main-content {
        margin-top: 0;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .text-content h2 {
        font-size: 1.5rem;
    }
    
    .crm-title {
        font-size: 1.5rem;
    }
    
    .contact-info h3 {
        font-size: 1.5rem;
    }
    
    .member-photo {
        max-width: 250px;
        min-height: 180px; /* Proporzione 4:3 per mobile piccolo */
        aspect-ratio: 4/3;
    }
    
    .profile-placeholder {
        height: 180px;
    }
    
    .profile-image {
        height: 180px;
        object-position: center 15%;
    }
    
    .member-image {
        height: 180px;
        object-position: center 10%;
    }
    
    /* Sezione Asset Portfolio centrata per schermi molto piccoli */
    .section-3 .section-content {
        padding: 0 5px;
        gap: 25px;
    }
    
    .section-3 .text-content {
        padding: 0 5px;
    }
    
    .section-3 .asset-table {
        margin: 15px 5px;
        font-size: 0.75rem;
    }
    
    .section-3 .asset-table td {
        padding: 8px 5px;
        font-size: 0.7rem;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .contact-details {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-nav-links {
        flex-direction: row;
        gap: 10px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-links {
        flex-direction: row;
        gap: 8px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .separator {
        display: inline;
    }
    
    .footer-link {
        font-size: 0.8rem;
    }
}

/* Animazioni */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.text-content,
.placeholder-image {
    animation: fadeInUp 0.8s ease-out;
}

/* Hover effects */
.language-dropdown {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-content {
    transition: all 0.3s ease;
}

.content-section:hover .section-content {
    transform: translateY(-2px);
}

/* Scrollbar personalizzata */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #efebe6;
}

::-webkit-scrollbar-thumb {
    background: #8c9b73;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #617f52;
}

/* Investment Analysis Section Styles */
.investment-analysis {
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.analysis-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #d4d0bd;
    text-align: center;
}

.analysis-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #efebe6;
}

.analysis-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: white;
    opacity: 0.9;
    text-align: justify;
}

/* Analysis List Styles */
.analysis-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.analysis-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.analysis-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.analysis-item .list-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    margin-top: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
}

.analysis-text {
    flex: 1;
    font-size: 1rem;
    line-height: 1.6;
    color: white;
    opacity: 0.9;
    text-align: left;
    margin: 0;
}

.analysis-text strong {
    color: #d4d0bd;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

/* Simple List Styles */
.simple-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.simple-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    line-height: 1.6;
    color: white;
    opacity: 0.9;
    padding: 8px 0;
}

/* Investment Analysis Responsive Styles */
@media (max-width: 968px) {
    .investment-analysis {
        padding: 30px 25px;
        margin-top: 35px;
    }
    
    .analysis-content h3 {
        font-size: 1.6rem;
    }
    
    .analysis-content h4 {
        font-size: 1.3rem;
    }
    
    .analysis-list {
        gap: 20px;
    }
    
    .analysis-item {
        padding: 18px;
        gap: 18px;
    }
    
    .analysis-item .list-icon {
        font-size: 1.6rem;
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 768px) {
    .investment-analysis {
        padding: 25px 20px;
        margin-top: 30px;
    }
    
    .analysis-content h3 {
        font-size: 1.5rem;
        text-align: left;
    }
    
    .analysis-content h4 {
        font-size: 1.2rem;
    }
    
    .analysis-content p {
        font-size: 1rem;
        text-align: left;
    }
    
    .analysis-list {
        gap: 18px;
    }
    
    .analysis-item {
        padding: 15px;
        gap: 15px;
        flex-direction: column;
        text-align: center;
    }
    
    .analysis-item .list-icon {
        font-size: 1.5rem;
        width: 30px;
        height: 30px;
        margin: 0 auto;
    }
    
    .analysis-text {
        text-align: left;
        font-size: 0.95rem;
    }
    
    .analysis-text strong {
        text-align: center;
        margin-bottom: 10px;
    }
    
    .simple-list {
        gap: 10px;
        margin: 15px 0;
    }
    
    .simple-list li {
        font-size: 0.95rem;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .investment-analysis {
        padding: 20px 15px;
        margin-top: 25px;
    }
    
    .analysis-content h3 {
        font-size: 1.3rem;
    }
    
    .analysis-content h4 {
        font-size: 1.1rem;
    }
    
    .analysis-content p {
        font-size: 0.95rem;
    }
    
    .analysis-list {
        gap: 15px;
    }
    
    .analysis-item {
        padding: 12px;
        gap: 12px;
    }
    
    .analysis-item .list-icon {
        font-size: 1.3rem;
        width: 28px;
        height: 28px;
    }
    
    .analysis-text {
        font-size: 0.9rem;
    }
    
    .simple-list li {
        font-size: 0.9rem;
        gap: 8px;
    }
}


::-webkit-scrollbar-thumb {
    background: #863703;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #252a53;
}
/* Teams Page Styles */
.teams-hero {
    background: linear-gradient(135deg, #1a5490 0%, #2c6aa0 100%);
    padding: 120px 0 80px 0;
    text-align: center;
    color: white;
}

.teams-hero .hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    margin-bottom: 16px;
}

.teams-hero .hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.6;
}

.teams-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.teams-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.team-member {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: stretch;
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 84, 144, 0.1);
    min-height: 400px;
}

.team-member:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    border-color: rgba(26, 84, 144, 0.2);
}

.member-photo {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 100%);
    display: flex;
    align-items: stretch;
}

.member-image {
    width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image {
    transform: scale(1.02);
}

.member-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.member-name {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
}

.member-role {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a5490;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.member-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    text-align: justify;
    margin: 0;
}

.member-email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #1a5490;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 12px 20px;
    background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 100%);
    border-radius: 8px;
    border: 1px solid #e1e8ff;
    transition: all 0.3s ease;
    width: fit-content;
}

.member-email:hover {
    background: #1a5490;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 84, 144, 0.3);
}

.member-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0077b5;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 12px 20px;
    background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 100%);
    border-radius: 8px;
    border: 1px solid #e1f0ff;
    transition: all 0.3s ease;
    width: fit-content;
}

.member-linkedin:hover {
    background: #0077b5;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 119, 181, 0.3);
}

.email-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.member-email:hover .email-icon,
.member-linkedin:hover svg {
    transform: scale(1.1);
}

/* Teams Responsive Design */
@media (max-width: 968px) {
    .teams-hero .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .teams-hero .hero-content p {
        font-size: 1.1rem;
    }
    
    .team-member {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding: 35px;
        margin: 0;
        min-height: auto;
    }
    
    .member-photo {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .member-image {
        height: 280px;
        min-height: 280px;
    }
    
    .member-name {
        font-size: 1.8rem;
    }
    
    .member-role {
        font-size: 1rem;
    }
    
    .member-email,
    .member-linkedin {
        font-size: 0.9rem;
        padding: 10px 16px;
    }
}


@media (max-width: 768px) {
    .teams-hero {
        padding: 100px 0 60px 0;
    }
    
    .teams-section {
        padding: 60px 0;
    }
    
    .teams-content {
        gap: 40px;
        padding: 0;
    }
    
    .team-member {
        padding: 30px 20px;
        gap: 25px;
        margin: 0;
    }
    
    .member-photo {
        max-width: 100%;
    }
    
    .member-image {
        height: 300px;
        min-height: 300px;
    }
    
    .member-name {
        font-size: 1.6rem;
    }
    
    .member-role {
        font-size: 0.95rem;
    }
    
    .member-email,
    .member-linkedin {
        font-size: 0.85rem;
        padding: 8px 14px;
    }
    
    .email-icon,
    .member-linkedin svg {
        width: 16px;
        height: 16px;
    }
}


/* Extra small devices - Smartphone più piccoli */
@media (max-width: 480px) {
    .teams-section {
        padding: 40px 0;
    }
    
    .teams-content {
        gap: 30px;
        padding: 0;
    }
    
    .team-member {
        padding: 25px 15px;
        gap: 20px;
        margin: 0;
    }
    
    .member-photo {
        max-width: 100%;
    }
    
    .member-image {
        height: 280px;
        min-height: 280px;
    }
    
    .member-name {
        font-size: 1.4rem;
    }
    
    .member-role {
        font-size: 0.9rem;
    }
    
    .member-email,
    .member-linkedin {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
    
    .email-icon,
    .member-linkedin svg {
        width: 14px;
        height: 14px;
    }
}

/* Tablet orizzontali: mantieni sezioni affiancate */
@media (min-width: 900px) and (max-width: 1366px) and (orientation: landscape) {
    .section-content,
    .investor-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .section-content {
        text-align: left;
    }

    .section-3 .section-content {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }

    .section-3 .text-content {
        max-width: none;
        margin: 0;
    }

    .section-3 .asset-table {
        max-width: 100%;
        margin: 20px 0;
    }

    .investor-content {
        text-align: left;
    }

    .investor-text {
        text-align: left;
    }

    .investor-image,
    .investor-placeholder {
        height: 400px; /* Allineato con .section-image */
        max-width: none;
        margin: 0;
    }
}

/* Fix definitivo per center align valuation gap su mobile */
@media (max-width: 768px) {
    .highlight-step .step-content h4,
    .highlight-step .step-content p {
        text-align: center !important;
    }
    
    .highlight-step .step-content .small-text {
        text-align: center !important;
        display: block;
    }
    
    /* Assicura che anche EBITDA Projection sia centrato */
    .valuation-step .step-content h4,
    .valuation-step .step-content p {
        text-align: center !important;
    }
}

@media (max-width: 480px) {
    .highlight-step .step-content h4,
    .highlight-step .step-content p {
        text-align: center !important;
    }
    
    .highlight-step .step-content .small-text {
        text-align: center !important;
        display: block;
    }
    
    /* Assicura che anche EBITDA Projection sia centrato */
    .valuation-step .step-content h4,
    .valuation-step .step-content p {
        text-align: center !important;
    }
}

/* Extra small devices - Smartphone più piccoli */
@media (max-width: 480px) {
    .teams-section {
        padding: 40px 0;
    }
    
    .teams-content {
        gap: 30px;
        padding: 0;
    }
    
    .team-member {
        padding: 25px 15px;
        gap: 20px;
        margin: 0;
    }
    
    .member-photo {
        max-width: 100%;
    }
    
    .member-image {
        height: 280px;
        min-height: 280px;
    }
    
    .member-name {
        font-size: 1.4rem;
    }
    
    .member-role {
        font-size: 0.9rem;
    }
    
    .member-email,
    .member-linkedin {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
    
    .email-icon,
    .member-linkedin svg {
        width: 14px;
        height: 14px;
    }
}
