
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Verdana, sans-serif;
            font-size: 14px;
            color: #000;
            background: url('/Images/bg_hy_squares.gif');
            line-height: 1.6;
        }

        .container {
            max-width: 980px;
            margin: 0 auto;
            background: #fff;
            box-shadow: 0 0 20px rgba(0,0,0,0.1);
        }

         /* Main Content */
        .main-content {
            display: grid;
            grid-template-columns: 250px 1fr;
            gap: 0;
        }

        /* Sidebar */
        .sidebar {
            background: #F0F0F0;
            padding: 20px 15px;
        }

        .sidebar h3 {
            text-align: center;
            color: #333;
            margin-bottom: 15px;
            font-size: 16px;
        }

        .sidebar-text {
            text-align: justify;
            font-size: 12px;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .sidebar img {
            width: 100%;
            height: auto;
            margin-bottom: 15px;
        }

        .sidebar iframe {
            width: 100%;
            height: 350px;
            border: none;
        }

        /* Content Area */
        .content {
            padding: 20px;
        }

        .content-title {
            font-family: Arial, sans-serif;
            font-size: 20px;
            color: #A29B2B;
            font-weight: bold;
            padding: 10px 0;
            border-bottom: 5px solid #959595;
            margin-bottom: 20px;
        }

        /* Grid Sections */
        .content-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 30px;
        }

        .content-section {
            text-align: center;
        }

        .content-section h4 {
            font-family: Verdana, sans-serif;
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 15px;
            color: #000;
        }

        .content-section img {
            max-width: 100%;
            height: auto;
            margin-bottom: 15px;
        }

        .content-links {
            text-align: left;
            padding: 0 20px;
        }

        .content-links a {
            display: block;
            font-family: Tahoma, sans-serif;
            font-size: 14px;
            color: #996600;
            text-decoration: none;
            margin-bottom: 8px;
            line-height: 1.5;
        }

        .content-links a:hover {
            font-weight: bold;
            text-decoration: underline;
        }

        .content-links a::before {
            content: "\2022";
            margin-right: 5px
        }

 

        /* Responsive Design */
        @media (max-width: 1024px) and (orientation: landscape) {
    .main-content {
        grid-template-columns: 1fr;
    }

    .sidebar {
        order: 1;
    }

    .content {
        order: 2;
    }

    .sidebar iframe {
        height: 250px;
    }
}
        @media (max-width: 768px) {
            .header {
                flex-direction: column;
                text-align: center;
            }

            .logo-search {
                flex-direction: column;
                width: 100%;
            }

            .search-form {
                width: 100%;
                justify-content: center;
            }

            .social-links {
                justify-content: center;
                flex-wrap: wrap;
            }

            .nav-menu {
                flex-direction: column;
            }

            .nav-menu a {
                width: 100%;
                border-bottom: 1px solid rgba(255,255,255,0.2);
            }

            .main-content {
                grid-template-columns: 1fr;
            }

            .sidebar {
                order: 1;
            }

            .content {
                order: 2;
            }

            .content-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .banner {
                height: 150px;
            }

            .sidebar iframe {
                height: 250px;
            }
        }

        @media (max-width: 480px) {
            body {
                font-size: 12px;
            }

            .content-title {
                font-size: 16px;
            }

            .content-section h4 {
                font-size: 14px;
            }

            .content-links {
                padding: 0 10px;
            }

            .footer {
                padding: 20px 10px;
            }

            .footer a,
            .footer p {
                font-size: 11px;
            }
        }