 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #2c5f7f;
            --secondary-color: #4a9fd8;
            --accent-color: #f39c12;
            --text-dark: #2c3e50;
            --text-light: #6c757d;
            --bg-light: #f8f9fa;
            --bg-white: #ffffff;
            --border-color: #e0e6ed;
            --success-color: #27ae60;
            --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
            --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
            --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: var(--bg-light);
        }

    
        /* Breadcrumb */
        .breadcrumb {
            max-width: 1200px;
            margin: 1.5rem auto;
            padding: 0 2rem;
            font-size: 0.875rem;
            color: var(--text-light);
        }

        .breadcrumb a {
            color: var(--secondary-color);
            text-decoration: none;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, rgba(44, 95, 127, 0.95), rgba(74, 159, 216, 0.95)),
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%234a9fd8" width="1200" height="400"/></svg>');
            color: white;
            padding: 4rem 2rem;
            text-align: center;
        }

        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .hero p {
            font-size: 1.125rem;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.95;
        }

        /* Container */
       

        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        /* Main Content */
        .main-content {
            background: var(--bg-white);
            padding: 3rem;
            border-radius: 12px;
            box-shadow: var(--shadow-md);
        }



        /* Intro Box */
        .intro-box {
            background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
            padding: 2rem;
            border-radius: 12px;
            border-left: 5px solid var(--secondary-color);
            margin-bottom: 3rem;
            font-size: 1.05rem;
            line-height: 1.8;
        }

        /* Section Styles */
        .section {
            margin-bottom: 1rem;
            scroll-margin-top: 100px;
        }

        .section h2 {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            padding-bottom: 0.75rem;
            border-bottom: 3px solid var(--secondary-color);
        }

        .section h3 {
            font-size: 1.5rem;
            color: var(--text-dark);
            margin-top: 2rem;
            margin-bottom: 1rem;
        }

        .section p {
            margin-bottom: 1.25rem;
            color: var(--text-dark);
            font-size: 1.05rem;
        }

        .section ul, .section ol {
            margin-left: 0.5rem;
            margin-bottom: 0.5rem;
        }

        .section li {
            margin-bottom: 1px;
            color: var(--text-dark);
        }

        /* Info Cards */
        .info-card {
            background: var(--bg-light);
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 1.5rem;
            border-left: 4px solid var(--accent-color);
        }

        .info-card h4 {
            font-size: 1.125rem;
            color: var(--primary-color);
            margin-bottom: 0.75rem;
        }

        /* Highlight Box */
        .highlight-box {
            background: #fff3cd;
            border: 2px solid #ffc107;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
        }

        .highlight-box h4 {
            color: #856404;
            margin-bottom: 0.75rem;
        }

        /* Cycle Diagram */
        .cycle-diagram {
            display: flex;
            justify-content: space-around;
            align-items: center;
            padding: 2rem;
            background: var(--bg-light);
            border-radius: 12px;
            margin: 2rem 0;
            flex-wrap: wrap;
        }

        .cycle-step {
            text-align: center;
            padding: 1rem;
            flex: 1;
            min-width: 150px;
        }

        .cycle-step-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-1);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .cycle-arrow {
            font-size: 2rem;
            color: var(--secondary-color);
        }

        /* Disclaimer */
        .disclaimer {
            background: #f8d7da;
            border: 2px solid #f5c6cb;
            color: #721c24;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
        }

        .disclaimer h4 {
            margin-bottom: 0.75rem;
            font-weight: 700;
        }

        /* Footer */
        .footer {
            background: var(--text-dark);
            color: white;
            padding: 3rem 2rem;
            margin-top: 4rem;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }

        .footer h4 {
            margin-bottom: 1rem;
            color: var(--accent-color);
        }

        .footer ul {
            list-style: none;
        }

        .footer a {
            color: #adb5bd;
            text-decoration: none;
            transition: color 0.3s;
            display: block;
            padding: 0.25rem 0;
        }

        .footer a:hover {
            color: white;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #adb5bd;
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .hero h1 {
                font-size: 2rem;
            }

            .main-content {
                padding: 2rem;
            }

            .nav {
                flex-direction: column;
                gap: 1rem;
            }
        }

        @media (max-width: 640px) {
            .hero h1 {
                font-size: 1.75rem;
            }

            .section h2 {
                font-size: 1.5rem;
            }

            .main-content {
                padding: 1.5rem;
            }

           /* .container {
                padding: 0.1rem 0.1rem;
            }*/
        }

        #videoscroller2 {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
}
 
/* 2. Prevent the parent containers from letting it escape */
.intro-box,
.main-content {
    overflow: hidden;   /* clips anything that still tries to bleed out */
}
 
/* 3. Make the video thumbs inside sit neatly in a row with proper sizing */
#videoscroller2 .yt-thumb,
#videoscroller2 .video-thumb {
    box-sizing: border-box;
    max-width: 100%;
}
 