         .twc-section {
            margin: 0 auto;
            font-family: 'Arial', sans-serif;
        }

        .twc-nav {
            display: flex;
            justify-content: space-between;
            margin-bottom: 30px;
            flex-wrap: wrap;
            gap: 5px;
        }

        .twc-nav button {
            background-color: transparent;
            border: none;
            padding: 15px 10px;
            font-weight: bold;
            color: #000;
            cursor: pointer;
            font-size: 14px;
            border-radius: 0;
            width: 12%;
            transition: all 0.3s ease;
        }

        .twc-nav button.active {
            background-color: #225939;
            color: white;
            border-bottom: 4px solid #f1c40f;
        }

        .twc-tab {
            display: none;
            flex-wrap: wrap;
            background-color: #fff;
            border-radius: 12px;
            overflow: hidden;
            align-items: stretch;
        }

        .twc-tab.active {
            display: flex;
        }

        .twc-left {
            flex: 1;
            min-width: 300px;
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background-color: #fff;
        }

        .twc-left h2 {
            font-weight: bold;
            margin-bottom: 20px;
            color: #000;
            font-size: 2.25rem!important;
            font-family: 'Roboto Condensed', sans-serif !important;
        }

        .twc-left p {
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 20px;
            color: #333;
            font-family: 'Open Sans';
        }

        .twc-left a {
            color: #298f86;
            font-weight: bold;
            text-decoration: none;
            font-size: 16px;
        }

        .twc-right {
            flex: 1;
            min-width: 300px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            background-color: #225939;
            padding: 0;
            max-width: 500px;
        }

        .twc-image-box {
            padding: 20px;
            border-radius: 12px 12px 0 0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 320px;
            max-width: 400px;
        }

        .twc-right img {
            width: 400px;
            height: 300px !important;
            object-fit: cover;
            border-radius: 12px;
            background: #fff;
            padding: 20px;
        }

        .twc-yellow-bar {
            background-color: #f1c40f;
            height: 40px;
            width: 100%;
            border-radius: 0 0 12px 0;
            display:none;
        }

        @media (max-width: 1024px) {
            .twc-left,
            .twc-right {
                width: 100%;
                max-width: 100%;
                padding: 20px;
                box-sizing: border-box;
            }

            .twc-left h2 {
                font-size: 2rem;
                margin-bottom: 10px;
                text-align: left;
            }

            .twc-left h4 {
                font-size: 1.2rem;
                margin-bottom: 8px;
                text-align: left;
            }

            .twc-left p {
                font-size: 1rem;
                text-align: left;
            }

            .twc-right {
                text-align: center;
            }
        }

        @media (max-width: 850px) {
            .twc-section {
                max-width: 100%;
                padding: 0 10px;
                margin: auto;
                flex-wrap: nowrap;
            }

            .twc-nav button {
                width: 45%;
                font-size: 15px;
            }

            .twc-left h2 {
                font-size: 1.75rem;
                text-align: center;
            }

            .twc-left h4 {
                font-size: 1.1rem;
                text-align: center;
            }

            .twc-left p {
                font-size: 0.95rem;
                text-align: center;
            }

            .twc-right img {
                max-width: 90%;
                margin: 0 auto;
            }
        }

        @media (max-width: 480px) {
            .twc-nav button {
                width: 100%;
                font-size: 16px;
            }

            .twc-left {
                padding: 15px;
            }

            .twc-left h2 {
                font-size: 1.5rem;
                text-align: center;
            }

            .twc-left h4 {
                font-size: 1rem;
                text-align: center;
            }

            .twc-left p {
                font-size: 0.9rem;
                text-align: center;
            }

            .twc-right img {
                max-width: 100%;
                height: auto;
                display: block;
                margin: 0 auto;
            }
        }
 