:root {
    --primary-color: #2563eb;
    --secondary-color: #db2777;
    --glass-bg: rgba(255, 255, 255, 0.95);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}



.glass-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container .logo {
    height: 40px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.15);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #1f2937;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

.nav-link:hover {
    background: #f3f4f6;
    color: #3b82f6;
    transform: translateY(-2px);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    min-width: 200px;
    transform: translateY(10px);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    display: block;
    color: #374151;
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: #f3f4f6;
    padding-left: 2rem;
    border-radius: 10px;
}

.settings-btn {
    background: #3b82f6;
    border: none;
    padding: 0.75rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.desktop-settings:hover {
    background: #2563eb;
    transform: rotate(120deg) scale(1.1);
}

.hamburger {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
}

.bar {
    width: 25px;
    height: 3px;
    background: #1f2937;
    margin: 5px 0;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        background: white;
        width: 100%;
        flex-direction: column;
        gap: 0;
        transition: all 0.3s ease;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 2rem 0 1rem 0;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
        text-align: center;
    }

    .dropdown-menu {
        position: static;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.2s ease;
        padding: 0 1rem;
        margin: 0;
    }

    .nav-item:hover .dropdown-menu {
        max-height: 200px; 
        opacity: 1;
        padding: 0.5rem 1rem;
    }

    .dropdown-item {
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    .nav-item:hover .dropdown-item {
        transform: translateY(0);
    }
    .desktop-settings {
        display: none !important;
    }
    
    .mobile-settings {
        display: flex !important;
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 0.5rem;
        background: #f3f4f6;
    }
    
    .mobile-settings:hover {
        background: #e5e7eb;
    }
    
    .mobile-settings i {
        margin-right: 0.5rem;
    }
    .mobile-settings {
        display: flex !important;
        width: auto;
        margin: 0.5rem auto;
        padding: 0.5rem 1.2rem !important;
        font-size: 0.9rem;
        border-radius: 25px !important;
        background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%) !important;
        color: white !important;
        box-shadow: 0 4px 6px rgba(59, 130, 246, 0.2);
        transition: all 0.3s ease;
        border: none;
    }

    .mobile-settings i {
        margin-right: 0.4rem;
        font-size: 0.95rem;
        transition: transform 0.3s ease;
    }

    .mobile-settings:hover {
        background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%) !important;
        transform: translateY(-1px);
        box-shadow: 0 6px 8px rgba(59, 130, 246, 0.3);
    }

    .mobile-settings:active {
        transform: translateY(1px);
    }

    .mobile-settings:hover i {
        transform: rotate(20deg);
    }
}
@media (min-width: 769px) {
    .mobile-settings {
        display: none !important;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
}

.content-overlay {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 20px;
}

.people-container {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}


.slogan {
    font-size: 3em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeInUp 1s forwards 1s;
    position: relative;
    padding-bottom: 40px; 
}

.secondary-video-container {
    position: fixed;
    bottom: 50px;
    left: 50px;
    width: 300px;
    transition: all 1s;
}
.donation-button {
    background-color: #3b82f6;
    color: white;
    border: none;
    padding: 10px 15px;
    margin-left: 10px;
    cursor: pointer;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translateZ(0);
}

.donation-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease-out, height 0.3s ease-out;
}

.donation-button:hover {
    background-color: #2563eb;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
    transform: translateY(-2px) scale(1.05);
}

.donation-button:hover::before {
    width: 200px;
    height: 200px;
}

.donation-button:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 5px 10px rgba(59, 130, 246, 0.2);
}
.floating-btn {
    position: absolute;
    bottom: 100px; 
    left: 38.5%;
    transform: translateX(-50%);
    width: 300px;
    height: 80px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('images/button-bg.jpg') center/cover;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 1.2em;
    font-weight: bold;
    text-transform: uppercase;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    opacity: 0; /* Ascundem inițial butonul */
    animation: slideUpFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 1.2s;
}


.btn-content {
    position: relative;
    z-index: 2;
    padding: 15px 30px;
}

.floating-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255,255,255,0.2), 
        transparent);
    transition: 0.5s;
}

