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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            line-height: 1.6;
            color: #1a1a1a;
            background: #ffffff;
        }

        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 4px;
        }

        ::-webkit-scrollbar-track {
            background: transparent;
        }

        ::-webkit-scrollbar-thumb {
            background: rgba(0, 0, 0, 0.1);
            border-radius: 2px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: rgba(0, 0, 0, 0.2);
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
            transform: translateY(-100px);
            animation: slideDown 0.8s ease forwards;
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .header-title {
            font-size: 1.125rem;
            font-weight: 600;
            color: #1a1a1a;
            transition: opacity 0.2s ease;
        }

        .header-title:hover {
            opacity: 0.7;
        }

        .header-logo {
            width: 8rem;
            transition: opacity 0.2s ease;
        }

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

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fafafa;
            position: relative;
            padding: 6rem 0;
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-top: 5rem;
        }

        .hero-text {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease 0.2s forwards;
        }

        .hero-title {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 700;
            line-height: 1;
            margin-bottom: 2rem;
            color: #1a1a1a;
            letter-spacing: -0.02em;
        }

        .highlight {
            color: #8a44fb;
        }

        .hero-text p {
            font-size: 1.125rem;
            line-height: 1.7;
            color: #444;
            margin-bottom: 2rem;
        }

        .hero-button {
            background: #8a44fb;
            color: white;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.2s ease;
            text-decoration: none;
        }

        .hero-button-mobile {
            display: none;
        }

        .hero-button-dflex {
            display: flex;
            align-items: center;
            margin: 2rem 0;
        }

        .hero-button:hover {
            background: black;
            transform: translateY(-1px);
        }

        .hero-button:active {
            transform: translateY(0);
        }

        .hero-video {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease 0.4s forwards;
        }

        .video-container {
            position: relative;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.08);
            aspect-ratio: 16 / 9;
        }

        .video-placeholder {
            position: absolute;
            inset: 0;
            background: #f8f9fa;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .play-button {
            width: 4rem;
            height: 4rem;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(0, 0, 0, 0.1);
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .play-button:hover {
            transform: scale(1.05);
            border-color: #8a44fb;
        }

        .video-element {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
            color: rgba(0, 0, 0, 0.4);
        }

        /* Progress Section - Redesigned */
        .progress-section {
            background: #e2d5ff;
            border-top: 1px solid rgba(0, 0, 0, 0.08);
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
            padding: 2rem 0;
            margin: 0;
            width: 100%;
            position: relative;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease 0.8s forwards;
        }

        .progress-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: auto 1fr auto;
            gap: 3rem;
            align-items: center;
        }

        .progress-info {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .campaign-avatar {
            width: 4.5rem;
            height: 4.5rem;
            background: linear-gradient(135deg, #8a44fb, #6366f1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.1rem;
            flex-shrink: 0;
            overflow: auto;
        }

            .campaign-avatar img{
                width: 100%;
            }

        .campaign-details h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: #1a1a1a;
            margin: 0 0 0.25rem 0;
        }

        .campaign-details p {
            font-size: 0.875rem;
            color: #666;
            margin: 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .hearts-indicator {
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
            background: #f0fdf4;
            color: #16a34a;
            padding: 0.125rem 0.5rem;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .progress-bar-section {
            flex: 1;
            min-width: 0;
        }

        .progress-stats {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 0.75rem;
        }

        .progress-percentage-display {
            font-size: 1.5rem;
            font-weight: 700;
            color: #2563eb;
        }

        .progress-bar-container {
            position: relative;
            height: 8px;
            background: #f1f5f9;
            border-radius: 4px;
            overflow: hidden;
            margin-bottom: 0.5rem;
        }

        .progress-bar-fill {
            height: 100%;
            background: linear-gradient(90deg, #10b981, #059669);
            border-radius: 4px;
            transition: width 1.2s ease-out;
            position: relative;
        }

        .progress-bar-fill::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            animation: shimmer 2s infinite;
        }

        .progress-amounts {
            display: flex;
            align-items: baseline;
            gap: 0.5rem;
            font-size: 0.875rem;
            color: #666;
        }

        .current-amount {
            font-weight: 700;
            color: #2563eb;
            font-size: 1rem;
        }

        /* Action */
        .urgency-badge {
            background: white;
            color: #b91c1c;
            padding: 0.5rem 1rem;
            border-radius: 12px;
            font-size: 0.875rem;
            font-weight: 600;
        }

        /* Sections */
        .section {
            padding: 6rem 0;
        }

        .section-white {
            background: white;
        }

        .section-gray {
            background: #fafafa;
        }

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

        .container-wide {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
            opacity: 0;
            transform: translateY(20px);
        }

        .section-header.animate {
            animation: fadeInUp 0.6s ease forwards;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            margin-bottom: 1rem;
            color: #1a1a1a;
            letter-spacing: -0.02em;
            line-height: 1.1;
        }

        .section-subtitle {
            font-size: 1.125rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Story Section */
        .story-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .story-text {
            font-size: 1.125rem;
            line-height: 1.7;
            color: #444;
            opacity: 0;
            transform: translateY(20px);
        }

        .story-text.animate {
            animation: fadeInUp 0.6s ease forwards;
        }

        .story-image {
            opacity: 0;
            transform: translateY(20px);
        }

        .story-image.animate {
            animation: fadeInUp 0.6s ease 0.1s forwards;
        }

        .image-container {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.08);
        }

        .image-container img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Gallery */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 1.5rem;
        }

        .gallery-item {
            position: relative;
            aspect-ratio: 1;
            border-radius: 12px;
            overflow: hidden;
            background: white;
            border: 1px solid rgba(0, 0, 0, 0.08);
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
        }

        .gallery-item.animate {
            animation: fadeInUp 0.6s ease forwards;
        }

        .gallery-item:hover {
            transform: translateY(-4px);
            border-color: rgba(0, 0, 0, 0.12);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.02);
        }

        /* Benefits */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .benefit-card {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
        }

        .benefit-card.animate {
            animation: fadeInUp 0.6s ease forwards;
        }

        .benefit-card:hover {
            border-color: rgba(0, 0, 0, 0.12);
            transform: translateY(-2px);
        }

        .benefit-icon {
            width: 3rem;
            height: 3rem;
            background: #8a44fb;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: transform 0.2s ease;
        }

        .benefit-card:hover .benefit-icon {
            transform: scale(1.05);
        }

        .benefit-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: #1a1a1a;
        }

        .benefit-description {
            color: #666;
            line-height: 1.6;
        }

        /* Plans */
        .plans-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        .plan-card {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid rgba(0, 0, 0, 0.08);
            position: relative;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
        }

        .plan-card-green {
            background: #8a44fb18 !important;
        }

        .plan-card.animate {
            animation: fadeInUp 0.6s ease forwards;
        }

        .plan-card:hover {
            border-color: rgba(0, 0, 0, 0.12);
            transform: translateY(-4px);
        }

        .plan-number {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            width: 2.5rem;
            height: 2.5rem;
            background: #8a44fb;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 0.875rem;
        }

        .plan-content {
            margin-bottom: 2rem;
            padding-top: 0.5rem;
        }

        .plan-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 0.5rem;
        }

        .plan-description {
            color: #666;
            margin-bottom: 0.4rem;
        }

        .plan-unit-price {
            font-size: 0.875rem;
            color: #999;
        }

        .plan-price {
            font-size: 2rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 1.5rem;
        }

        .plan-button {
            width: 100%;
            background: #8a44fb;
            color: white;
            padding: 1rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .plan-button:hover {
            background: black;
        }

        .plan-button:active {
            transform: scale(0.98);
        }

        /* Testimonials */
        .testimonials-container {
            position: relative;
        }

        .testimonials-grid {
            display: grid;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .testimonial {
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            border: 1px solid rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
        }

        .testimonial.animate {
            animation: fadeInUp 0.6s ease forwards;
        }

        .testimonial:hover {
            border-color: rgba(0, 0, 0, 0.12);
        }

        .testimonial-content {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .testimonial-avatar {
            width: 3rem;
            height: 3rem;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
            background: #f8f9fa;
            border: 1px solid rgba(0, 0, 0, 0.08);
        }

        .testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .testimonial-info {
            flex: 1;
        }

        .testimonial-header {
            margin-bottom: 0.75rem;
        }

        .testimonial-name {
            font-weight: 600;
            color: #0066cc;
            font-size: 1rem;
        }

        .testimonial-handle {
            color: #0066cc;
            font-size: 0.875rem;
            opacity: 0.8;
        }

        .testimonial-platform {
            color: #999;
            font-size: 0.875rem;
        }

        .testimonial-text {
            color: #444;
            line-height: 1.5;
            font-size: 0.95rem;
        }

        /* Show more button */
        .show-more-container {
            text-align: center;
            margin-top: 2rem;
        }

        .show-more-btn {
            background: #8a44fb;
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 8px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .show-more-btn:hover {
            background: black;
        }

        .testimonial.hidden {
            display: none;
        }

        /* FAQ */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .faq-item {
            background: white;
            border-radius: 12px;
            border: 1px solid rgba(0, 0, 0, 0.08);
            margin-bottom: 1rem;
            opacity: 0;
            transform: translateY(20px);
        }

        .faq-item.animate {
            animation: fadeInUp 0.6s ease forwards;
        }

        .faq-question {
            width: 100%;
            padding: 1.5rem;
            text-align: left;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 1.125rem;
            font-weight: 600;
            color: #1a1a1a;
            transition: all 0.2s ease;
        }

        .faq-question:hover {
            background: #fafafa;
        }

        .faq-icons {
            position: relative;
            width: 1.25rem;
            height: 1.25rem;
        }

        .faq-icon-check {
            width: 1.25rem;
            height: 1.25rem;
            transition: all 0.3s ease;
            stroke: #8a44fb;
            stroke-width: 2;
            fill: none;
            position: absolute;
            top: 0;
            left: 0;
        }

        .faq-icon-x {
            width: 1.25rem;
            height: 1.25rem;
            transition: all 0.3s ease;
            stroke: #666;
            stroke-width: 2;
            fill: none;
            opacity: 0;
            transform: rotate(-90deg);
            position: absolute;
            top: 0;
            left: 0;
        }

        .faq-question.active .faq-icon-check {
            opacity: 0;
            transform: rotate(90deg);
        }

        .faq-question.active .faq-icon-x {
            opacity: 1;
            transform: rotate(0deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-answer.open {
            max-height: fit-content;
        }

        .faq-answer-content-dflex {
            display: flex;
            align-items: flex-start;
            flex-direction: column;
        }

        .faq-answer-content {
            padding: 0 1.5rem 1.5rem;
            color: #666;
            line-height: 1.6;
        }

        .faq-answer-content li {
            list-style-type: none;
        }

        .faq-aswer-content-bold {
            font-weight: bold;
            margin-bottom: 1rem;
        }

        /* Footer */
        .footer {
            background: black;
            color: white;
            padding: 4rem 0;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            margin-bottom: 3rem;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .footer-logo {
            height: 2.5rem;
        }

        .footer-info {
            color: #999;
            font-size: 0.875rem;
            margin-bottom: 1rem;
        }

        .footer-certificate .certificate {
            width: 17rem;
        }

        .footer-description {
            color: #ccc;
            line-height: 1.6;
            font-size: 1.125rem;
        }

        .footer-links {
            display: none;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

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

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: #999;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-links .center {
            text-align: center;
        }

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

        /* Floating Donate Bar */
        .donate-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            color: #1a1a1a;
            border-top: 1px solid rgba(0, 0, 0, 0.08);
            transform: translateY(100%);
            opacity: 0;
            transition: all 0.4s ease;
        }

        .donate-bar.show {
            transform: translateY(0);
            opacity: 1;
        }

        .donate-bar-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .donate-bar-text {
            font-weight: 600;
            font-size: 1rem;
        }

        .donate-bar-button {
            background: #8a44fb;
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .donate-bar-button:hover {
            background: black;
        }

        /* Icons */
        .icon {
            width: 1.5rem;
            height: 1.5rem;
            fill: currentColor;
        }

        .icon-white {
            fill: white;
        }

        /* Animations */
        @keyframes slideDown {
            from {
                transform: translateY(-100px);
            }
            to {
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0) translateX(-50%);
            }
            40% {
                transform: translateY(-8px) translateX(-50%);
            }
            60% {
                transform: translateY(-4px) translateX(-50%);
            }
        }

        @keyframes shimmer {
            0% { 
                transform: translateX(-100%); 
            }
            100% { 
                transform: translateX(100%); 
            }
        }

        /* Stagger animation delays */
        .gallery-item:nth-child(1) { animation-delay: 0s; }
        .gallery-item:nth-child(2) { animation-delay: 0.1s; }
        .gallery-item:nth-child(3) { animation-delay: 0.2s; }
        .gallery-item:nth-child(4) { animation-delay: 0.3s; }
        .gallery-item:nth-child(5) { animation-delay: 0.4s; }
        .gallery-item:nth-child(6) { animation-delay: 0.5s; }

        .benefit-card:nth-child(1) { animation-delay: 0s; }
        .benefit-card:nth-child(2) { animation-delay: 0.1s; }
        .benefit-card:nth-child(3) { animation-delay: 0.2s; }
        .benefit-card:nth-child(4) { animation-delay: 0.3s; }
        .benefit-card:nth-child(5) { animation-delay: 0.4s; }
        .benefit-card:nth-child(6) { animation-delay: 0.5s; }

        .plan-card:nth-child(1) { animation-delay: 0s; }
        .plan-card:nth-child(2) { animation-delay: 0.1s; }
        .plan-card:nth-child(3) { animation-delay: 0.2s; }
        .plan-card:nth-child(4) { animation-delay: 0.3s; }
        .plan-card:nth-child(5) { animation-delay: 0.4s; }
        .plan-card:nth-child(6) { animation-delay: 0.5s; }

        .testimonial:nth-child(1) { animation-delay: 0s; }
        .testimonial:nth-child(2) { animation-delay: 0.1s; }
        .testimonial:nth-child(3) { animation-delay: 0.2s; }

        .faq-item:nth-child(1) { animation-delay: 0s; }
        .faq-item:nth-child(2) { animation-delay: 0.1s; }
        .faq-item:nth-child(3) { animation-delay: 0.2s; }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .story-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .plans-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }

            .benefits-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }

            .gallery-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }

            .progress-content {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                text-align: left;
            }
            
            .progress-info {
                justify-content: flex-start;
            }
            
            .progress-action {
                justify-content: center;
                flex-wrap: wrap;
            }
        }

        @media (max-width: 768px) {
            .section {
                padding: 4rem 0;
            }

            .hero {
                padding: 4rem 0;
            }

            .header-content {
                padding: 1rem;
            }

            .header-title {
                font-size: 1rem;
            }

            .header-logo {
                width: 6rem;
            }

            .testimonial-content {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .footer-brand {
                justify-content: center;
            }

            .footer-links {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 1.5rem;
            }

            .footer-links .center,
            .footer-links .right {
                text-align: center;
            }

            .footer-certificate {
                display: flex;
                justify-content: center;
            }

            .footer-certificate .certificate {
                width: 14rem;
            }

            .donate-bar-content {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
                padding: 1rem;
            }

            .gallery-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }

            .hero-button {
                display: none;
            }

            .hero-button-mobile {
                display: flex;
            }

            .hero-button-dflex {
                justify-content: center;
            }
            .hero-button-dflex-none{
                display: none;
            }

            .hero-text p {
                margin-bottom: 0;
            }

            .progress-section {
                padding: 1.5rem 2rem;
            }
            
            .progress-content {
                padding: 0 1rem;
                gap: 1rem;
                grid-template-columns: 1fr;
                text-align: left;
            }
            
            .campaign-avatar {
                width: 3rem;
                height: 3rem;
                font-size: 1rem;
            }
            
            .campaign-details {
                text-align: left;
            }
            
            .progress-action {
                gap: 0.75rem;
            }
            
            .urgency-badge {
                font-size: 0.7rem;
                padding: 0.375rem 0.75rem;
            }
        }

        @media (max-width: 480px) {
            .container,
            .container-wide {
                padding: 0 1rem;
            }

            .hero-content {
                padding: 0 1rem;
            }

            .benefit-card,
            .plan-card {
                padding: 1.5rem;
            }

            .testimonial {
                padding: 1rem;
            }

            .faq-question {
                padding: 1rem;
                font-size: 1rem;
            }

            .faq-container {
                padding: 0 1rem;
            }

            .header-content {
                padding: 0.75rem 1rem;
            }

            .header-title {
                font-size: 0.9rem;
            }

            .header-logo {
                width: 5rem;
            }

            .footer-certificate .certificate {
                width: 12rem;
            }

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

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

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

            .progress-info {
                flex-direction: row;
                gap: 1rem;
                align-items: center;
            }
            
            .campaign-details {
                text-align: left;
            }
            
            .progress-action {
                flex-direction: column;
                width: 100%;
            }
            
            .progress-cta,
            .urgency-badge {
                width: 100%;
                text-align: center;
            }
        }