 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: "Inter", sans-serif;
/*font-family: "Libre Franklin", sans-serif;*/
     font-optical-sizing: auto;
 }

 body {
     background: #fafafa;

 }

 .wrapper {
     height: auto;
     width: 100%;
 }

 .content {
     max-width: 1200px;
     width: 100%;
     height: auto;
     margin: 0 auto;
 }

 @media (max-width:1250px) {


     .content {
         width: 95%;
         max-width: 95%;
     }
 }



 .wishlist-btn {
     position: absolute;
     bottom: 10px;
     right: 10px;
     width: 30px;
     height: 30px;
     background-color: white;
     border: 1.5px solid #ccc;
     padding: 6px;
     cursor: pointer;
     transition: all 0.2s ease-in-out;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
 }

 .wishlist-btn svg {
     stroke: #333;
     fill: none;
     transition: fill 0.3s ease, stroke 0.3s ease;
 }


 .wishlist-btn:hover {
     transform: scale(1.1);
 }


 .wishlist-btn.active svg {
     fill: #e91e63;
     stroke: #e91e63;
 }


 .hero-cover {
     background-image: linear-gradient(rgba(0, 0, 0, 0.60) 0px, rgba(0, 0, 0, 0)),
         url(https://www.lawofgarden.com/assets/images/cover/cover3.jpg);
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
 
     position: relative;
     width: 100% !important;
     max-width: 100%;
    
     
      height: 400px;
  display: flex;              /* make it a flex parent */
  align-items: center; 
     
 }


.hero-container {
    max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  
  display: flex;
  justify-content: center;    /* horizontal center */
  align-items: center; 
}
 /* LEFT COLUMN */
 .hero-left {
     flex: 1.2;
     min-width: 280px;
     max-width: 700px;
 }

 .hero-left h2 {
     font-size: 1.2rem;
     font-weight: 500;
     color: #fff;
     letter-spacing: -0.2px;
     margin-bottom: 12px;
     text-transform: ;
 }

 .hero-left h1 {
     font-size: 2.5rem;
     font-weight: 500;
     color: white;
     line-height: 1.2;
     margin-bottom: 30px;
     letter-spacing: -0.5px;
     
 }

 /* Search Box */
 .search-box-wrapper {
     background: rgba(255, 255, 255, 0.12);
     backdrop-filter: blur(4px);
     border-radius: 6px;
     padding: 8px;
     margin-top: 10px;
 }

 .home-search-form {
     display: flex;
     flex-wrap: wrap;
     gap: 12px;
     background: white;
     border-radius: 6px;
     padding: 6px;
     box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
 }

 .home-search-group {
     flex: 1;
     min-width: 200px;
     position: relative;
 }

 .home-search-group .search-input-wrapper {
     position: relative;
     width: 100%;
 }

 .home-search-group .custom-data-input {
     width: 100%;
     padding: 14px 40px 14px 18px;
     border: none;
     background: #f4f6fa;
     border-radius: 6px;
     font-size: 15px;
     outline: none;
     transition: all 0.2s;
     font-weight: 400;
     color: #222;
 }

 .home-search-group .custom-data-input:focus {
     background: white;
     box-shadow: 0 0 0 2px #0d58c7;
 }

 /* Hero section clear buttons */
 .clear-btn-home {
     position: absolute;
     right: 15px;
     top: 50%;
     transform: translateY(-50%);
     background: none;
     border: none;
     cursor: pointer;
     color: #aaa;
     display: none !important;
     /* Hidden by default */
     padding: 0;
     line-height: 1;
     z-index: 10;
     width: 24px;
     height: 24px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .clear-btn-home:hover {
     color: #0d58c7;
 }

 /* When input has value, show clear button */
 .search-input-wrapper input:not(:placeholder-shown) + .clear-btn-home,
 .search-input-wrapper input.has-value + .clear-btn-home {
     display: flex !important;
 }

 /* Ensure wrapper has proper positioning */
 .search-input-wrapper {
     position: relative;
     width: 100%;
 }

 /* Make sure input has room for the button */
 .custom-data-input {
     padding-right: 40px !important;
 }

 .search-btn-home {
     background-color: #0d58c7;
     color: white;
     border: none;
     padding: 0 28px;
     border-radius: 6px;
     font-weight: 700;
     font-size: 1rem;
     cursor: pointer;
     transition: 0.2s;
     white-space: nowrap;
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .search-btn-home:hover {
     background-color: #0d58c7;
     opacity: 0.9;
     transform: scale(1.02);
 }

 /* RIGHT COLUMN - 2 Step Form */
.hero-right {
    flex: 0.5;
    min-width: 320px;
    max-width: 350px;
    background: white;
    border-radius: 6px;
    box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.35);
    padding: 20px 20px;
    transition: transform 0.2s;
}

 .hero-right h3 {
     font-size: 1.4rem;
     font-weight: 700;
     color: #0a2b44;
     margin-bottom: 8px;
 }

 .hero-right p {
     color: #5a6874;
     font-size: 0.9rem;
     margin-bottom: 24px;
     border-left: 3px solid #0d58c7;
     padding-left: 12px;
 }

 /* Multi-step form styles */
 .form-step {
     display: none;
 }

 .form-step.active-step {
     display: block;
 }

 .step-buttons {
     display: flex;
     gap: 12px;
     margin-top: 20px;
 }

 .step-buttons button {
     flex: 1;
     padding: 12px;
     border-radius: 6px;
     font-weight: 600;
     cursor: pointer;
     transition: 0.2s;
     border: none;
     font-size: 0.95rem;
 }

 .btn-prev {
     background: #e2e8f0;
     color: #0d58c7;
 }

 .btn-prev:hover {
     background: #cbd5e1;
 }

 .btn-next,
 .btn-submit {
     background: #0d58c7;
     color: white;
 }

 .btn-next:hover,
 .btn-submit:hover {
     background: #0d58c7;
 }


 .form-success {
     background: #d4edda;
     color: #155724;
     padding: 12px;
     border-radius: 40px;
     text-align: center;
     margin-top: 15px;
     font-size: 14px;
 }

 .form-error {
     background: #f8d7da;
     color: #721c24;
     padding: 12px;
     border-radius: 40px;
     text-align: center;
     margin-top: 15px;
     font-size: 14px;
 }

 .step-indicator {
     display: flex;
     justify-content: center;
     gap: 12px;
     margin-bottom: 15px;
 }

 .step-dot {
     width: 6px;
     height: 6px;
     border-radius: 50%;
     background: #cbd5e1;
     transition: 0.2s;
 }

 .step-dot.active {
     background: #0d58c7;
     width: 20px;
     border-radius: 10px;
 }


 @media (max-width: 950px) {
     .hero-cover {
         padding: 0px 20px;
         height: 500px;
         
     }

     .hero-left h1 {
         font-size: 2.4rem;
     }

     .hero-left h2 {
         font-size: 1.4rem;
     }

     .home-search-form {
         flex-direction: column;
         background: transparent;
         padding: 0;
         gap: 12px;
     }

     .search-btn-home {
         justify-content: center;
         padding: 14px;
     }

     .hero-right {
         margin-top: 20px;
     }
 }

 @media (max-width: 680px) {
     .hero-right {
         max-width: 100%;
         flex: 1;
     }

 }

 @media (max-width: 640px) {
     .hero-left h1 {
         font-size: 2rem;

     }

     .hero-left h2 {
         font-size: 1.2rem;
     }

     .hero-left {
         padding-top: 50px;
     }
 }


 .consult-form .input-group {
     margin-bottom: 10px;
     position: relative;
     overflow: visible;
 }

 .field-label {
     display: block;
     margin-bottom: 5px;
     font-size: 13px;
     font-weight: 700;
     color: #222222;
     letter-spacing: 0.3px;
 }

 .required-star {
     color: #dc2626;
     margin-left: 3px;
 }

 .form-input,
 .form-textarea {
     width: 100%;
     padding: 10px 14px;
     font-size: 14px;
     border: 1px solid #ccc;
     border-radius: 6px;
     background: white;
     transition: all 0.2s ease;
     font-family: inherit;
     outline: none;
 }

 .form-textarea {
     resize: vertical;
     min-height: 175.5px !important;
 }

 .form-input:focus,
 .form-textarea:focus,
 .custom-data-input-consult:focus {
     border-color: #ccc;
     box-shadow: 0 0 0 2px rgba(30, 64, 175, 0.1);
 }

 /* ==================== CUSTOM PRACTICE AREA INPUT ==================== */
 .search-input-wrapper-consult {
     position: relative;
     width: 100%;
     overflow: visible;
     /* Important to prevent clipping */
 }

 .custom-data-input-consult {
     width: 100%;
     padding: 10px 40px 10px 14px !important;
     font-size: 14px;
     border: 1px solid #cbd5e1;
     border-radius: 6px;
     background: white;
     transition: all 0.2s ease;
     font-family: inherit;
     outline: none;
     box-sizing: border-box;
 }

 .clear-btn-consult {
     position: absolute;
     right: 12px;
     top: 50%;
     transform: translateY(-50%);
     background: none;
     border: none;
     cursor: pointer;
     display: none;
     padding: 0;
     z-index: 10;
     width: 24px;
     height: 24px;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
     transition: all 0.2s;
 }

 .clear-btn-consult:hover {
     background: rgba(0, 0, 0, 0.05);
 }

 .clear-btn-consult svg {
     width: 14px;
     height: 14px;
     fill: #94a3b8;
 }

 .custom-data-consult {
     position: absolute !important;
     background: white;
     border: 1px solid #cbd5e1;
     border-radius: 8px;
     max-height: 280px;
     overflow-y: auto;
     z-index: 1000;
     display: none;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
     box-sizing: border-box;
     margin-top: 0;
     /* Remove any margin that might cause gaps */
 }

 .custom-data-consult .option {
     padding: 10px 15px;
     cursor: pointer;
     transition: all 0.2s;
     font-size: 14px;
     color: #334155;
     border-bottom: 1px solid #f1f5f9;
 }

 .custom-data-consult .option:hover {
     background-color: #f8fafc;
     color: #1e40af;
     padding-left: 20px;
 }

 .custom-data-consult .option:last-child {
     border-bottom: none;
 }

 /* Error states */
 .input-group.has-error .form-input,
 .input-group.has-error .form-textarea,
 .input-group.has-error .custom-data-input-consult {
     border-color: #dc2626 !important;
     background-color: #fef2f2;
 }

 /* Success message */
 .form-success {
     background: #dcfce7;
     color: #166534;
     padding: 12px;
     border-radius: 6px;
     text-align: center;
     font-size: 14px;
     margin-bottom: 15px;
     animation: slideDown 0.4s ease;
 }

 .form-error {
     background: #fee2e2;
     color: #991b1b;
     padding: 12px;
     border-radius: 6px;
     text-align: center;
     margin-top: 15px;
     font-size: 14px;
     animation: slideDown 0.4s ease;
 }

 @keyframes slideDown {
     from {
         opacity: 0;
         transform: translateY(-10px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .form-step {
     /*   min-height: 380px;*/
 }


 @media (max-width: 768px) {

     .form-input,
     .form-textarea,
     .custom-data-input-consult {
         padding: 10px 12px;
         font-size: 13px;
         font-weight: 500;
     }

     .field-label {
         font-size: 12px;
         margin-bottom: 5px;
     }

     .form-step {
         /* min-height: 350px;*/
     }

     .custom-data-consult .option {
         padding: 8px 12px;
         font-size: 13px;
     }
 }

 .practice-groups-container {
     display: flex;
     flex-wrap: wrap;
     gap: 30px;
     margin-top: 20px;
     clear: both;
 }

 .practice-group-box {
     flex: 1;
     min-width: 280px;
     background: white;
     border-radius: 6px;
     padding: 20px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
     border: 1px solid #eef2f6;
     transition: transform 0.2s;
 }

 .practice-group-box:hover {
     transform: translateY(-3px);
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
 }

 .practice-group-title {
     font-size: 1.3rem;
     font-weight: 700;
     color: #0a2b44;
     margin-bottom: 8px;
     padding-bottom: 10px;
     display: inline-block;
 }

 .practice-group-count {
     font-size: 0.8rem;
     color: #0d58c7;
     margin-left: 8px;
     font-weight: normal;
 }

 .practice-sub-list {
     list-style: none;
     padding: 0;
     margin: 15px 0 0 0;
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
     gap: 8px;
 }

 .practice-sub-list li {
     margin: 0;
 }

 .practice-sub-list a {
     text-decoration: none;
     color: #222;
     font-size: 0.85rem;
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 6px 10px;
     border-radius: 8px;
     transition: all 0.2s;
     font-weight: 500;
 }

 .practice-sub-list a:hover {
     background: #f0f4fe;
     color: #0d58c7;
     font-weight: 500;
     font-weight: 500;
     transform: translateX(3px);
 }

 .sub-count {
     background: #eef2f6;
     padding: 2px 8px;
     border-radius: 6px;
     font-size: 10px;
     color: #0d58c7;
 }

 .view-all-practice {
     margin-top: 15px;
     text-align: center;
 }

 .view-all-practice a {
     font-size: 0.85rem;
     color: #0d58c7;
     text-decoration: none;
     font-weight: 600;
 }

 /* States and Cities styling */
 .states-grid,
 .cities-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
     gap: 12px;
 }

 .state-link,
 .city-link {
     display: block;
     padding: 10px 16px;
     background: white;
     border-radius: 6px;
     text-decoration: none;
     color: #1e293b;
     font-size: 14px;
     font-weight: 500;
     text-align: center;
     border: 1px solid #e2e8f0;
     transition: all 0.2s;
 }

 .state-link:hover,
 .city-link:hover {
     background: #0d58c7;
     color: white;
     border-color: #0d58c7;
     transform: translateX(3px);
 }

 .region-group {
     margin-bottom: 40px;
 }

 .region-title {
     font-size: 1.3rem;
     font-weight: 700;
     color: #0a2b44;
     margin-bottom: 20px;
     padding-bottom: 8px;
     border-bottom: 2px solid #0d58c7;
     display: inline-block;
 }

 .section-head {
     margin: 40px 0 0 0;
     width: 100%;
     display: flex;
     justify-content: space-between;
     align-items: center;
     /* vertically center */
 }

 .section-head .section-head-title {
     
     font-size: 26px;
     color: #222;
     font-weight: 600;
     margin: 0;
     /* remove bottom margin to align properly */
 }

 .section-head .view-all a {
     color: #fff;
     font-size: 14px;
     line-height: 21px;
     text-decoration: none;
     border-radius: 6px;
     background: #0d58c7;
     padding: 5px 10px;
     display: inline-block;
 }

 .loading-spinner {
     text-align: center;
     padding: 40px;
 }


 /* Additional styles for the sections below cover */
 .sections-container {
     max-width: 1200px;
     width: 95%;
     margin: 0 auto;

 }
 .sections-container2 {
     max-width: 1200px;
     margin: 0 auto;
  
 }

 /* Practice Areas Section */
 .practice-areas-section {
     margin-bottom: 60px;
 }

 .section-header {
     text-align: center;
     margin-bottom: 40px;
 }

 .section-header h2 {
     font-size: 2.2rem;
     color: #0a2b44;
     margin-bottom: 12px;
     font-weight: 700;
 }

 .section-header p {
     color: #5a6874;
     font-size: 1rem;
     max-width: 600px;
     margin: 0 auto;
 }

 .practice-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
     gap: 20px;
 }

 .practice-card {
     background: white;
     border-radius: 16px;
     padding: 20px 16px;
     text-align: center;
     text-decoration: none;
     transition: all 0.3s ease;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
     border: 1px solid #eef2f6;
 }

 .practice-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
     border-color: #0d58c7;
 }

 .practice-icon {
     width: 60px;
     height: 60px;
     background: linear-gradient(135deg, #fff5f0 0%, #ffe8e0 100%);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 15px;
     font-size: 28px;
     color: #0d58c7;
 }

 .practice-card h3 {
     font-size: 1rem;
     color: #0d58c7;
     margin-bottom: 6px;
     font-weight: 600;
 }

 .practice-card span {
     font-size: 12px;
     color: #8895a4;
 }

 /* States Section */
 .states-section {
     margin-bottom: 60px;
     background: #f8fafc;
     border-radius: 28px;
     padding: 40px 0px;
 }

 .states-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
     gap: 12px;
 }

 .state-link {
     display: block;
     padding: 10px 16px;
     background: white;
     border-radius: 40px;
     text-decoration: none;
     color: #1e293b;
     font-size: 14px;
     font-weight: 500;
     transition: all 0.2s;
     text-align: center;
     border: 1px solid #e2e8f0;
 }

 .state-link:hover {
     background: #0d58c7;
     color: white;
     border-color: #0d58c7;
     transform: translateX(3px);
 }

 /* Cities Section */
 .cities-section {
     margin-bottom: 40px;
 }

 .region-group {
     margin-bottom: 40px;
 }

 .region-title {
     font-size: 1.5rem;
     font-weight: 700;
     color: #0a2b44;
     margin-bottom: 20px;
     padding-bottom: 10px;
     border-bottom: 3px solid #0d58c7;
     display: inline-block;
 }

 .cities-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
     gap: 12px;
 }

 .city-link {
     display: flex;
     align-items: center;
     gap: 8px;
     padding: 10px 16px;
     background: white;
     border-radius: 40px;
     text-decoration: none;
     color: #334155;
     font-size: 14px;
     transition: all 0.2s;
     border: 1px solid #e2e8f0;
 }

 .city-link i {
     color: #0d58c7;
     font-size: 12px;
 }

 .city-link:hover {
     background: #0a2b44;
     color: white;
     border-color: #0a2b44;
 }

 .city-link:hover i {
     color: white;
 }



 @media (max-width: 768px) {
     .practice-grid {
         grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
         gap: 12px;
     }

     .states-grid {
         grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
     }

     .cities-grid {
         grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
     }

     .section-header h2 {
         font-size: 1.8rem;
     }
 }


 /* Learn the Law Section Styles */
 .learn-law-section {
     max-width: 1400px;
     margin: 60px auto;
     padding: 0 20px;
 }

 .learn-header {
     text-align: center;
     margin-bottom: 45px;
 }

 .learn-header h2 {
     font-size: 2.2rem;
     color: #0a2b44;
     margin-bottom: 12px;
     font-weight: 700;
 }

 .learn-header h2 i {
     color: #0d58c7;
     margin-right: 10px;
 }

 .learn-header p {
     color: #5a6874;
     font-size: 1rem;
     max-width: 650px;
     margin: 0 auto;
 }

 /* Category Tabs */
 .learn-tabs {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 12px;
     margin-bottom: 40px;
     border-bottom: 2px solid #eef2f6;
     padding-bottom: 15px;
 }

 .tab-btn {
     background: transparent;
     border: none;
     padding: 10px 24px;
     font-size: 1rem;
     font-weight: 600;
     color: #5a6874;
     cursor: pointer;
     border-radius: 40px;
     transition: all 0.3s ease;
     font-family: inherit;
 }

 .tab-btn:hover {
     color: #0d58c7;
     background: #fff5f0;
 }

 .tab-btn.active {
     background: #0d58c7;
     color: white;
     box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
 }

 /* Content Grid */
 .learn-content {
     display: none;
     animation: fadeIn 0.4s ease;
 }

 .learn-content.active-content {
     display: block;
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(10px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .articles-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
     gap: 28px;
     margin-bottom: 40px;
 }

 .article-card {
     background: white;
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
     transition: all 0.3s ease;
     border: 1px solid #eef2f6;
     text-decoration: none;
     display: block;
 }

 .article-card:hover {
     transform: translateY(-6px);
     box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.15);
     border-color: #0d58c7;
 }

 .article-img {
     height: 180px;
     background-size: cover;
     background-position: center;
     position: relative;
 }

 .article-category {
     position: absolute;
     top: 15px;
     left: 15px;
     background: #0d58c7;
     color: white;
     padding: 4px 12px;
     border-radius: 20px;
     font-size: 11px;
     font-weight: 600;
     letter-spacing: 0.5px;
 }

 .article-content {
     padding: 20px;
 }

 .article-title {
     font-size: 1.2rem;
     font-weight: 700;
     color: #0a2b44;
     margin-bottom: 10px;
     line-height: 1.4;
 }

 .article-excerpt {
     font-size: 0.85rem;
     color: #5a6874;
     line-height: 1.5;
     margin-bottom: 15px;
 }

 .article-meta {
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-size: 12px;
     color: #8895a4;
     border-top: 1px solid #eef2f6;
     padding-top: 12px;
 }

 .read-more {
     color: #0d58c7;
     font-weight: 600;
     display: flex;
     align-items: center;
     gap: 5px;
 }


 .faq-section {
     background: #f8fafc;
     border-radius: 28px;
     padding: 40px 35px;
     margin-top: 30px;
 }

 .faq-header {
     text-align: center;
     margin-bottom: 35px;
 }

 .faq-header h3 {
     font-size: 1.6rem;
     color: #0a2b44;
     margin-bottom: 8px;
 }

 .faq-header p {
     color: #5a6874;
 }

 .faq-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 20px;
 }

 .faq-item {
     background: white;
     border-radius: 16px;
     padding: 20px;
     transition: 0.2s;
     cursor: pointer;
     border: 1px solid #eef2f6;
 }

 .faq-item:hover {
     border-color: #0d58c7;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
 }

 .faq-question {
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-weight: 700;
     color: #0a2b44;
     font-size: 1rem;
 }

 .faq-question i {
     color: #0d58c7;
     transition: transform 0.3s;
 }

 .faq-answer {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.3s ease;
     color: #5a6874;
     font-size: 0.85rem;
     line-height: 1.5;
 }

 .faq-item.open .faq-answer {
     max-height: 200px;
     margin-top: 12px;
 }

 .faq-item.open .faq-question i {
     transform: rotate(180deg);
 }


 .video-highlight {
     display: flex;
     flex-wrap: wrap;
     gap: 30px;
     background: linear-gradient(135deg, #0a2b44 0%, #123e6a 100%);
     border-radius: 28px;
     padding: 35px;
     margin-top: 40px;
     align-items: center;
 }

 .video-text {
     flex: 1;
     color: white;
 }

 .video-text h3 {
     font-size: 1.6rem;
     margin-bottom: 12px;
 }

 .video-text p {
     opacity: 0.9;
     margin-bottom: 20px;
     line-height: 1.5;
 }

 .watch-btn {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     background: #0d58c7;
     color: white;
     padding: 12px 28px;
     border-radius: 40px;
     text-decoration: none;
     font-weight: 600;
     transition: 0.2s;
 }

 .watch-btn:hover {
     background: white;
     color: #0d58c7;
 }

 .video-thumb {
     flex: 0.8;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 20px;
     padding: 15px;
     text-align: center;
     cursor: pointer;
     transition: 0.2s;
 }

 .video-thumb:hover {
     background: rgba(255, 255, 255, 0.2);
 }

 .video-thumb i {
     font-size: 60px;
     color: white;
 }

 .video-thumb p {
     color: white;
     margin-top: 10px;
     font-size: 13px;
 }

 @media (max-width: 768px) {
     .learn-header h2 {
         font-size: 1.8rem;
     }

     .articles-grid {
         grid-template-columns: 1fr;
     }

     .faq-grid {
         grid-template-columns: 1fr;
     }

     .video-highlight {
         flex-direction: column;
         text-align: center;
     }

     .tab-btn {
         padding: 6px 16px;
         font-size: 0.85rem;
     }
 }
