        .custom-core-main-title {
            font-size: 2.5em;
            font-weight: bold;
            color: #014489;
            text-align: center;
            margin: 20px 0;
        }
        .custom-core-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            padding: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .custom-core-card {
            background: linear-gradient(135deg, rgba(255, 255, 0, 0.5), rgba(0, 0, 255, 0.5));
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
            height: 300px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        .custom-core-card:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            background: linear-gradient(135deg, rgba(255, 255, 0, 0.7), rgba(0, 0, 255, 0.7));
        }
        .custom-core-icon {
            font-size: 2.5em;
            color: #2e7d32;
            margin-bottom: 15px;
        }
        .custom-core-title {
            font-size: 1.5em;
            font-weight: bold;
            margin-bottom: 10px;
            color: #014489;
        }
        .custom-core-description {
            font-size: 1em;
            color: #014489;
            text-align: center;
        }
        @media (max-width: 768px) {
            .custom-core-container {
                grid-template-columns: 1fr;
            }
            .custom-core-card {
                height: auto;
            }
            .custom-core-main-title {
                font-size: 2em;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        .custom-core-card {
            animation: fadeIn 1s ease-in-out;
        }