.floating-btn:hover {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.floating-btn:hover::before {
    left: 100%;
}
@keyframes slideUpFadeIn {
    0% {
        opacity: 0;
        transform: translateY(100%) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(50%) scale(1);
    }
}
@media (max-width: 768px) {
    .floating-btn {
        left: 33%;
        width: 250px;
        height: 70px;
        font-size: 1em;
        bottom: 150px;
        margin-bottom: 50px;
    }

}

@media (max-width: 480px) {
    .floating-btn {
        left: 25%;
        width: 200px;
        height: 60px;
        font-size: 0.9em;
        bottom: 100px;
    }
    .btn-content {
        padding: 10px 20px;
    }
}
.signature-image {
    display: none;
    position: fixed;
    bottom: 50px;
    left: 50px;
    width: 300px;
}

@keyframes slideIn {
    to {
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-20px) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(20px); 
    }
}

.signature-hero {
    position: absolute;
    left: 190px;
    bottom: 270px;
    width: 200px;
    opacity: 0;
    animation: fadeInRight 1s forwards 1.5s;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
    transform: translateY(20px); 
    margin-top: 20px; 
}
@media (max-width: 768px) {
    .person {
        width: 150px;
        height: 225px;
    }
    .slogan {
        font-size: 2em;
        margin-bottom: 40px;
        padding-bottom: 30px;
    }
    .secondary-video-container {
        width: 200px;
        left: 20px;
        bottom: 20px;
    }
    .signature-hero {
        width: 150px;
        transform: translateY(10px) ;
    }
    @keyframes fadeInRight {
        to {
            transform: translateX(0) translateY(10px);
        }
    }
}

.content-section {
    padding: 100px 20px;
    background: #f8f9fa;
    min-height: 100vh;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease 0.2s;
}

.content-section.active {
    opacity: 1;
    transform: translateY(0);
}

.profile-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
}

.profile-image {
    flex: 1;
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transform: translateY(100%); 
    transition: transform 1s ease;
    opacity: 0;
}
@media only screen and (max-device-width: 768px) and (orientation: portrait) {
    .profile-image {
        max-width: 90vw;
        width: 100%;
        height: auto;
    }
}
@media (max-width: 768px) {
    .profile-container {
        max-width: 90vw;
        margin: 0 auto;
    }
}

.profile-text {
    flex: 1;
    transform: translateY(100%); 
    transition: transform 1s ease 0.3s;
    opacity: 0;
}

.profile-container.active .profile-image,
.profile-container.active .profile-text {
    transform: translateY(0);
    opacity: 1;
}

.signature {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5em;
    color: #2c3e50;
    margin-top: 30px;
    position: relative;
    display: inline-block;
}

.signature::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e74c3c;
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.profile-text:hover .signature::after {
    transform: scaleX(1);
}

@media (max-width: 768px) {
    .profile-container {
        flex-direction: column;
    }
    
    .profile-image {
        max-width: 300px;
        transform: translateY(50%);
    }
    .profile-text {
        transform: translateY(50%);
        transition-delay: 0.2s;}
}
.reversed-section .profile-container {
    flex-direction: row-reverse;
}

.reversed-section .profile-image {
    transform: translateY(100%);
    opacity: 0;
}

.reversed-section .profile-text {
    transform: translateY(100%); 
    opacity: 0;
}

.reversed-section.active .profile-image,
.reversed-section.active .profile-text {
    transform: translateY(0);
    opacity: 1;
}


@media (max-width: 768px) {
    .reversed-section .profile-container {
        flex-direction: column;
    }
    
    .reversed-section .profile-image {
        transform: translateY(50%);
    }
    
    .reversed-section .profile-text {
        transform: translateY(50%);
    }
    
    .reversed-section.active .profile-image,
    .reversed-section.active .profile-text {
        transform: translateY(0);
    }
}

