 .twenty-box-inside-card {
            display: flex;
            justify-content: space-between;
            
            
            background-color: #fefefe;
            padding: 20px 40px;
            border-radius: px;
            gap: 10px;
            flex-wrap: wrap;
            border: 1px dashed #ccc;
            box-sizing: border-box;
            width: 100%;
            
        }

        .twenty-text {
            flex: 1;
            min-width: 300px;
            margin-left: 10px;
            padding-right: 10px;
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            height: 100%;
        }

        .twenty-text h1 {
            font-size: 40px;
            font-weight: 500;
            color: black;
            margin: 0 0 0 0;
            
            line-height: 1.1;
        }

        .twenty-text h2 {
            font-size: 35px;
            font-weight: 600;
            color: darkblue;
            text-decoration: none;
            margin: 0 0 10px 0;

            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
        }

        .twenty-text p {
            font-size: 16px;
            line-height: 1.8;
            color: #333;
            margin-bottom: 30px;
            flex-grow: 1;
            text-align: left;
        }

        .twenty-image {
            flex: 1.2;
            text-align: center;
            min-width: 300px;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 300px;
        }

        .flip-container {
            width: 100%;
            height: 100%;
            perspective: 1000px;
        }

        .flip-inner {
            width: 100%;
            height: 100%;
            position: relative;
            transition: transform 0.6s ease;
            transform-style: preserve-3d;
        }

        .flip-container:hover .flip-inner {
            transform: rotateY(180deg);
        }

        .front, .back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
        }

        .front {
            z-index: 2;
        }

        .back {
            transform: rotateY(180deg);
        }

        .front img, .back img {
            width: 100%;
            height: 350px;
            object-fit: cover;
            border-radius: 6px;
            box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
        }

        .twenty-read-more-btn {
            width: auto;
            text-align: center;
            margin-top: auto;
            align-self: flex-start;
        }

        .twenty-read-more-btn a {
            display: inline-block;
            padding: 10px 20px;
            background-color: #004080;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            position: relative;
            z-index: 1;
        }

        .twenty-read-more-btn a::before,
        .twenty-read-more-btn a::after {
            content: none !important;
            position: static !important;
            background: none !important;
            border: none !important;
            box-shadow: none !important;
            transition: none !important;
            opacity: 0 !important;
        }

        .twenty-read-more-btn a:hover {
            background-color: #002c5f;
            transform: translateY(-2px);
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
            color: #fefefe;
        }

        .square-line-container {
            display: flex;
            align-items: center;
            margin: 5px 0;
        }

        .square {
            width: 15px;
            height: 15px;
            background-color: darkblue;
            transform: rotate(45deg);
            margin-right: 0;
        }

        .line {
            width: 80px;
            height: 2px;
            background-color: #004080;
            margin-left: 0;
        }

        .card-divider {
            margin-top: 20px;
            border: none;
            height: 2px;
            background: linear-gradient(to right, #004080, #b30000);
            width: 100%;
            border-radius: 5px;
            margin-left: auto;
            margin-right: auto;
        }

        @media (max-width: 768px) {
            .twenty-box-inside-card {
                flex-direction: column;
                padding: 15px;
                gap: 15px;
                min-height: unset;
            }

            .twenty-text {
                order: 2;
                margin-left: 0;
                padding-right: 0;
                min-width: unset;
                width: 100%;
                text-align: center;
                align-items: center;
                height: auto;
            }

            .twenty-text h1 {
                font-size: 24px;
                text-align: center;
                margin-bottom: 10px;
            }

            .twenty-text h2 {
                font-size: 30px;
                text-align: center;
                margin: 5px 0 10px 0;
            }

            .twenty-text p {
                font-size: 14px;
                margin-bottom: 15px;
                flex-grow: unset;
                text-align: center;
            }

            .square-line-container {
                justify-content: center;
            }

            .square, .line {
                align-self: center;
            }

            .line {
                width: 60px;
            }

            .twenty-image {
                order: 1;
                min-width: unset;
                width: 100%;
                margin-bottom: 10px;
                height: 250px;
            }

            .front img, .back img {
                width: 100%;
                max-width: 100%;
                height: 250px;
                object-fit: contain;
            }

            .flip-container, .flip-inner {
                height: 250px;
            }

            .twenty-read-more-btn {
                width: 100%;
                margin-top: 10px;
                align-self: center;
            }

            .twenty-read-more-btn a {
                width: calc(100% - 40px);
                max-width: 250px;
                box-sizing: border-box;
            }

            .twenty-read-more-btn a:hover {
                transform: none;
                box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            }

            .card-divider {
                margin-top: 15px;
            }
        }

        @media (max-width: 480px) {
            .twenty-box-inside-card {
                padding: 10px;
                gap: 10px;
            }

            .twenty-text h1 {
                font-size: 20px;
            }

            .twenty-text h2 {
                font-size: 24px;
            }

            .twenty-text p {
                font-size: 12px;
            }

            .twenty-image {
                height: 180px;
            }

            .front img, .back img {
                height: 180px;
            }

            .flip-container, .flip-inner {
                height: 180px;
            }

            .twenty-read-more-btn a {
                padding: 8px 15px;
            }

            .square {
                width: 12px;
                height: 12px;
            }

            .line {
                width: 50px;
            }
        }