@import url('https://fonts.googleapis.com/css2?family=Helvetica+Neue:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #000000;
    background-color: #F0F0F0;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}
header {
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: background 0.3s, box-shadow 0.3s;
}

header.scrolled {
    background: #FFFFFF;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    width: 50px;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s;
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    transition: color 0.3s, border-bottom 0.3s;
    position: relative;
}

.nav-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #FFD700; 
    color: #1A1A2E;
    border: 2px solid #FFD700;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.nav-button:hover {
    background-color: #FFC300; 
    color: #FFFFFF; 
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.nav-button:active {
    transform: translateY(0px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.5);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background: #FFD700;
    left: 0;
    bottom: -5px;
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.hamburger i {
    color: #000000;
    transition: color 0.3s;
}

.hamburger i:hover {
    color: #FFD700;
}

.hero {
    height: 100vh;
    background: url('bandiera.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 70px; 
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.5);
}

.hero .container {
    position: relative;
    text-align: center;
    color: #FFFFFF;
    max-width: 800px;
    padding: 20px;
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    transition: color 0.3s;
}

.hero h2:hover {
    color: #FFD700;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    background: #FFD700; 
    color: #1A1A2E; 
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: background 0.3s, transform 0.3s;
    display: inline-block;
}

.btn-secondary {
    background: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
}

.btn-secondary:hover {
    background: #FFD700;
    color: #1A1A2E;
}

.btn:hover {
    background: #FFC300; 
    transform: translateY(-3px);
}

.about {
    padding: 100px 0;
    background: #FFFFFF;
}

.about h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 60px;
    position: relative;
}

.about h2::after {
    content: '';
    width: 60px;
    height: 4px;
    background: #FFD700;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.about-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 18px;
    color: #555555;
}

.about-icons {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.icon-box {
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s;
    cursor: pointer;
}

.icon-box:hover {
    transform: translateY(-5px);
}

.icon-box i {
    font-size: 30px;
    color: #FFD700;
    transition: color 0.3s;
}

.icon-box:hover i {
    color: #FFC300;
}

.icon-box h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 5px;
}

.icon-box p {
    font-size: 16px;
    color: #777777;
}

.downloads {
    padding: 100px 0;
    background: #FFFFFF;
}

.downloads h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 60px;
    position: relative;
}

.downloads h2::after {
    content: '';
    width: 60px;
    height: 4px;
    background: #FFD700;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.download-section {
    margin-bottom: 80px;
}

.download-section h3 {
    font-size: 28px;
    font-weight: 600;
    color: #1A1A2E;
    text-align: center;
    margin-bottom: 40px;
}

.download-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center; 
}

.download-card {
    background: #F9F9F9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 250px; 
}

.download-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.download-card img {
    width: 100%;
    height: 150px; 
    object-fit: cover;
    transition: transform 0.3s;
}

.download-card:hover img {
    transform: scale(1.05);
}

.download-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin: 15px 0 10px 0;
    text-align: center;
}

.download-card p {
    font-size: 14px;
    color: #777777;
    margin: 0 20px 15px 20px;
    text-align: center;
}

.download-btn {
    background: #FFD700;
    color: #1A1A2E; 
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px 20px 20px;
    transition: background 0.3s, transform 0.3s;
}

.download-btn i {
    margin-right: 8px;
}

.download-btn:hover {
    background: #FFC300;
    transform: translateY(-3px);
}

.testimonials {
    padding: 100px 0;
    background: #FFFFFF;
}

.testimonials h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 60px;
    position: relative;
}

.testimonials h2::after {
    content: '';
    width: 60px;
    height: 4px;
    background: #FFD700;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-slider {
    display: flex;
    overflow-x: scroll;
    gap: 30px;
    scroll-behavior: smooth;
}

.testimonial {
    background: #F9F9F9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    flex: 0 0 300px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.testimonial i {
    font-size: 24px;
    color: #FFD700;
    position: absolute;
    top: 20px;
    left: 20px;
}

.testimonial p {
    margin-top: 40px;
    font-size: 16px;
    color: #555555;
}

.testimonial h4 {
    margin-top: 20px;
    font-size: 18px;
    color: #000000;
    text-align: right;
}

