 :root {
     --primary-color: #172951;
     --white-color: #ffffff;
     --accent-color: #D4A574;
     --text-dark: #333333;
     --text-light: #666666;
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Inter', sans-serif;
     color: var(--text-dark);
     line-height: 1.6;
 }

 .main-container {
     margin: auto;
     padding: 0 15px;
 }

 .hero-section {
     background: linear-gradient(102.73deg, #f3b17194 0.76%, #000d37 99.64%);
     color: var(--white-color);
     padding: 210px 0 80px;
     position: relative;
     overflow: hidden;
 }

 .hero-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: url('../images/banner4.jpg') no-repeat center center;
     background-size: cover;
     background-position: center;
     opacity: 0.1;
 }

 .hero-content {
     position: relative;
     z-index: 1;
 }

 .hero-section h1 {
     font-size: 3rem;
     font-weight: 700;
     margin-bottom: 20px;
     line-height: 1.2;
 }

 .breadcrumb {
     background: transparent;
     padding: 0;
     margin-bottom: 0;
     gap: 10px;
 }

 .breadcrumb-items a {
     color: rgba(255, 255, 255, 0.8);
     text-decoration: none;
 }

 .breadcrumb-items.active {
     color: var(--white-color);
 }

 /* .breadcrumb-items+.breadcrumb-items::before {
     color: rgba(255, 255, 255, 0.6);
 } */

 .blog-container {
     margin: -40px auto 80px;
     padding: 0 15px;
     position: relative;
     z-index: 2;
 }

 .blog-card {
     background: var(--white-color);
     border-radius: 20px;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
     padding: 60px;
     margin-bottom: 40px;
 }

 .blog-meta {
     color: var(--text-light);
     font-size: 0.9rem;
     margin-bottom: 30px;
     padding-bottom: 20px;
     border-bottom: 2px solid #f0f0f0;
 }

 .blog-content h2 {
     color: var(--primary-color);
     font-size: 2rem;
     font-weight: 600;
     margin-top: 40px;
     margin-bottom: 20px;
 }

 .blog-content h3 {
     color: var(--primary-color);
     font-size: 1.5rem;
     font-weight: 600;
     margin-top: 30px;
     margin-bottom: 15px;
 }

 .blog-content h4 {
     color: var(--primary-color);
     font-size: 1.2rem;
     font-weight: 600;
     margin-top: 20px;
     margin-bottom: 10px;
 }

 .blog-content p {
     margin-bottom: 20px;
     color: var(--text-dark);
     font-size: 1.05rem;
 }

 .blog-content ul {
     margin-bottom: 25px;
     padding-left: 25px;
     list-style-type: disc;
 }

 .blog-content li {
     margin-bottom: 12px;
     color: var(--text-dark);
     font-size: 1.05rem;
 }

 .intro-text {
     font-size: 1.15rem;
     color: var(--text-light);
     margin-bottom: 30px;
     line-height: 1.8;
 }

 .highlight-box {
     background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
     padding: 30px;
     border-radius: 10px;
     margin: 30px 0;
 }

 .highlight-box h4 {
     color: var(--primary-color);
     font-weight: 600;
     margin-bottom: 15px;
 }

 .benefit-section {
     margin: 40px 0;
 }

 .benefit-card {
     background: var(--white-color);
     padding: 25px;
     border-radius: 12px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
     margin-bottom: 30px;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     height: 100%;
 }

 .benefit-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
 }

 .benefit-number {
     width: 50px;
     height: 50px;
     background: var(--primary-color);
     color: var(--white-color);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.5rem;
     font-weight: 700;
     margin-bottom: 20px;
 }

 .icon-box {
     width: 70px;
     height: 70px;
     background: #e8f0ff;
     border-radius: 50%;
     display: flex;
     justify-content: center;
     align-items: center;
     margin: 0 auto 20px;
     box-shadow: 0 5px 20px rgba(23, 41, 81, 0.15);
 }

 .icon-box i {
     font-size: 32px;
     color: var(--primary-color);
 }

 .faq-section {
     background: var(--white-color);
     border-radius: 20px;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
     padding: 50px;
     margin-bottom: 40px;
 }

 .faq-section h2 {
     color: var(--primary-color);
     font-size: 2rem;
     font-weight: 700;
     margin-bottom: 30px;
     text-align: center;
 }

 .faq-item {
     border-bottom: 1px solid #e5e5e5;
 }

 .faq-question {
     width: 100%;
     background: none;
     border: none;
     padding: 18px;
     font-size: 16px;
     font-weight: 600;
     text-align: left;
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     align-items: center;
     color: var(--text-dark);
 }

 .faq-question .icon {
     font-size: 20px;
     transition: transform 0.3s ease;
 }

 .faq-answer {
     max-height: 0;
     overflow: hidden;
     padding: 0 18px;
     font-size: 15px;
     color: #555;
     transition: max-height 0.3s ease, padding 0.3s ease;
 }

 .faq-item.active .faq-answer {
     max-height: 500px;
     padding: 0 18px 18px;
 }

 .faq-item.active .faq-question .icon {
     transform: rotate(45deg);
 }

 .cta-section {
     background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a5f 100%);
     color: var(--white-color);
     border-radius: 20px;
     padding: 60px;
     text-align: center;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
     margin-bottom: 40px;
 }

 .cta-section h2 {
     font-size: 2.5rem;
     font-weight: 700;
     margin-bottom: 20px;
     color: var(--white-color);
 }

 .cta-section p {
     font-size: 1.2rem;
     margin-bottom: 30px;
     color: #ffffff;
 }

 .btn-cta {
     background: var(--accent-color);
     color: var(--primary-color);
     padding: 15px 40px;
     font-size: 1.1rem;
     font-weight: 600;
     border: none;
     border-radius: 50px;
     transition: all 0.3s ease;
     text-decoration: none;
     display: inline-block;
 }

 .btn-cta:hover {
     background: #c49563;
     color: var(--primary-color);
     transform: translateY(-3px);
     box-shadow: 0 8px 20px rgba(212, 165, 116, 0.4);
 }

 .feature-image {
     width: 100%;
     height: auto;
     border-radius: 15px;
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
     margin: 20px 0;
 }

 @media (max-width: 768px) {
     .hero-section h1 {
         font-size: 2rem;
     }

     .blog-card,
     .faq-section,
     .cta-section {
         padding: 30px;
     }

     .blog-content h2 {
         font-size: 1.5rem;
     }

     .cta-section h2 {
         font-size: 1.8rem;
     }
 }