       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Helvetica Neue', sans-serif, Arial, sans-serif;
            background-color: #ffffff; /* The target has a pure white background */
            color: #333;
        }

        .container {
            width: 90%;
            max-width: 1140px; /* Standard max-width for modern sites */
            margin-left: auto;
            margin-right: auto;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 700; /* Bolder headings */
            color: #1a1a1a;
        }

        p {
            line-height: 1.7;
            color: #6c757d; /* Softer text color like the target */
            font-size: 14px;
        }

        ul {
            list-style: none;
        }

        a {
            text-decoration: none;
            color: #1a1a1a;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #007bff; /* A standard blue for hover effects */
        }

        /* --- 2. Hero Section --- */
        .hero-section {
            position: relative;
            height: 80vh; /* Slightly taller for more impact */
            overflow: hidden;
            display: flex;
            flex-direction: column;
            color: #ffffff;
        }
        .fade-slider { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
        .hhh { position: absolute; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; animation: crossfade-seamless 18s infinite; }
        .hhh::after { content:''; position: absolute; width:100%; height:100%; background-color: rgba(0,0,0,0.4 ); top:0; left:0;}
        @keyframes crossfade-seamless { 0%{opacity:0;} 8%{opacity:1;} 50%{opacity:1;} 58%{opacity:0;} 100%{opacity:0;} }
        .hero-section .container { position: relative; z-index: 2; flex-grow: 1; display: flex; flex-direction: column; }
        .nav-bar { display: flex; justify-content: space-between; align-items: center; padding: 30px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
        .logo { font-size: 2.5rem; text-transform: uppercase; letter-spacing: 1px; }
        .nav-content > ul { display: flex; gap: 35px; }
        .nav-content a, .dropdown button { color: #ffffff; text-decoration: none; text-transform: uppercase; font-weight: bold; font-size: 0.9rem; }
        .dropdown button { background: none; border: none; cursor: pointer; padding: 0; font-family: inherit; }
        .dropdown { position: relative; }
        .dropdown-content { display: none; position: absolute; top: 100%; left: 0; background-color: #fff; min-width: 160px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1); padding: 10px; z-index: 10; border-radius: 4px; }
        .dropdown:hover .dropdown-content { display: block; }
        .dropdown-content a { color: black; padding: 8px 12px; display: block; }
        .hero-text { flex-grow: 1; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; text-shadow: 1px 1px 4px rgba(0,0,0,0.5); }
        .hero-text h1 { font-size: 4rem; max-width: 800px; margin-bottom: 15px; }

        /* --- 3. Main Content Sections --- */
        .page-section {
            padding: 50px 0;
        }
        .section-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 30px;
            border-bottom: 1px solid #e9ecef;
            padding-bottom: 15px;
        }

        /* --- "Don't Miss" Section --- */
        .section-titles {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 15px;
            border-bottom: 1px solid #e9ecef;
            margin-bottom: 30px;
        }
        .dont-miss-header {
            display: flex;
            align-items: center;
            gap: 30px;
        }
        .dont-miss-header h3, .about-world-title h2 {
            font-size: 1.5rem;
            margin: 0;
        }
        .dont-miss-header ul {
            display: flex;
            gap: 25px;
            font-weight: 500;
        }
        .dont-miss-header ul a {
            color: #6c757d;
            padding-bottom: 18px;
            border-bottom: 2px solid transparent;
        }
        .dont-miss-header ul a:hover, .dont-miss-header ul a.active {
            color: #007bff;
            border-bottom-color: #007bff;
        }
        .about-world-title h2 {
            font-size: 1.5rem;
            margin: 0;
        }
        .dont-miss-full {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }
        .main-content-wrapper {
            display: flex;
            flex: 2 1 65%;
            gap: 30px;
        }
        .coulmn1, .coulmn2 {
            flex: 1 1 48%;
        }
        .aboutworld {
            flex: 1 1 30%;
            min-width: 280px;
        }
        .coulmn2 {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        /* --- General Card Styles --- */
        .card {
            border: 1px solid #e9ecef;
            background: #fff;
            margin-bottom: 20px;
            box-shadow: 0 1px 5px rgba(0,0,0,0.04);
        }
        .card-content { padding: 20px; }
        .card-content h4 { font-size: 1.1rem; margin-bottom: 10px; line-height: 1.5; }
        .card-content p { margin-bottom: 0; }
        .card-conten { padding: 0; }
        .can {
            display: flex;
            align-items: center;
            gap: 15px;
            padding-bottom: 15px;
            margin-bottom: 15px;
            border-bottom: 1px solid #f0f0f0;
        }
        .can:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
        .can .card-img { width: 100px; flex-shrink: 0; }
        .can h4 { font-size: 14px; line-height: 1.5; font-weight: normal; }

        /* --- "What's Trending" Section --- */
        .columns-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        .column {
            flex: 1 1 300px;
        }
        .column .card {
            margin-bottom: 0;
        }
        .column .card-content h4 {
            font-size: 12px;
            text-transform: uppercase;
            color: #007bff;
            letter-spacing: 1px;
        }
        .column .card-content p {
            font-size: 1.1rem;
            font-weight: bold;
            color: #1a1a1a;
        }

        /* --- Stay Connected & Today's Picks --- */
        .sidebar-widget {
            background: #fff;
            border: 1px solid #e9ecef;
            padding: 30px;
            margin-bottom: 40px;
        }
        .sidebar-widget .section-title {
            font-size: 1.2rem;
            margin-bottom: 20px;
        }
        .social-links-widget {
            display: flex;
            gap: 10px;
        }
        .social-links-widget a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border: 1px solid #e9ecef;
            border-radius: 50%;
            color: #6c757d;
            font-size: 1rem;
        }
        .social-links-widget a:hover {
            background-color: #007bff;
            color: #fff;
            border-color: #007bff;
        }
        .three-cards-cont {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        .dddd {
            flex: 1 1 300px;
            background: #fff;
        }
        .dddd h5 {
            padding: 15px;
            margin: 0;
            font-size: 1rem;
            font-weight: normal;
        }

        /* --- Latest Articles & Popular Videos Section --- */
        .main-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }
        .latest-articles-section {
            flex: 2;
            min-width: 300px;
        }
        .popular-videos-section {
            flex: 1;
            min-width: 300px;
        }
        .article-card {
            display: flex;
            gap: 20px;
            background: #fff;
            border: 1px solid #e9ecef;
            margin-bottom: 20px;
            align-items: flex-start;
        }
        .article-card img {
            width: 220px;
            height: 100%;
            object-fit: cover;
            flex-shrink: 0;
        }
        .article-card .card-content {
            padding: 20px;
        }
        .article-card h3 {
            font-size: 1.1rem;
            line-height: 1.5;
            margin-bottom: 10px;
        }
        .article-card p {
            margin-bottom: 15px;
        }
        .author-date {
            font-size: 12px;
            color: #999;
            margin: 0;
        }
        .video-card {
            background: #fff;
            border: 1px solid #e9ecef;
            margin-bottom: 20px;
        }
        .video-thumbnail {
            position: relative;
        }
        .video-thumbnail .tag {
            position: absolute;
            top: 15px;
            left: 15px;
            background-color: #007bff;
            color: white;
            padding: 5px 10px;
            font-size: 10px;
            font-weight: bold;
            text-transform: uppercase;
            z-index: 2;
        }
        .play-button-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(0, 0, 0, 0.3);
            transition: background-color 0.3s ease;
        }
        .play-button-overlay:hover {
            background-color: rgba(0, 0, 0, 0.5);
        }
        .play-button {
            width: 60px;
            height: 60px;
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            position: relative;
            cursor: pointer;
            transition: transform 0.2s ease;
        }
        .play-button:hover {
            transform: scale(1.1);
        }
        .play-button::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 55%;
            transform: translate(-50%, -50%);
            border-left: 18px solid #333;
            border-top: 12px solid transparent;
            border-bottom: 12px solid transparent;
        }
        .video-card .card-content {
            padding: 20px;
        }
        .video-card h3 {
            font-size: 1rem;
            line-height: 1.5;
        }

        /* --- 4. Footer --- */
        .footer { background: #1a1a1a; color: #ccc; padding: 60px 0; }
        .footer-content { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 40px; }
        .footer-section { flex: 1; min-width: 220px; }
        .footer-logo h3 { font-size: 1.8rem; margin-bottom: 15px; color: #fff; }
        .footer-logo p { line-height: 1.6; margin-bottom: 20px; }
        .footer .social-links { display: flex; gap: 15px; }
        .footer .social-links a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: #333; color: white; border-radius: 50%; transition: all 0.3s ease; }
        .footer .social-links a:hover { background: #007bff; }
        .footer-section h4 { font-size: 1.3rem; margin-bottom: 20px; color: white; }
        .footer-links li { margin-bottom: 10px; }
        .footer-links a { color: #ccc; text-decoration: none; transition: color 0.3s ease; }
        .footer-links a:hover { color: #fff; }
        .footer-contact p { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .footer-contact i { color: #007bff; width: 20px; }
        .footer-bottom { border-top: 1px solid #333; padding-top: 20px; margin-top: 20px; }
        .footer-bottom-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
        .footer-bottom p { margin: 0; }
        .footer-bottom-links { display: flex; gap: 30px; }
        .footer-bottom-links a { color: #ccc; font-size: 0.9rem; text-decoration: none; }
        .footer-bottom-links a:hover { color: #fff; }

        /* --- 5. Responsive Media Queries --- */
        @media (max-width: 992px) {
            .main-content-wrapper, .aboutworld {
                flex-basis: 100%;
            }
            .latest-articles-section, .popular-videos-section {
                flex-basis: 100%;
            }
            .dont-miss-header ul {
                display: none; 
            }
        }
        @media (max-width: 768px) {
            .main-content-wrapper {
                flex-direction: column;
            }
            .section-titles {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            .nav-content > ul {
                display: none; 
            }
        }