    .handouts-grid-wrapper .container {
                max-width: 1728px;
            }


            .handouts-grid-wrapper .handouts-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 64px 30px;
            }

            @media (max-width: 1024px) {
                .handouts-grid-wrapper .handouts-grid {
                    grid-template-columns: repeat(2, 1fr);
                    gap: 34px 30px;

                }
            }

            @media (max-width: 768px) {
                .handouts-grid-wrapper .handouts-grid {
                    grid-template-columns: 1fr;
                    gap: 20px;

                }
            }

            .handouts-grid-wrapper .handout-btn {
                background-color: #112C4F;
                color: #ffffff;
                text-decoration: none;
                border-radius: 50px;
                padding: 10px;
                font-weight: 500;
                text-align: center;
                cursor: pointer;
                line-height: 1.5;
                transition: background-color 0.2s ease, transform 0.1s ease;
                display: flex;
                align-items: center;
                justify-content: center;
                box-shadow: none;
            }

            @media (min-width: 1200px) {
                .handouts-grid-wrapper .handout-btn {
                    padding: 13px 24px;
                    font-size: 19px;
                }
            }

            .handouts-grid-wrapper .handout-btn:hover {
                transform: translateY(-2px);
            }

            .handouts-grid-wrapper .handout-btn:active {
                transform: translateY(0);
            }