
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
            padding: 0;
            margin: 0;
            padding-top: 120px; /* Adjust this value based on your header height */
            padding-bottom: 0px; /* Adjust this value based on your footer height */
        }

        .page-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            position: relative;
            z-index: 1;
        }

        /* Main Container */
        .main-container {
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            margin: 20px 0;
            overflow: hidden;
            display: flex;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
			
        }

        /* Left Column */
        .left-column {
            width: 75%;
            padding: 40px;
            border-right: 2px solid #e0e0e0;
            border-radius: 12px 0 0 12px;
        }

        /* Featured Image with Frame */
        .featured-image-container {
            position: relative;
            margin-bottom: 30px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(236, 29, 36, 0.2);
            border: 5px solid #fff;
            outline: 2px solid #ec1d24;
            max-width: 100%;
            height: auto;
            z-index: 1;
        }

        .featured-image-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(236, 29, 36, 0.1) 0%, transparent 50%);
            pointer-events: none;
            z-index: 1;
        }

        .featured-image {
            width: 100%;
            max-width: 100%;
            height: auto;
            display: block;
            transition: transform 0.3s ease;
        }

        .featured-image-container:hover .featured-image {
            transform: scale(1.03);
        }

        /* Breadcrumb */
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 25px;
            font-size: 14px;
            color: #666;
            flex-wrap: wrap;
        }

        .breadcrumb a {
            color: #ec1d24;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb a:hover {
            color: #b91419;
            text-decoration: underline;
        }

        .breadcrumb-separator {
            color: #999;
        }

        .breadcrumb .current {
            color: #333;
            font-weight: 500;
        }

        /* Content Section */
        .page-title {
            font-size: 19px;
            color: #605959;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 3px solid #ec1d24;
            position: relative;
        }

        .page-title::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 80px;
            height: 3px;
            background: #b91419;
        }

        .content-area {
            line-height: 1.8;
            color: #444;
            font-size: 16px;
        }

        .content-area p {
            margin-bottom: 15px;
        }

        /* Right Column */
        .right-column {
            width: 25%;
            padding: 40px 7px;
            background: #f9f9f9;
            border-radius: 0 12px 12px 0;
        }

        .sidebar-space {
            min-height: 150px;
           
            margin-bottom: 30px;
           
            display: flex;
            align-items: center;
            justify-content: center;
           
            padding: 5px;
            
        }

        .sidebar-links {
            text-align: center;
			margin-top: 20px;
        }

        .sidebar-title {
            font-size: 20px;
            color: #222;
            margin-bottom: 20px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .page-link {
            display: block;
            padding: 15px 20px;
            margin-bottom: 12px;
            background: white;
            color: #333;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            font-size: 14px;
            border-left: 4px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .page-link::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 0;
            background: rgba(236, 29, 36, 0.1);
            transition: width 0.3s ease;
            z-index: 0;
        }

        .page-link span {
            position: relative;
            z-index: 1;
        }

        .page-link:hover {
            transform: translateX(5px);
            border-left-color: #ec1d24;
            box-shadow: 0 4px 15px rgba(236, 29, 36, 0.3);
            color: #ec1d24;
        }

        .page-link:hover::before {
            width: 100%;
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .left-column {
                width: 65%;
                padding: 30px;
            }

            .right-column {
                width: 35%;
                padding: 30px 20px;
            }
        }

        @media (max-width: 768px) {
            body {
                padding-top: 50px; /* Adjust for mobile header height */
                padding-bottom: 00px; /* Adjust for mobile footer height */
            }

            .main-container {
                flex-direction: column;
                margin: 20px 0;
                overflow: hidden;
				padding-top: 60px;
            }

            .left-column,
            .right-column {
                width: 100%;
                border-right: none;
                border-radius: 0;
            }

            .left-column {
                border-bottom: 2px solid #e0e0e0;
                padding: 25px;
                border-radius: 12px 12px 0 0;
            }

            .right-column {
                padding: 25px;
                background: white;
                border-radius: 0 0 12px 12px;
            }

            .page-title {
                font-size: 26px;
            }

            .featured-image-container {
                max-width: 100%;
                position: relative;
                z-index: 1;
            }
        }

        @media (max-width: 480px) {
            body {
                padding-top: 80px; /* Adjust for smaller mobile header */
                padding-bottom: 00px;
            }

            .page-wrapper {
                padding: 0 10px;
            }

            .main-container {
                margin: 15px 0;
                position: relative;
                z-index: 1;
            }

            .left-column {
                padding: 20px;
                position: relative;
                z-index: 1;
            }

            .page-title {
                font-size: 22px;
            }

            .content-area {
                font-size: 15px;
            }

            .page-link {
                padding: 12px 15px;
                font-size: 13px;
            }

            .sidebar-title {
                font-size: 18px;
            }

            .featured-image-container {
                position: relative;
                z-index: 1;
                margin-bottom: 20px;
            }
        }
.accordions dt{
    font: bold 16px Cambria, Georgia, serif;
    padding: 10px;
	margin:40px 0 0 0;
    border: 1px solid #dadada;
    -webkit-box-shadow: 0 8px 6px -6px #dadada;
    -moz-box-shadow: 0 8px 6px -6px #dadada;
    box-shadow: 0 8px 8px -6px #dadada;
    background: #F5F5F5;  
text-align:center;	
}

.accordions dt a{ color:#026466; font-size:22px;}
.accordions dd {
    padding: 15px;  
	border: solid 1px #d7d7d7;   
    -webkit-box-shadow: 0px 0px 5px 0px rgba(161, 161, 161, 0.5);
    box-shadow: 0px 0px 5px 0px rgba(161, 161, 161, 0.5); 
    
}
.coursebuy {
	font: bold 16px Cambria, Georgia, serif;
    padding: 10px;
	margin:40px 0 0 0;
    border: 1px solid #dadada;
    -webkit-box-shadow: 0 8px 6px -6px #dadada;
    -moz-box-shadow: 0 8px 6px -6px #dadada;
    box-shadow: 0 8px 8px -6px #dadada;
    background: #F5F5F5;  
text-align:center;	
	
}
.btnbg, a.btnbg{
  background: #ec1d24;
  color: #FFF;
  font-weight: bold;
  letter-spacing: 0.5px;
  border-radius: 5px;
  font-size: 0.8em;
  padding: 0.5em 2em;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
  display: inline-block;
  text-transform: uppercase;
	text-decoration:none;
    margin: 0px 16px 0px 0px;   
    border: none;
    outline: none;
}

.green, a.green { //background:#50bc55; background:#090;}

.btnbg:hover, a.btnbg:hover{
  background: #000;
  }
.new { font-size: 15px; color: #AC4345; font-weight: 500;
	
}
 .content {
            color: #333;
            line-height: 1.8;
            font-size: 1.1em;
            margin-bottom: 20px;
            max-height: 4000px;
            overflow: hidden;
            position: relative;
            transition: max-height 1.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease;
            opacity: 1;
        }

        .content.collapsed {
            max-height: 250px;
            opacity: 0.95;
        }

        .content::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 80px;
            background: linear-gradient(to bottom, transparent, white);
            opacity: 0;
            transition: opacity 0.8s ease;
            pointer-events: none;
        }

        .contentv.collapsed::after {
            opacity: 1;
        }

        .toggle-btn {
            background-color: #ec1d24;
            color: white;
            border: none;
            padding: 12px 30px;
            font-size: 1em;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(236, 29, 36, 0.3);
        }

        .toggle-btn:hover {
            background-color: #c91920;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(236, 29, 36, 0.4);
        }

        .toggle-btn:active {
            transform: translateY(0);
        }

        p { font-size: 14px; color: #605656;
            margin-bottom: 15px;
        }

