        .objective {
            max-width: 1200px;
            margin: 0 auto;
        }


        .objective-grid {
            display: grid;
            grid-template-rows: repeat(auto-fit, minmax(10px, 1fr));
            grid-template-columns: repeat(auto-fit, minmax(50px, 0.5fr));
            gap: 10px;
            padding: 10px;
        }

        .objective-item {
            background: white;
            border-radius: 20px;
            padding: 10px 10px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            position: relative;
            overflow: hidden;
            animation: fadeInUp 0.6s ease backwards;
        }

        .objective-item:nth-child(1) { animation-delay: 0.1s; }
        .objective-item:nth-child(2) { animation-delay: 0.2s; }
        .objective-item:nth-child(3) { animation-delay: 0.3s; }
        .objective-item:nth-child(4) { animation-delay: 0.4s; }
        .objective-item:nth-child(5) { animation-delay: 0.5s; }
        .objective-item:nth-child(6) { animation-delay: 0.6s; }
        .objective-item:nth-child(7) { animation-delay: 0.7s; }

        .objective-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
            pointer-events: none;
        }

        .objective-item:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

        .objective-item h2 {
            font-size: 1.4rem;
            font-weight: 700;
            line-height: 1.4;
            position: relative;
            z-index: 1;
        }

        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.6);
            backdrop-filter: blur(5px);
            animation: fadeIn 0.3s ease;
        }

        .modal-content {
            background: white;
            margin: 10% auto;
            padding: 40px;
            border-radius: 20px;
            width: 90%;
            max-width: 600px;
            position: relative;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            animation: slideUp 0.4s ease;
        }

        .close-button {
            position: absolute;
            right: 20px;
            top: 20px;
            font-size: 28px;
            font-weight: bold;
            color: #999;
            cursor: pointer;
            transition: color 0.3s ease;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: #f5f5f5;
        }

        .close-button:hover {
            color: #333;
            background: #e0e0e0;
        }

        #popupTitle {
            color: #333;
            font-size: 1.8rem;
            margin-bottom: 20px;
            padding-right: 40px;
        }

        #popupDetails {
            color: #666;
            line-height: 1.8;
            font-size: 1.05rem;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }

            .objective-grid {
                grid-template-columns: 1fr;
                padding: 10px;
            }

            .modal-content {
                margin: 20% auto;
                padding: 30px;
            }

            #popupTitle {
                font-size: 1.5rem;
            }
        }