* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            line-height: 1.8;
            color: #2c3e50;
          
        }

        .hero {
            height: 70vh;
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                        url('/img/banner1.jpg') center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1), transparent);
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        .hero-content {
            max-width: 900px;
            padding: 2rem;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            animation: fadeInDown 1s ease-out;
            color: #4d071e;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero p {
            font-size: 1.5rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
            animation: fadeInUp 1s ease-out 0.3s both;
              color: #dcb560;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        .intro-section {
            background: white;
            padding: 4rem;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            margin-bottom: 4rem;
            transform: translateY(-50px);
            position: relative;
        }

        .intro-section::before {
            content: '❤️';
            position: absolute;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 3rem;
            background: white;
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .intro-section h2 {
            font-size: 2.5rem;
            color: #4d071e;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .intro-section p {
            font-size: 1.2rem;
            color: #555;
            text-align: center;
            max-width: 800px;
            margin: 0 auto 2rem;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .stat-card {
            background: linear-gradient(135deg, #d2dae5 0%, #d4af37 100%);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            color: white;
            transition: transform 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-10px);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1.1rem;
              color: white;
        }

        .content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin: 4rem 0;
        }

        .card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .card-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .card-content {
            padding: 2rem;
        }

        .card h3 {
            font-size: 1.8rem;
            color: #4d071e;
            margin-bottom: 1rem;
        }

        .card p {
            color: #666;
            line-height: 1.8;
        }

        .full-width-section {
            background: linear-gradient(135deg, #d2dae5 0%, #d4af37 100%);
            padding: 4rem 2rem;
            margin: 4rem 0;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
        }

        .full-width-section h2 {
            font-size: 2.5rem;
            color: #4d071e;
            text-align: center;
            margin-bottom: 3rem;
        }

        .tips-list {
            max-width: 900px;
            margin: 0 auto;
        }

        .tip-item {
            /*background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);*/
            padding: 2rem;
            margin-bottom: 1.5rem;
            border-radius: 15px;
            color: white;
            transition: transform 0.3s ease;
        }

        .tip-item:hover {
            transform: translateX(10px);
        }

        .tip-item h4 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .image-text-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            margin: 4rem 0;
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .image-text-section img {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .text-content h3 {
            font-size: 2rem;
            color: #4d071e;
            margin-bottom: 1rem;
        }

        .text-content p {
            color: #555;
            margin-bottom: 1rem;
        }

        .cta-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 4rem 2rem;
            text-align: center;
            border-radius: 20px;
            color: white;
            margin: 4rem 0;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
              color: #4d071e;
        }

        .cta-section p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
             color: black;
        }

        .cta-button {
            background: #dcb560;
            color: white;
            padding: 1rem 3rem;
            border: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .testimonial {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 3rem;
            border-radius: 20px;
            margin: 2rem 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .testimonial-text {
            font-size: 1.3rem;
            font-style: italic;
            color: #333;
            margin-bottom: 1rem;
        }

        .testimonial-author {
            font-weight: bold;
            color: #4d071e;
            font-size: 1.1rem;
        }

        .challenge-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .challenge-card {
            /*background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);*/
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .challenge-card:hover {
            transform: scale(1.05);
        }

        .challenge-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .challenge-card h4 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #fff;
        }

        .challenge-card p {
            color: #fff;
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.2rem;
            }

            .image-text-section {
                grid-template-columns: 1fr;
            }

            .intro-section {
                padding: 2rem;
            }
        }