

     

  

        .forms-container {
            
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
             box-sizing: border-box;
              padding: 70px 7% 50px 7% !important;
                height: auto;
            background-color: transparent;
            
        }

        .office-section {
            margin-bottom: 58px;
        }

        .office-title {
            margin-bottom: 20px;
            font-size: 23px;
            font-weight: 700;
            line-height: 1.3;
        }

        .office-note {
            margin-bottom: 40px;
            font-size: 16px;
        }

        .office-note a {
            color: inherit;
            text-decoration: none;
        }

        .office-note a:hover {
            text-decoration: underline;
        }

        .forms-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 24px;
        }

        .document-card {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 96px;
            padding: 24px 30px;
            overflow: hidden;

            color: #c9151a;
            background: #ffffff;
            text-decoration: none;
            box-shadow: 0 7px 14px rgba(0, 0, 0, 0.1);

            transition:
                background-color 0.25s ease,
                transform 0.25s ease,
                box-shadow 0.25s ease;
        }

        .document-card:hover {
            background: #ffffff;
            transform: translateY(-4px);
            box-shadow: 0 11px 22px rgba(0, 0, 0, 0.16);
        }

        .document-card:focus-visible {
            outline: 3px solid #111111;
            outline-offset: 4px;
        }

        .document-title {
            display: -webkit-box;
            max-width: calc(100% - 55px);
            overflow: hidden;

            font-size: 16px;
            font-weight: 600;
            line-height: 1.5;

            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
        }

        .download-icon {
            display: inline-flex;
            flex: 0 0 auto;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            margin-left: 22px;
            color: #c9151a;
        }

        .download-icon svg {
            width: 50px;
            height: 50px;
            stroke: currentColor;
        }

        /* Tablet */
        @media (max-width: 900px) {
            .forms-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        /* Mobile */
        @media (max-width: 600px) {
            .forms-container {
                padding: 18px 15px 35px;
            }

            .office-section {
                margin-bottom: 45px;
            }

            .office-title {
                font-size: 21px;
            }

            .office-note {
                margin-bottom: 28px;
            }

            .forms-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .document-card {
                min-height: 88px;
                padding: 21px 22px;
            }

            .document-title {
                max-width: calc(100% - 45px);
                font-size: 15px;
            }

            .download-icon {
                margin-left: 15px;
            }
        }