.section01{
	padding-bottom: 0 !important;
}
.section02{
	padding-top: 0 !important;
}
section .h2_ttl{
	font-size: 35px;
    text-align: center;
}
/* Section 1: Training Context */
.section-training {
    display: flex;
    gap: 30px; /* Space between image and text */
    margin-bottom: 50px;
}

.section-training .image-container {
    flex: 1; /* Adjust ratio if needed */
}

.section-training .text-container {
    flex: 1;
}

/* Quote Box Styling */
.quote-box {
    border-radius: 0 45px 0 45px;
    padding: 35px 40px; /* More padding */
    background-color: #f8f9fa; /* Very light grey background */
    position: relative; /* Needed for pseudo-elements */
}

.quote-box blockquote {
    margin: 0; /* Reset default blockquote margins */
    position: relative; /* For quote mark positioning */
	    padding: 45px 0;
}

/* Quote marks using pseudo-elements */
.quote-box blockquote::before,
.quote-box blockquote::after {
    position: absolute;
    font-size: 5em; /* Large quote marks */
    color: #e9ecef; /* Very light grey quotes */
    line-height: 1;
	 padding: 30px;
}

.quote-box blockquote::before {
    content: '';
    top: -20px;
    left: 0;
    background: url(/assets/images/dao-tao/b05_icon.svg) no-repeat left center;
   
}

.quote-box blockquote::after {
    content: ''; /* Right double quote */
    bottom: -35px; /* Adjust position */
    right: -20px; /* Adjust position */
	background: url(/assets/images/dao-tao/b05_icon-1.svg) no-repeat left center;
}

.quote-box h2 {
 color: var(--mcolor);
    font-size: 32px;
    margin-bottom: 10px;
    line-height: 1.3;
    font-weight: 800;
    font-family: var(--f-mont);
}

.quote-box h2 .highlight {
    color: #f0ad4e; /* Orange/Yellow */
    display: block; /* Make it appear on the next line if needed or adjust */
}

.quote-box .subtitle {
    font-weight: bold;
    font-size:22px;
    margin-bottom: 15px;
}

.quote-box p {
    font-style: italic;
    font-weight: 200;
    font-size: 21px;margin-bottom: 0;
}


/* Section 2: Resources */
.section-resources {
   
    margin-bottom: 40px;
}

.section-resources .section-title {
    text-align: center;
    color: #fff; /* White title */
    font-size: 2rem; /* Adjust size */
    margin-bottom: 30px;
    font-weight: bold;
}

.section-resources .content-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start; /* Align items top */
    background-color: var(--mcolor);
    color: #fff; /* White text */
    padding: 40px 30px;
    border-radius: 10px;
}

.section-resources .image-container {
    flex: 1;
    max-width: 45%; /* Control image width relative to text */
}

.section-resources .image-container img {
    border-radius: 5px; /* Optional slight rounding */
}

.section-resources .text-container {
    flex: 1;
}

/* Tabs Styling */
.tabs {
    display: flex;
    margin-bottom: 25px;
    gap: 10px; /* Space between tabs */
    /* Allow tabs to wrap on smaller screens */
}

.tab-button {
    padding: 10px 25px; /* Make tabs wider */
    border: none;
    border-radius: 20px; /* Rounded ends */
    background-color: #6c757d; /* Default inactive tab color (grey) */
    color: #fff;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.tab-button.active {
    background-color: var(--scolor); /* Active tab yellow */
    color: var(--mcolor); /* Darker text on active tab */
}

.tab-button:hover:not(.active) { /* Hover effect for inactive tabs */
    background-color: #8a9197; /* Slightly lighter grey on hover */
}

/* Tab Content Styling */
.tab-content {
    display: none; /* Hide inactive tabs */
}

.tab-content.active {
    display: block; /* Show active tab content */
}

.tab-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #fff; /* Yellow heading */
    font-weight: bold;
}

.tab-content p {
   margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.7;
   
}

.read-more-button {
 display: inline-block;
    padding: 4px 20px;
    background-color: var(--yellow);
    color: #000;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    font-size: 13px;
}

