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

        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
            min-height: 100vh;
            color: #2e7d32;
        }

        .header {
            background: linear-gradient(135deg, #2e7d32 0%, #4caf50 100%);
            color: white;
            padding: 2rem 0;
            text-align: center;
            box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
        }

        .logo {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
        }

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

        .intro-section {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            margin: 2rem 0;
            box-shadow: 0 8px 25px rgba(46, 125, 50, 0.1);
            text-align: center;
        }

        .section-title {
            font-size: 2rem;
            color: #2e7d32;
            margin-bottom: 2rem;
            text-align: center;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 50px;
            height: 3px;
            background: #4caf50;
            margin: 0.5rem auto;
            border-radius: 2px;
        }

        .partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .partner-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 8px 25px rgba(46, 125, 50, 0.1);
            border: 2px solid #e8f5e8;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .partner-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(46, 125, 50, 0.2);
        }

        .partner-logo {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #4caf50, #66bb6a);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem auto;
            font-size: 2rem;
            color: white;
        }

        .partner-name {
            font-size: 1.3rem;
            font-weight: bold;
            color: #2e7d32;
            margin-bottom: 0.5rem;
            text-align: center;
        }

        .partner-type {
            background: #e8f5e8;
            color: #2e7d32;
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: bold;
            display: inline-block;
            margin-bottom: 1rem;
        }

        .partner-description {
            line-height: 1.6;
            color: #555;
            margin-bottom: 1rem;
        }

        .partner-contribution {
            background: #f1f8e9;
            padding: 1rem;
            border-radius: 8px;
            border-left: 4px solid #4caf50;
            font-size: 0.9rem;
            color: #2e7d32;
        }

        .category-section {
            margin: 3rem 0;
        }

        .category-header {
            background: linear-gradient(135deg, #4caf50, #66bb6a);
            color: white;
            padding: 1rem 2rem;
            border-radius: 10px;
            margin-bottom: 2rem;
            text-align: center;
        }

        .thank-you-section {
            background: linear-gradient(135deg, #ffecb3 0%, #fff3c4 100%);
            border-radius: 15px;
            padding: 2rem;
            margin: 3rem 0;
            text-align: center;
            border: 2px solid #ffca28;
        }

        .thank-you-section h3 {
            color: #ef6c00;
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .become-partner {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            margin: 2rem 0;
            box-shadow: 0 8px 25px rgba(46, 125, 50, 0.1);
            text-align: center;
        }

        .btn-partner {
            background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            margin: 0.5rem;
        }

        .btn-partner:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
        }

        .nav-link {
            display: inline-block;
            background: #4caf50;
            color: white;
            padding: 0.8rem 1.5rem;
            text-decoration: none;
            border-radius: 8px;
            margin: 0.5rem;
            transition: all 0.3s ease;
        }

        .nav-link:hover {
            background: #45a049;
            transform: translateY(-2px);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }

        .stat-card {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(46, 125, 50, 0.1);
        }

        .stat-number {
            font-size: 2rem;
            font-weight: bold;
            color: #4caf50;
            display: block;
        }

        .stat-label {
            color: #666;
            font-size: 0.9rem;
            margin-top: 0.5rem;
        }

        @media (max-width: 768px) {
            .partners-grid {
                grid-template-columns: 1fr;
            }
            .container {
                padding: 1rem;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }