.section-header {
            text-align: center;
            margin-bottom: 30px;
            animation: fadeInDown 0.8s ease-out;
        }

        .section-header h2 {
            font-size: 28px;
            color: #315347;
            margin-bottom: 15px;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        .section-header p {
            font-size: 1.1rem;
            color: #555;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .card {
            background: white;
            border-radius: 12px;
            padding: 20px 30px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
            position: relative;
            overflow: hidden;
            animation: fadeInUp 0.8s ease-out;
        }

        .card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 4px;
            background: #f4c104;
            transition: left 0.6s ease-out;
        }

        .card:hover::before {
            left: 100%;
        }

        .card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 20px 60px rgba(0, 115, 230, 0.25);
        }

        .card-icon {
            width: 35px;
            height: 35px;
            background: #2d5044;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 20px;
            transition: all 0.6s ease-out;
            color: #fff;
        }

        .card:hover .card-icon {
            transform: rotateZ(360deg) scale(1.1);
            background: #f4c104;
        }

        .card-title {
            font-size: 1.5rem;
            color: #2d5044;
            margin-bottom: 15px;
            font-weight: 600;
            transition: color 0.3s ease-out;
        }

        .card:hover .card-title {
            color: #f4c104;
        }

        .card-content {
            color: #666;
            line-height: 1.8;
            font-size: 13px;
            transition: color 0.3s ease-out;
        }

        .card:hover .card-content {
            color: #333;
        }

        .accent-line {
            width: 50px;
            height: 3px;
            background: #2d5044;
            margin-bottom: 20px;
            transition: width 0.6s ease-out;
        }

        .card:hover .accent-line {
            width: 80px;
        }

        @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);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .section-header h2 {
                font-size: 2rem;
            }

            .section-header p {
                font-size: 1rem;
            }

            .cards-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .card {
                padding: 30px 20px;
            }

            .card-icon {
                width: 60px;
                height: 60px;
                font-size: 1.8rem;
            }

            .card-title {
                font-size: 1.3rem;
            }

            .card-content {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 480px) {
            .section-header h2 {
                font-size: 1.6rem;
            }

            .section-header p {
                font-size: 0.95rem;
            }

            .cards-grid {
                gap: 20px;
            }

            .card {
                padding: 25px 15px;
                border-radius: 8px;
            }

            .card-title {
                font-size: 1.1rem;
            }

            .card-content {
                font-size: 0.9rem;
                line-height: 1.6;
            }

            .card:hover {
                transform: translateY(-10px);
            }
        }