.read-more-button:hover {
    background-color: #ec971f; /* Darker yellow on hover */
}

/* --- Responsive Design --- */

/* Medium Screens (Tablets) */
@media (max-width: 992px) {
    .section-training .text-container {
        flex-basis: 55%; /* Give text slightly more space */
    }
    .section-resources .text-container {
        flex-basis: 55%;
    }
    .quote-box blockquote::before {
        left: -20px;
    }
     .quote-box blockquote::after {
        right: -10px;
    }
}

@media (max-width: 768px) {
	section .h2_ttl{line-height: 1.4;}
	.section-training .image-container{
		
	}
	.section-training .image-container {
    flex-basis: 55%;
}
	.quote-box{
		padding: 5px 10px;
	}
	.quote-box blockquote{
		padding: 25px 0 15px 0;
	}
	
	.quote-box blockquote::before, .quote-box blockquote::after{
		padding: 15px;
		
	}
	.quote-box blockquote::before {
        left: 0;background-size: 30px;top: -5px;
    }
	.quote-box blockquote::after{background-size: 30px;bottom: 0;}
	.quote-box h2{
		font-size: 18px;margin-bottom: 5px;
	}
	.quote-box .subtitle, .quote-box p{
		
		font-size: 16px;margin-bottom: 5px;
	}
	 .section-resources .content-wrapper {
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center items when stacked */
    }
	.section-resources .image-container {
        width: 100%; /* Allow image container to take full width */
        max-width: 400px; /* But limit max image size */
        margin-bottom: 25px;
    }
	.section-resources .image-container {
         max-width: 100%; /* Allow full width in this section */
     }
	  .section-resources {
        padding: 30px 20px;
    }
    .section-resources .text-container {
         width: 100%; /* Take full width */        text-align: center;
    }


    .tabs {
		flex-wrap: wrap; 
        justify-content: center; /* Center tabs when stacked */
    }
    .tab-button {
         padding: 8px 20px;
         font-size: 0.85rem;
    }
     .tab-content h3 {
         font-size: 1.3rem;
     }
      .tab-content p {
        font-size: 0.95rem;
    }
}
/* Small Screens (Tablets/Large Phones) */
@media (max-width: 480px) {
    .main-header h1,
    .section-resources .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .section-training {
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center items when stacked */
    }
    .section-training .image-container{
        width: 100%; /* Allow image container to take full width */
        max-width: 400px; /* But limit max image size */
        margin-bottom: 0;
    }
     


    .section-training .text-container {
        width: 100%; /* Take full width */
    }

    .quote-box {
        padding: 25px;
    }
     .quote-box h2 {
        font-size: 1.4rem;
    }
    .quote-box blockquote::before {
        font-size: 4em;
        top: -15px;
        left: -10px;
    }
     .quote-box blockquote::after {
        font-size: 4em;
        bottom: -25px;
        right: 5px;
    }

   
}

/* Extra Small Screens (Phones) */
@media (max-width: 480px) {
	section .h2_ttl{font-size: 29px;}
     .main-header h1,
    .section-resources .section-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    main {
        margin-top: 20px;
        margin-bottom: 20px;
    }
     .section-training {
         margin-bottom: 30px;
     }
     .quote-box {
         padding: 20px 15px;
     }
      .quote-box h2 {
        font-size: 1.3rem;
    }
    .quote-box .subtitle {
        font-size: 1rem;
    }
     .quote-box p {
        font-size: 0.9rem;
    }
     .quote-box blockquote::before,
     .quote-box blockquote::after {
        font-size: 3em;
     }
      .quote-box blockquote::before {
        top: -10px;
        left: -5px;
     }
      .quote-box blockquote::after {
        bottom: -20px;
        right: 0;
     }

     .section-resources {
        padding: 25px 15px;
     }
     .tab-button {
        padding: 7px 10px;
        font-size: 0.6rem;
    
     }
      .tab-content h3 {
         font-size: 1.2rem;
     }
       .tab-content p {
        font-size: 0.9rem;
    }
}