        :root {
            --primary: #097bc0;
            --primary-dark: #0a5a8a;
            --secondary: #2b4a72;
            --accent: #4fc3f7;
            --light: #fafbfc;
            --white: #ffffff;
            --text-dark: #1a2332;
            --text-light: #64748b;
            --border: #e2e8f0;
            --success: #10b981;
            --warning: #f59e0b;
            --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
            --radius: 12px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --header-offset: 72px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: var(--header-offset);
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background: var(--light);
            overflow-x: hidden;
            padding-top: var(--header-offset);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* Page Header */
        .page-header {
            background: var(--gradient);
            color: white;
            padding: clamp(6rem, 15vw, 8rem) clamp(1rem, 3vw, 1.5rem) clamp(3rem, 8vw, 4rem);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

        .page-header-content {
            max-width: clamp(320px, 90vw, 1200px);
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .page-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 6vw, 3rem);
            font-weight: 700;
            margin-bottom: clamp(0.8rem, 2vw, 1rem);
            line-height: 1.2;
        }

        .page-subtitle {
            font-size: clamp(1rem, 2.5vw, 1.25rem);
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }

        .fade-in {
            opacity: 0;
            transform: translateY(12px);
            animation: fadeInUp 0.8s ease forwards;
        }

        .fade-in:nth-child(2) {
            animation-delay: 0.1s;
        }

        /* Layout */
        .container {
            max-width: clamp(320px, 90vw, 1200px);
            margin: 0 auto;
            padding: 0 clamp(1rem, 3vw, 1.5rem);
        }

        .section {
            padding: clamp(3rem, 8vw, 4rem) 0;
        }

        .section-white {
            background: white;
        }

        .section-light {
            background: var(--light);
        }

        .section-header {
            text-align: center;
            margin-bottom: clamp(2.5rem, 6vw, 4rem);
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.8rem, 5vw, 2.5rem);
            color: var(--primary);
            margin-bottom: clamp(0.8rem, 2vw, 1rem);
        }

        .section-subtitle {
            font-size: clamp(1rem, 2.5vw, 1.25rem);
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }

        .section-center {
            text-align: center;
            margin-top: clamp(2rem, 5vw, 3rem);
        }

        /* Story Section */
        .story-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: clamp(2rem, 6vw, 4rem);
            align-items: center;
        }

        .story-text {
            font-size: clamp(1rem, 2.2vw, 1.1rem);
            line-height: 1.8;
        }

        .story-text p {
            margin-bottom: clamp(1rem, 3vw, 1.5rem);
        }

        .story-text h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.5rem, 4vw, 2rem);
            color: var(--primary);
            margin-bottom: clamp(1rem, 3vw, 1.5rem);
        }

        .story-image img {
            border-radius: var(--radius);
            box-shadow: var(--shadow-lg);
        }

        /* Values Grid */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(clamp(280px, 45vw, 300px), 1fr));
            gap: clamp(1.5rem, 4vw, 2rem);
            margin-top: clamp(2rem, 5vw, 3rem);
        }

        .value-card {
            background: white;
            padding: clamp(1.5rem, 4vw, 2rem);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-left: 4px solid var(--primary);
        }

        .value-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .value-icon {
            width: clamp(50px, 12vw, 60px);
            height: clamp(50px, 12vw, 60px);
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: clamp(1rem, 3vw, 1.5rem);
            color: white;
            font-size: clamp(1.2rem, 3vw, 1.5rem);
        }

        .value-title {
            font-size: clamp(1.1rem, 2.5vw, 1.25rem);
            font-weight: 600;
            margin-bottom: clamp(0.8rem, 2vw, 1rem);
            color: var(--text-dark);
        }

        .value-desc {
            color: var(--text-light);
            font-size: clamp(0.9rem, 2vw, 1rem);
        }

        /* Team Section */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(clamp(180px, 35vw, 200px), 1fr));
            gap: clamp(1.5rem, 4vw, 2rem);
            margin-top: clamp(2rem, 5vw, 3rem);
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        .team-member {
            text-align: center;
            transition: var(--transition);
        }

        .team-member:hover {
            transform: translateY(-5px);
        }

        .member-photo {
            width: 100%;
            max-width: 250px;
            height: 100%;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .member-photo:hover {
            box-shadow: var(--shadow-lg);
        }

        /* Services Base (used by Trasparenza) */
        .services {
            padding: clamp(3rem, 8vw, 4rem) 0;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(clamp(280px, 45vw, 340px), 1fr));
            gap: clamp(1.5rem, 4vw, 2rem);
            margin-top: clamp(2rem, 5vw, 3rem);
        }

        .service-card {
            background: white;
            padding: clamp(1.5rem, 4vw, 2rem);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .service-title {
            font-size: clamp(1.1rem, 2.5vw, 1.25rem);
            font-weight: 600;
            margin-bottom: clamp(0.8rem, 2vw, 1rem);
            color: var(--text-dark);
        }

        /* Transparency */
        .transparency-section {
            background: #f1f5f9;
            border-top: 3px solid var(--primary);
            border-bottom: 3px solid var(--primary);
        }

        .transparency-title {
            color: #1e293b;
        }

        .transparency-grid {
            grid-template-columns: repeat(auto-fit, minmax(clamp(300px, 45vw, 400px), 1fr));
            gap: clamp(2rem, 5vw, 3rem);
        }

        .transparency-card {
            position: relative;
        }

        .info-card {
            border: 2px solid #64748b;
        }

        .aia-card {
            border: 2px solid var(--primary);
        }

        .transparency-logo {
            text-align: center;
            margin-bottom: clamp(1rem, 3vw, 1.5rem);
        }

        .logo-img {
            width: clamp(60px, 15vw, 80px);
            height: clamp(60px, 15vw, 80px);
            object-fit: contain;
        }

        .info-title {
            color: #64748b;
            text-align: center;
        }

        .aia-title {
            color: var(--primary);
            text-align: center;
        }

        .transparency-badge {
            padding: clamp(0.8rem, 2vw, 1rem);
            border-radius: 8px;
            margin-bottom: clamp(0.8rem, 2vw, 1rem);
            text-align: center;
        }

        .info-badge {
            background: #f8fafc;
        }

        .info-badge strong {
            color: #1e293b;
        }

        .aia-badge {
            background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
        }

        .aia-badge strong {
            color: #0c4a6e;
        }

        .transparency-list {
            list-style: none;
            padding: 0;
            color: #475569;
            line-height: 1.8;
        }

        .transparency-list li {
            margin-bottom: clamp(0.6rem, 1.5vw, 0.8rem);
            font-size: clamp(0.9rem, 2vw, 1rem);
        }

        .transparency-list a {
            color: var(--primary);
            text-decoration: none;
        }

        .transparency-list a:hover {
            text-decoration: underline;
        }

        .transparency-clarification {
            background: white;
            border: 2px solid #0ea5e9;
            border-radius: 12px;
            padding: clamp(1.5rem, 4vw, 2rem);
            margin-top: clamp(2rem, 5vw, 3rem);
            text-align: center;
            box-shadow: var(--shadow);
        }

        .clarification-title {
            color: #0c4a6e;
            margin-bottom: clamp(0.8rem, 2vw, 1rem);
            font-size: clamp(1.1rem, 2.5vw, 1.2rem);
        }

        .clarification-title i {
            margin-right: 0.5rem;
        }

        .clarification-text {
            color: var(--text-light);
            margin-bottom: clamp(1rem, 3vw, 1.5rem);
            line-height: 1.6;
            font-size: clamp(0.9rem, 2vw, 1rem);
        }

        .clarification-actions {
            display: flex;
            justify-content: center;
        }

        .clarification-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
            border: 1px solid var(--primary);
            padding: clamp(0.6rem, 1.5vw, 0.8rem) clamp(1rem, 2.5vw, 1.2rem);
            border-radius: 6px;
            transition: var(--transition);
            font-size: clamp(0.9rem, 2vw, 1rem);
        }

        .clarification-link:hover {
            background: var(--primary);
            color: white;
        }

        /* Stats Section */
        .stats-section {
            background: var(--gradient);
            color: white;
            text-align: center;
        }

        .stats-section .section-title {
            color: white;
        }

        .stats-section .section-subtitle {
            color: rgba(255, 255, 255, 0.9);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(clamp(160px, 30vw, 200px), 1fr));
            gap: clamp(1.5rem, 4vw, 2rem);
            margin-top: clamp(2rem, 5vw, 3rem);
        }

        .stat {
            padding: clamp(0.8rem, 2vw, 1rem);
        }

        .stat-number {
            font-size: clamp(1.8rem, 5vw, 2.5rem);
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: clamp(0.9rem, 2vw, 1rem);
            opacity: 0.9;
        }

        /* CTA Section */
        .cta-section {
            background: white;
            text-align: center;
        }

        .cta-buttons {
            display: flex;
            gap: clamp(0.8rem, 2vw, 1rem);
            justify-content: center;
            flex-wrap: wrap;
            margin-top: clamp(1.5rem, 4vw, 2rem);
        }

        .btn {
            padding: clamp(0.8rem, 2vw, 1rem) clamp(1.2rem, 3vw, 2rem);
            border-radius: var(--radius);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            min-width: clamp(160px, 35vw, 200px);
            justify-content: center;
            font-size: clamp(0.9rem, 2vw, 1rem);
        }

        .btn-primary {
            background: var(--gradient);
            color: white;
            box-shadow: var(--shadow);
        }

        .btn-secondary {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        /* Newsletter */
        .newsletter-section {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            padding: 3rem 1rem;
            position: relative;
            overflow: hidden;
        }

        .newsletter-card {
            background: linear-gradient(135deg, white, #f0f9ff);
            border: 2px solid var(--primary);
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            max-width: 900px;
            margin: 0 auto;
        }

        .newsletter-orb {
            position: absolute;
            top: -20px;
            right: -20px;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, rgba(79, 195, 247, 0.2) 0%, transparent 70%);
            border-radius: 50%;
        }

        .newsletter-title {
            font-size: 1.4rem;
            color: #1e293b;
            margin: 0 0 0.8rem 0;
            font-weight: 700;
        }

        .newsletter-title i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
            display: block;
        }

        .newsletter-actions {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: center;
        }

        .newsletter-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--gradient);
            color: white;
            padding: 0.8rem 1.8rem;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(9, 123, 192, 0.2);
        }

        .newsletter-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(9, 123, 192, 0.3);
        }

        .newsletter-desc {
            color: var(--text-light);
            margin: 0 0 1.5rem 0;
            font-size: 0.95rem;
            max-width: 400px;
        }

        .newsletter-footnote {
            color: #94a3b8;
            font-size: 0.8rem;
        }

        /* Donation Banner */
        .donation-banner-aia {
            background: #fafbfc;
            padding: clamp(3rem, 6vw, 5rem) 0;
            border-top: 1px solid #e2e8f0;
            border-bottom: 1px solid #e2e8f0;
        }

        .donation-banner-aia .container-aia {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            padding: 0 1.5rem;
        }

        .donation-banner-aia h3 {
            font-size: 1.8rem;
            color: #097bc0;
            margin-bottom: 0.5rem;
        }

        .donation-banner-aia .intro-text {
            font-size: 1.05rem;
            color: #1a2332;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .donation-banner-aia .bank-box {
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
            text-align: left;
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .donation-banner-aia .bank-box h4 {
            color: #097bc0;
            margin-bottom: 1rem;
        }

        .donation-banner-aia .bank-box p {
            margin: 0;
        }

        .donation-banner-aia .bank-box .qr-link {
            margin-top: 1rem;
        }

        .donation-banner-aia .bank-box a {
            color: #097bc0;
            font-weight: 600;
            text-decoration: none;
        }

        .donation-banner-aia .bank-box a:hover {
            text-decoration: underline;
        }

        .donation-banner-aia .or-divider {
            margin: 2rem 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        .donation-banner-aia .or-divider hr {
            flex: 1;
            border: none;
            border-top: 1px solid #e2e8f0;
        }

        .donation-banner-aia .or-divider span {
            color: #64748b;
            font-weight: 500;
        }

        .donation-banner-aia .btn-donate {
            width: 100%;
            max-width: 400px;
            padding: 1rem;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            border: none;
            cursor: pointer;
            font-family: inherit;
            font-size: 1rem;
            background: linear-gradient(135deg, #097bc0 0%, #0a5a8a 100%);
            color: #fff;
            box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
        }

        .donation-banner-aia .btn-donate:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
            background: #0a5a8a;
        }

        .donation-banner-aia .info-note {
            margin-top: 1.5rem;
            font-size: 0.9rem;
            color: #64748b;
        }

        /* Footer */
        footer {
            background: var(--text-dark);
            color: white;
            padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 3vw, 1.5rem) clamp(1rem, 2vw, 1rem);
        }

        .footer-content {
            max-width: clamp(320px, 90vw, 1200px);
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(clamp(220px, 40vw, 250px), 1fr));
            gap: clamp(1.5rem, 4vw, 2rem);
        }

        .footer-section h3 {
            margin-bottom: clamp(0.8rem, 2vw, 1rem);
            color: var(--accent);
            font-size: clamp(1.1rem, 2.5vw, 1.2rem);
        }

        .footer-section p {
            margin: 0.4rem 0;
        }

        .footer-section a {
            color: white;
            text-decoration: none;
            opacity: 0.8;
            transition: var(--transition);
            font-size: clamp(0.9rem, 2vw, 1rem);
        }

        .footer-section a:hover {
            opacity: 1;
            color: var(--accent);
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-contact {
            margin-top: 1rem;
        }

        .footer-contact-link {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: clamp(1.5rem, 4vw, 2rem);
            padding-top: clamp(0.8rem, 2vw, 1rem);
            text-align: center;
            opacity: 0.6;
            font-size: clamp(0.8rem, 1.8vw, 0.9rem);
        }

        .footer-bottom p {
            margin: 0.3rem 0;
        }

        /* Cookie Banner & Modal */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(30, 41, 59, 0.98);
            color: white;
            padding: clamp(1rem, 3vw, 1.5rem);
            z-index: 10000;
            backdrop-filter: blur(15px);
            border-top: 2px solid #097bc0;
            transform: translateY(100%);
            transition: transform 0.4s ease;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
        }

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

        .cookie-content {
            max-width: clamp(320px, 90vw, 1200px);
            margin: 0 auto;
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: clamp(1rem, 3vw, 2rem);
        }

        .cookie-message {
            flex: 1;
            min-width: 0;
        }

        .cookie-title {
            color: #4fc3f7;
            margin: 0 0 0.5rem 0;
            font-size: clamp(1rem, 2.2vw, 1.1rem);
            font-weight: 600;
        }

        .cookie-message p {
            margin: 0;
            font-size: clamp(0.85rem, 1.8vw, 0.95rem);
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
        }

        .cookie-message a {
            color: #4fc3f7;
            text-decoration: underline;
            transition: color 0.3s ease;
        }

        .cookie-message a:hover {
            color: #097bc0;
        }

        .cookie-actions {
            display: flex;
            gap: clamp(0.5rem, 1.2vw, 0.7rem);
            flex-shrink: 0;
        }

        .cookie-btn {
            padding: clamp(0.6rem, 1.5vw, 0.8rem) clamp(0.8rem, 2vw, 1rem);
            border-radius: 8px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
            font-size: clamp(0.8rem, 1.6vw, 0.85rem);
            border: none;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        .cookie-accept {
            background: #097bc0;
            color: white;
        }

        .cookie-accept:hover {
            background: #0a5a8a;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(9, 123, 192, 0.4);
        }

        .cookie-decline {
            background: #64748b;
            color: white;
        }

        .cookie-decline:hover {
            background: #475569;
            transform: translateY(-2px);
        }

        .cookie-settings {
            background: transparent;
            color: white;
            border: 1px solid #64748b;
        }

        .cookie-settings:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #4fc3f7;
            color: #4fc3f7;
        }

        .cookie-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 10002;
            padding: clamp(1rem, 3vw, 2rem);
            backdrop-filter: blur(5px);
        }

        .cookie-modal.show {
            display: flex;
        }

        .cookie-modal-content {
            background: white;
            border-radius: 16px;
            padding: 0;
            max-width: 600px;
            width: 100%;
            max-height: 90vh;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: modalSlideUp 0.3s ease-out;
        }

        .cookie-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: clamp(1.5rem, 3vw, 2rem);
            border-bottom: 1px solid #e2e8f0;
            background: #f8fafc;
        }

        .cookie-modal-header h3 {
            margin: 0;
            color: #1e293b;
            font-size: clamp(1.2rem, 2.5vw, 1.4rem);
        }

        .modal-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #64748b;
            padding: 0.5rem;
            border-radius: 6px;
            transition: all 0.3s ease;
        }

        .modal-close:hover {
            background: rgba(0, 0, 0, 0.1);
            color: #1e293b;
        }

        .cookie-categories {
            padding: clamp(1rem, 2.5vw, 1.5rem);
            max-height: 50vh;
            overflow-y: auto;
        }

        .cookie-category {
            margin-bottom: clamp(1.5rem, 3vw, 2rem);
            padding: clamp(1rem, 2.5vw, 1.2rem);
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            transition: border-color 0.3s ease;
        }

        .cookie-category:hover {
            border-color: #097bc0;
        }

        .category-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.8rem;
        }

        .category-header h4 {
            margin: 0;
            color: #1e293b;
            font-size: clamp(1rem, 2.2vw, 1.1rem);
        }

        .category-description {
            margin: 0 0 0.8rem 0;
            color: #64748b;
            font-size: clamp(0.85rem, 1.8vw, 0.9rem);
            line-height: 1.5;
        }

        .cookie-details {
            padding-top: 0.5rem;
            border-top: 1px solid #f1f5f9;
        }

        .cookie-details small {
            color: #94a3b8;
            font-size: clamp(0.75rem, 1.6vw, 0.8rem);
        }

        .cookie-toggle {
            position: relative;
            display: inline-block;
        }

        .cookie-toggle input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .toggle-slider {
            position: relative;
            display: inline-block;
            width: 50px;
            height: 24px;
            background-color: #cbd5e1;
            border-radius: 24px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .toggle-slider:before {
            content: "";
            position: absolute;
            height: 18px;
            width: 18px;
            left: 3px;
            bottom: 3px;
            background-color: white;
            border-radius: 50%;
            transition: transform 0.3s ease;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .cookie-toggle input:checked + .toggle-slider {
            background-color: #097bc0;
        }

        .cookie-toggle input:checked + .toggle-slider:before {
            transform: translateX(26px);
        }

        .cookie-toggle input:disabled + .toggle-slider {
            opacity: 0.6;
            cursor: not-allowed;
            background-color: #10b981;
        }

        .cookie-modal-footer {
            padding: clamp(1rem, 2.5vw, 1.5rem);
            background: #f8fafc;
            border-top: 1px solid #e2e8f0;
            display: flex;
            gap: 1rem;
            justify-content: flex-end;
        }

        .cookie-save {
            background: #097bc0;
            color: white;
        }

        /* Utilità */
        /* Animations */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(12px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes modalSlideUp {
            from {
                opacity: 0;
                transform: translateY(30px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .story-content {
                grid-template-columns: 1fr;
                gap: clamp(2rem, 6vw, 3rem);
                text-align: center;
            }

            .story-image {
                order: -1;
            }

            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 300px;
            }

            .cookie-content {
                flex-direction: column;
                gap: 1.5rem;
                text-align: left;
            }

            .cookie-actions {
                justify-content: stretch;
                flex-wrap: wrap;
            }

            .cookie-btn {
                flex: 1;
                min-width: 0;
                justify-content: center;
            }

            .cookie-modal-footer {
                flex-direction: column;
            }

            .cookie-modal-footer .cookie-btn {
                width: 100%;
                justify-content: center;
            }

            .donation-banner-aia h3 {
                font-size: 1.5rem;
            }

            .donation-banner-aia .bank-box {
                padding: 1.5rem;
            }

            .donation-banner-aia .intro-text {
                font-size: 1rem;
            }
}

        @media (max-width: 480px) {
            .team-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .cookie-actions {
                flex-direction: column;
            }

            .cookie-btn {
                width: 100%;
                padding: 1rem;
            }

            .cookie-modal {
                padding: 1rem;
            }

            .cookie-categories {
                padding: 1rem;
            }
}
    
