        .tiles-section {
            padding: 0;
            margin: 3em 0;
            font-family: Montserrat, sans-serif;
            font-optical-sizing: auto;
        }

        .tiles-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
        }

        .tile {
            flex: 1 1 50%;
            padding: 60px 50px;
            border-right: 1px solid #1C3B4F;
            border-bottom: 1px solid #1C3B4F;
        }

        .tile:nth-child(2n) {
            border-right: none;
        }

        .tile:nth-child(3),
        .tile:nth-child(4) {
            border-bottom: none;
        }

        .tile h3 {
            font-size: 32px;
            color: #fdc516;
            margin-bottom: 20px;
            font-weight: bold;
        }

        .tile h4 {
            font-size: 20px;
            color: #1C3B4F;
            margin-bottom: 20px;
            font-weight: bold;
        }

        .tile p {
            font-size: 16px;
            line-height: 1.7;
            color: #1C3B4F;
        }

        @media (max-width: 968px) {
            .tiles-section {
                margin: 0;
            }

            .tiles-container {
                flex-direction: column;
            }

            .tile {
                flex: 1 1 100%;
                border-right: none !important;
                border-bottom: 1px solid #1C3B4F;
                padding: 40px 30px;
            }

            .tile:nth-child(3) {
                border-bottom: 1px solid #1C3B4F;
            }

            .tile:last-child {
                border-bottom: none;
            }

            .tile h3 {
                font-size: 26px;
            }

            .tile h4 {
                font-size: 18px;
            }
        }