body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .sercontainer {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            padding: 20px;
            max-width: 100%; /* Make sure the container takes the full width of its parent */
            width: 100%; /* Set width to 100% to ensure responsiveness */
        }

        .sercard {
            background-color: #f9f9f9;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .sercard:hover {
            transform: translateY(-10px);
        }

        .sercard-icon {
            font-size: 40px;
            margin-bottom: 15px;
        }

        .sercard-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .sercard-description {
            font-size: 14px;
            margin-bottom: 20px;
            color: #555;
        }

        .sercard-button {
            background-color: #007BFF;
            color: white;
            padding: 10px 15px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            text-decoration: none;
        }

        .sercard-button:hover {
            background-color: #0056b3;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .sercontainer {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .sercontainer {
                grid-template-columns: 1fr;
            }
        }