.families-container {
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.family-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.family-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.card-main-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

.card-content {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.card-description {
    color: #4b5563;
    line-height: 1.6;
}

.card-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-details-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1.5rem;
}

.detail-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.family-card.active .card-details {
    max-height: 1000px;
}

.family-card.active .detail-image {
    opacity: 1;
    transform: translateY(0);
}

.detail-image:nth-child(1) { transition-delay: 0.1s; }
.detail-image:nth-child(2) { transition-delay: 0.2s; }
.detail-image:nth-child(3) { transition-delay: 0.3s; }
.detail-image:nth-child(4) { transition-delay: 0.4s; }
.detail-image:nth-child(5) { transition-delay: 0.5s; }

@media (max-width: 768px) {
    .families-container {
        grid-template-columns: 1fr;
    }
}

 .donation-section {
            display: flex;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            animation: fadeIn 1s ease-out;
        }

 .grid-container {
            flex: 0 0 75%;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: repeat(2, 1fr);
            gap: 0;
            height: 600px;
            position: relative;
        }

        .grid-item {
            position: relative;
            overflow: hidden;
        }

        .grid-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .grid-item:hover img {
            transform: scale(1.05);
        }

        
        .image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: white;
            padding: 30px;
            text-align: center;
            animation: slideUp 1.2s ease-out;
            z-index: 2;
        }

        .image-overlay .title-donation {
            font-size: 28px;
            margin-bottom: 15px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }

        .image-overlay .text-donation {
            font-size: 18px;
            opacity: 0.9;
            max-width: 80%;
            margin: 0 auto;
        }

        .content-container {
            flex: 0 0 25%;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: linear-gradient(135deg, #0c2461, #1e3799);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .content-container::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
            animation: rotate 15s linear infinite;
            z-index: 0;
        }

        .content-container > * {
            position: relative;
            z-index: 1;
        }

        .litle-donation {
            font-size: 36px;
            margin-bottom: 20px;
            color: #fff;
            position: relative;
            animation: slideDown 0.8s ease-out;
        }

        .litle-donation::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 70px;
            height: 4px;
            background: #4bcffa;
            border-radius: 2px;
        }

        .text-donation {
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 30px;
            opacity: 0.9;
            animation: fadeIn 1.5s ease-out;
        }

        .stats {
            display: flex;
            justify-content: space-between;
            margin-bottom: 30px;
            animation: fadeIn 1.8s ease-out;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 32px;
            font-weight: bold;
            color: #4bcffa;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 14px;
            opacity: 0.8;
        }

        .donate-buton {
            display: inline-block;
            background: #4bcffa;
            color: white;
            font-size: 18px;
            font-weight: bold;
            padding: 16px 40px;
            border-radius: 50px;
            text-decoration: none;
            text-align: center;
            box-shadow: 0 4px 15px rgba(75, 207, 250, 0.4);
            transition: all 0.4s ease;
            animation: pulse 2s infinite;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .donate-buton::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: all 0.4s ease;
            z-index: -1;
        }

        .donate-buton:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(75, 207, 250, 0.6);
        }

        .donate-buton:hover::before {
            width: 100%;
        }

        .donate-buton i {
            margin-right: 10px;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideUp {
            from { 
                transform: translateY(100px);
                opacity: 0;
            }
            to { 
                transform: translateY(0);
                opacity: 1;
            }
        }

        @keyframes slideDown {
            from { 
                transform: translateY(-30px);
                opacity: 0;
            }
            to { 
                transform: translateY(0);
                opacity: 1;
            }
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(75, 207, 250, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(75, 207, 250, 0); }
            100% { box-shadow: 0 0 0 0 rgba(75, 207, 250, 0); }
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @media (max-width: 1200px) {
            .grid-container {
                height: 500px;
            }
            
            .litle-donation {
                font-size: 32px;
            }
            
            .text-donation {
                font-size: 16px;
            }
        }
        
        @media (max-width: 992px) {
            .donation-section {
                flex-direction: column;
            }
            
            .grid-container {
                flex: 0 0 60%;
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: repeat(2, 1fr);
                height: 500px;
            }
            
            .content-container {
                flex: 0 0 40%;
            }
        }

        @media (max-width: 768px) {
            .grid-container {
                height: 400px;
            }
            
            .content-container {
                padding: 30px;
            }
            
            .litle-donation {
                font-size: 28px;
            }
            
            .stat-number {
                font-size: 28px;
            }
            .grid-item-deck{
                display:none;
            }
        }

        @media (max-width: 576px) {
            .grid-container {
                height: 350px;
                grid-template-columns: 1fr;
                grid-template-rows: repeat(4, 1fr);
            }
            
            .content-container {
                padding: 25px 20px;
            }
            
            .litle-donation {
                font-size: 24px;
            }
            
            .text-donation {
                font-size: 15px;
            }
            
            .stat-number {
                font-size: 24px;
            }
            
            .donate-buton {
                font-size: 16px;
                padding: 14px 30px;
            }
        }
         .volunteer-container {
  max-width: none;
  width: calc(100vw - 40px);
  margin: 20px;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
  display: flex;
  flex-wrap: wrap;
  position: relative;
        }
        .volunteer-fullwidth {
  position: relative;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  background: #f5f5f5;
  padding: 40px 0;     
}
        
        .decoration {
            position: absolute;
            z-index: 0;
        }


        .image-section {
            flex: 1;
            min-width: 300px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
        }

        .image-wrapper {
            position: relative;
            width: 100%;
            max-width: 500px;
            height: 450px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            transform: perspective(1000px) rotateY(-5deg);
            transition: all 0.5s ease;
        }

        .image-wrapper:hover {
            transform: perspective(1000px) rotateY(0deg);
            box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.3);
        }

        .image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .image-wrapper:hover img {
            transform: scale(1.05);
        }

        .image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            padding: 20px;
            color: white;
            text-align: center;
            font-weight: 300;
            font-size: 18px;
        }

        .content-section {
            flex: 1;
            min-width: 300px;
            padding: 50px 40px;
            position: relative;
            z-index: 1;
        }

        .tag {
            display: inline-block;
            background: linear-gradient(to right, #6a11cb, #2575fc);
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 20px;
            box-shadow: 0 4px 15px rgba(106, 17, 203, 0.3);
        }

        .title-volunter {
            font-family: 'Playfair Display', serif;
            font-size: 42px;
            line-height: 1.2;
            margin-bottom: 20px;
            color: #2c3e50;
            position: relative;
        }

        .title-volunter:after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #ff9a9e, #fad0c4);
            border-radius: 2px;
        }

        .intro {
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 30px;
            color: #555;
        }

        .benefits-container {
            margin: 30px 0;
        }

        .benefit {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
            padding: 15px;
            border-radius: 15px;
            background: rgba(244, 247, 251, 0.6);
            transition: all 0.3s ease;
            cursor: default;
        }

        .benefit:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 1);
            box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.1);
        }

        .benefit-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
            color: white;
            font-size: 24px;
            box-shadow: 0 5px 15px rgba(106, 17, 203, 0.3);
        }

        .benefit-content h3 {
            font-size: 20px;
            margin-bottom: 8px;
            color: #2c3e50;
        }

        .benefit-content p {
            font-size: 16px;
            color: #666;
            line-height: 1.5;
        }

        .btn-container {
            margin-top: 40px;
            text-align: center;
        }

        .volunteer-btn {
            display: inline-flex;
            align-items: center;
            padding: 18px 45px;
            background: linear-gradient(to right, #ff9a9e, #fad0c4);
            color: white;
            font-size: 18px;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 10px 25px rgba(255, 154, 158, 0.4);
            position: relative;
            overflow: hidden;
        }

        .volunteer-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(255, 154, 158, 0.6);
            background: linear-gradient(to right, #ff7b81, #f8c3b4);
        }

        .volunteer-btn:active {
            transform: translateY(0);
        }

        .volunteer-btn i {
            margin-left: 10px;
            transition: transform 0.3s ease;
        }

        .volunteer-btn:hover i {
            transform: translateX(5px);
        }

        .volunteer-btn:after {
            content: "";
            position: absolute;
            top: -50%;
            left: -60%;
            width: 50px;
            height: 200%;
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(25deg);
            transition: all 0.7s;
        }

        .volunteer-btn:hover:after {
            left: 110%;
        }

        @media (max-width: 992px) {
            .image-wrapper {
                height: 400px;
            }
            
            .title-volunter {
                font-size: 36px;
            }
        }

        @media (max-width: 768px) {
            .volunteer-container {
                flex-direction: column;
            }
            
            .image-section {
                padding: 20px;
            }
            
            .image-wrapper {
                height: 350px;
                transform: none;
            }
            
            .content-section {
                padding: 40px 30px;
            }
            
            .title-volunter {
                font-size: 32px;
            }
            
            .benefit {
                padding: 12px;
            }
            
            .benefit-icon {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
        }

        @media (max-width: 480px) {
            .volunteer-btn {
                padding: 15px 35px;
                font-size: 16px;
            }
            
            .benefit {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .benefit-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .title-volunter {
                font-size: 28px;
            }
        }

         .contact-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .contact-section {
            background: white;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
            overflow: hidden;
            display: flex;
            flex-wrap: wrap;
            animation: fadeIn 1s ease-out;
            margin-bottom: 40px;
        }
        
        .content-side {
            flex: 1;
            min-width: 300px;
            padding: 50px;
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .content-side::before {
            content: "";
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
        }
        
        .content-side::after {
            content: "";
            position: absolute;
            bottom: -80px;
            left: -50px;
            width: 250px;
            height: 250px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
        }
        
        .reasons-side {
            flex: 1;
            min-width: 300px;
            padding: 50px;
            background: white;
        }
        
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 25px;
            position: relative;
            line-height: 1.3;
            z-index: 2;
        }
        
        .content-side .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 70px;
            height: 4px;
            background: #ffcc00;
            border-radius: 2px;
        }
        
        .reasons-side .section-title {
            color: #2c3e50;
        }
        
        .reasons-side .section-title::after {
            background: #2c3e50;
        }
        
        .description {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 30px;
            opacity: 0.9;
            z-index: 2;
            position: relative;
        }
        
        .contact-button {
            display: inline-block;
            background: #ffcc00;
            color: #2c3e50;
            text-decoration: none;
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            z-index: 2;
            text-align: center;
            max-width: 250px;
            animation: pulse 2s infinite;
        }
        
        .contact-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            animation: none;
        }
        
        .contact-button:active {
            transform: translateY(0);
        }
        
        .reasons-list {
            list-style: none;
        }
        
        .reason-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
            padding: 20px;
            border-radius: 12px;
            background: #f8f9ff;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-left: 4px solid #2c3e50;
        }
        
        .reason-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(44, 62, 80, 0.12);
            border-left: 4px solid #ffcc00;
        }
        
        .reason-icon {
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .reason-icon i {
            font-size: 1.3rem;
            color: white;
        }
        
        .reason-content h3 {
            color: #2c3e50;
            margin-bottom: 8px;
        }
        
        .reason-content p {
            color: #6c757d;
            line-height: 1.6;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.6);
            }
            70% {
                box-shadow: 0 0 0 12px rgba(255, 204, 0, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(255, 204, 0, 0);
            }
        }
        

        @media (max-width: 992px) {
            .section-title {
                font-size: 2.2rem;
            }
            
            .content-side, .reasons-side {
                padding: 40px;
            }
        }
        
        @media (max-width: 768px) {
            .contact-section {
                flex-direction: column;
                margin-bottom: 30px;
            }
            
            .content-side, .reasons-side {
                padding: 40px 30px;
            }
            
            .contact-button {
                max-width: 100%;
                width: 100%;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
        }
        
        @media (max-width: 576px) {
            .section-title {
                font-size: 1.8rem;
            }
            
            .reason-item {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .reason-icon {
                margin-bottom: 15px;
            }
            
            .description {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 400px) {
            .content-side, .reasons-side {
                padding: 30px 20px;
            }
            
            .section-title {
                font-size: 1.6rem;
            }
        }
        
        .highlight {
            color: #ffcc00;
            font-weight: bold;
        }
        