.updates {
    background-color: #FFFDF7; 
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    margin-top: 30px; 
    animation: updatesPopIn 1.3s cubic-bezier(0.65, 0, 0.35, 1) forwards;
    opacity: 0;
}

@keyframes updatesPopIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    60% {
        opacity: 0.6;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.updates h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}

.updates p {
    text-align: center;
    color: #555555;
    max-width: 800px;
    margin: 0 auto 30px auto;
    font-size: 18px;
}

.updates-list {
    list-style-type: square;
    padding-left: 20px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(10px);
    animation: updatesListFade 1s ease-out 0.5s forwards;
}

@keyframes updatesListFade {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.updates-list li {
    margin-bottom: 10px;
    font-size: 16px;
    opacity: 0;
    transform: translateX(-20px);
    animation: singleNewsItem 0.7s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes singleNewsItem {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    50% {
        opacity: 0.5;
        transform: translateX(5px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.updates-list li:nth-child(1) { animation-delay: 0.6s; }
.updates-list li:nth-child(2) { animation-delay: 0.7s; }
.updates-list li:nth-child(3) { animation-delay: 0.8s; }
.updates-list li:nth-child(4) { animation-delay: 0.9s; }

.updates-list li:hover {
    color: #1A1A2E; 
    font-weight: 600;
    transition: color 0.3s, font-weight 0.3s;
}

.contact {
    padding: 100px 0;
    background: #F0F0F0;
}

.contact h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 60px;
    position: relative;
}

.contact h2::after {
    content: '';
    width: 60px;
    height: 4px;
    background: #FFD700;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.contact-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-details {
    flex: 1;
    min-width: 300px;
}

.detail-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.detail-box i {
    font-size: 30px;
    color: #FFD700;
    transition: color 0.3s, transform 0.3s;
}

.detail-box:hover i {
    color: #FFC300;
    transform: scale(1.1);
}

.detail-box h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 5px;
}

.detail-box p {
    font-size: 16px;
    color: #777777;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-form .form-group {
    position: relative;
    margin-bottom: 20px;
}

.contact-form .form-group i {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #777777;
    font-size: 18px;
    transition: color 0.3s;
}

.contact-form .form-group:hover i {
    color: #FFD700;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 15px 15px 15px 50px;
    border: 1px solid #DDDDDD;
    border-radius: 8px;
    font-size: 16px;
    transition: border 0.3s, box-shadow 0.3s;
    background-color: #FFFFFF;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    border-color: #FFD700;
    outline: none;
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form button {
    background: #FFD700;
    color: #1A1A2E;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s, transform 0.3s;
    align-self: flex-start;
}

.contact-form button:hover {
    background: #FFC300;
    transform: translateY(-3px);
}

footer {
    background: #1A1A2E;
    color: #FFFFFF;
    padding: 30px 0;
    text-align: center;
}

footer p {
    font-size: 14px;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    color: #FFFFFF;
    font-size: 18px;
    transition: color 0.3s, transform 0.3s;
}

.social-icons a:hover {
    color: #FFD700;
    transform: scale(1.2);
}

@media (max-width: 992px) {
    .about-content,
    .testimonial-slider, 
    .contact-content {
        flex-direction: column;
        align-items: center;
    }

    nav ul {
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        display: none;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    nav ul.show {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .testimonial-slider {
        flex-direction: column;
        align-items: center;
    }

    .download-card {
        width: 100%;
        max-width: 400px;
    }

    .calendar-grid {
        grid-template-columns: 1fr 1fr; 
    }
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    nav ul li a {
        padding: 15px 0;
        text-align: center;
        border-bottom: 1px solid #EEEEEE;
    }

    nav ul li:last-child a {
        border-bottom: none;
    }

    .nav-button {
        padding: 8px 16px;
        font-size: 14px;
    }

    .calendar-grid {
        grid-template-columns: 1fr; 
    }

    .calendar-month h3 {
        font-size: 18px;
    }
    
    .updates-list li {
        font-size: 14px;
    }
}

@keyframes studentQAEnter {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    80% {
        opacity: 0.8;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animazione per il form */
@keyframes qaFormFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes qaItemFadeIn {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    50% {
        opacity: 0.5;
        transform: translateX(10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.student-qa {
    padding: 40px 0; 
    background-color: #FFFFFF;
    animation: studentQAEnter 0.6s ease-out forwards; 
    opacity: 0; 
}

.student-qa h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.student-qa h2::after {
    content: '';
    width: 60px;
    height: 4px;
    background: #FFD700;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.student-qa p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px; 
    color: #555555;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.qa-form {
    max-width: 600px;
    margin: 0 auto 40px auto; 
    background: #F9F9F9;
    padding: 25px; 
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    animation: qaFormFadeIn 0.8s ease-out forwards; 
    opacity: 0;
}

.qa-form h3 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #1A1A2E;
    text-align: center;
}

.qa-form .form-group {
    position: relative;
    margin-bottom: 20px;
}

.qa-form .form-group i {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #777777;
    font-size: 18px;
    transition: color 0.3s;
}

.qa-form .form-group:hover i {
    color: #FFD700;
}

.qa-form input, 
.qa-form textarea {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid #DDDDDD;
    border-radius: 8px;
    font-size: 16px;
    transition: border 0.3s, box-shadow 0.3s;
    background-color: #FFFFFF;
}

.qa-form input:focus, 
.qa-form textarea:focus {
    border-color: #FFD700;
    outline: none;
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.qa-form textarea {
    resize: vertical;
    min-height: 120px;
}

.qa-form .btn {
    background: #FFD700;
    color: #1A1A2E;
    padding: 12px 25px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s, transform 0.3s;
    display: block;
    margin: 0 auto;
}

.qa-form .btn:hover {
    background: #FFC300;
    transform: translateY(-3px);
}

.qa-list {
    max-width: 800px;
    margin: 0 auto;
}

.qa-list h3 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
}

.qa-list h3::after {
    content: '';
    width: 40px;
    height: 3px;
    background: #FFD700;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.qa-item {
    background: #F9F9F9;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    opacity: 0;
    transform: translateX(-30px);
    animation: qaItemFadeIn 0.8s ease-out forwards;
}

.qa-item:nth-child(1) {
    animation-delay: 0.8s; 
}

.qa-item:nth-child(2) {
    animation-delay: 0.9s; 
}

.qa-item:nth-child(3) {
    animation-delay: 1.0s; 
}


.qa-item:nth-child(4) { animation-delay: 1.1s; }
.qa-item:nth-child(5) { animation-delay: 1.2s; }
.qa-item:nth-child(6) { animation-delay: 1.3s; }
.qa-item:nth-child(7) { animation-delay: 1.4s; }
.qa-item:nth-child(8) { animation-delay: 1.5s; }
.qa-item:nth-child(9) { animation-delay: 1.6s; }
.qa-item:nth-child(10) { animation-delay: 1.7s; }
.qa-item:nth-child(11) { animation-delay: 1.8s; }
.qa-item:nth-child(12) { animation-delay: 1.9s; }

.qa-item .qa-question {
    font-weight: bold;
    margin-bottom: 10px;
    color: #1A1A2E;
    display: flex;
    align-items: center;
}

.qa-item .qa-question i {
    margin-right: 10px;
    color: #FFD700;
}

.qa-item .qa-answer {
    padding-left: 25px;
    border-left: 3px solid #FFD700;
    color: #555555;
    position: relative;
}

.qa-item .qa-answer i {
    position: absolute;
    top: 0;
    left: -15px;
    color: #FFD700;
}

@media (max-width: 992px) {
    .student-qa {
        padding: 40px 20px; 
    }

    .qa-form {
        padding: 20px;
        margin-bottom: 20px; 
    }

    .qa-list h3 {
        font-size: 20px;
    }

    .qa-item {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .student-qa {
        padding: 30px 15px; 
    }

    .qa-form h3 {
        font-size: 20px;
    }

    .qa-form input, 
    .qa-form textarea {
        font-size: 14px;
    }

    .qa-form .btn {
        font-size: 14px;
        padding: 10px 20px;
    }

    .qa-list h3 {
        font-size: 18px;
    }

    .qa-item {
        padding: 15px;
    }
}
/* Stile per i Dropdown */
nav ul li.dropdown {
    position: relative;
}

nav ul li.dropdown .dropdown-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    background: #FFFFFF;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

nav ul li.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

nav ul li.dropdown .dropdown-menu li {
    white-space: nowrap;
}

nav ul li.dropdown .dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #1A1A2E;
    text-decoration: none;
    transition: background 0.3s;
}

nav ul li.dropdown .dropdown-menu a:hover {
    background: #F0F0F0;
}
/* Stile comune per i bottoni */
button, .btn, .btn-secondary, .nav-button, .download-btn {
    transition: transform 0.3s, box-shadow 0.3s; /* Transizione uniforme */
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
}

/* Effetto hover per tutti i bottoni */
button:hover, .btn:hover, .btn-secondary:hover, .nav-button:hover, .download-btn:hover {
    transform: translateY(-3px); /* Movimento verso l'alto */
    box-shadow: 0 4px 10px rgba(0,0,0,0.15); /* Aggiunta ombra durante hover */
}

/* Effetto active per tutti i bottoni */
button:active, .btn:active, .btn-secondary:active, .nav-button:active, .download-btn:active {
    transform: translateY(0px); /* Nessun spostamento quando il bottone è premuto */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Ombra più leggera quando attivo */
}
.donations {
    background: #ffffff;
    padding: 0.2rem 1.3rem 0.8rem;
    max-width: 720px;
    margin: 0.2rem auto 0.4rem;
    border-radius: 18px;
}

.donation-header {
    text-align: center;
    margin-bottom: 1rem;
}

.donations h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.donations .lead {
    color: #7f8c8d;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.benefits-grid {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 1rem 0;
}

.benefit-card {
    background: #fff;
    border-radius: 18px;
    padding: 1.2rem;
    width: 100%;
    max-width: 280px;
    border: 2px solid #FFD700;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    background: #fff9e6;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #FFA500;
    font-size: 1.5rem;
    border: 2px dashed #FFD700;
}

.benefit-text h3 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    text-align: center;
    font-weight: 600;
}

.benefit-text p {
    color: #7f8c8d;
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.4;
    margin: 0;
}

.donation-action {
    text-align: center;
    margin-top: 1rem;
}

.donate-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #2c3e50;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.donate-button:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #FFC000, #FF8C00);
}

.donate-button i {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.donation-footer {
    display: inline-flex;
    align-items: center;
    margin-top: 0.8rem;
    color: #95a5a6;
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    background: #f5f5f5;
}

.donation-footer i {
    margin-right: 0.3rem;
    color: #2ecc71;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .benefits-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .benefit-card {
        max-width: 100%;
    }
    
    .donations {
        padding: 0.2rem 1rem 0.8rem;
        margin: 0.2rem 0.5rem 0.5rem;
    }
}

.dfghjkjg{
    background-color: white;
}

/* AGGIUNGI QUESTE REGOLE AL TUO CSS ESISTENTE */

/* Menu Hamburger - Solo mobile */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.8rem;
    color: #1A1A2E;
    padding: 10px;
    z-index: 1001;
}

/* Stile per il menu mobile */
.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 20px 0;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 20px;
}

.mobile-menu .nav-button {
    width: 100%;
    text-align: center;
}

/* Dropdown menu per mobile */
.mobile-menu .dropdown {
    position: relative;
}

.mobile-menu .dropdown > a::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.mobile-menu .dropdown.active > a::after {
    transform: rotate(180deg);
}

.mobile-menu .dropdown-menu {
    display: none;
    padding-left: 20px;
    margin-top: 10px;
}

.mobile-menu .dropdown.active .dropdown-menu {
    display: block;
}

.mobile-menu .dropdown-menu a {
    display: block;
    padding: 10px 0;
    color: #1A1A2E;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-menu .dropdown-menu a:hover {
    color: #FFA500;
}

/* Media Query per attivare il menu mobile */
@media (max-width: 992px) {
    /* Nascondi la navigazione desktop */
    nav:not(.mobile-menu) {
        display: none;
    }
    
    /* Mostra l'hamburger */
    .hamburger {
        display: block;
    }
    
    /* Modifiche all'header per mobile */
    header .container {
        padding: 15px 20px;
    }
    
    .hero {
        padding-top: 120px;
    }
}

.hamburger.active i::before {
    content: '\f00d';
}

@media (max-width: 768px) {
    .logo-text {
        font-size: 1.5rem;
    }
    
    .logo-image {
        width: 40px;
        height: 40px;
    }
}
