body {
                font-family: 'Segoe UI', sans-serif;
                background: #f3f6fb;
                margin: 0;
                padding: 0;
                color: #333;
            }

            h1 {
                text-align: center;
                color: #14285d;
                margin: 40px 0 20px;
                font-size: 2.2rem;
                position: relative;
            }

            h1::after {
                content: '';
                width: 60px;
                height: 4px;
                background: #2d6ef0;
                display: block;
                margin: 10px auto 0;
                border-radius: 2px;
            }

            .achievements-grid,
            .cert-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 20px;
                padding: 0 20px 40px;
                max-width: 1200px;
                margin: auto;
            }

            .achievement-card,
            .cert-card {
                background: #fff;
                border-radius: 10px;
                overflow: hidden;
                box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
                transition: transform 0.3s ease, box-shadow 0.3s ease;
                display: flex;
                flex-direction: column;
            }

            .achievement-card img,
            .cert-card img {
                width: 100%;
                height: 200px;
                object-fit: cover;
            }

            .achievement-content,
            .cert-content {
                padding: 15px 20px;
                flex-grow: 1;
            }

            .achievement-content h2 {
                font-size: 1.25rem;
                color: #2d6ef0;
                margin: 0 0 10px;
            }

            .achievement-content p {
                font-size: 0.95rem;
                line-height: 1.5;
                color: #555;
            }

            .cert-content p {
                text-align: center;
                margin: 10px 0 0;
                font-weight: 600;
                color: #333;
            }

            /* Hover Effects */
            .achievement-card:hover,
            .cert-card:hover {
                transform: translateY(-6px);
                box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
            }