* {
  margin: 0;
  padding     :       0;
   box-sizing   :  border-box;
}

html {
	  scroll-behavior    :      smooth;

}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
    color :  #2c3e50;
    background-color    : #f8f9fa; 

}

.container     {
   margin: 0 auto;
  padding: 0 20px;
   max-width :  1200px;
}

.navbar

{
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
	padding: 1rem 0;
    position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: 1200px;
	margin: 0 auto;
   padding: 0 20px;
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.nav-logo img {
 height: 50px;
   width :   auto;
  filter: brightness(0) invert(1); 

}

.nav-menu {
	 display    :   flex;
   list-style  :        none;
         gap: 2rem;
}


.nav-link   {
  color: #ecf0f1;
				 text-decoration: none;
   font-weight: 500;
    transition    :   all 0.3s ease;
  position: relative;
}


.nav-link:hover {
   color: #3498db;
}

.nav-link::after {
  content: '';
  position   :      absolute;
  bottom: -5px;
          left: 0;
    width: 0;
   height: 2px;
    background: #3498db;
   transition: width 0.3s ease;
}  

.nav-link:hover::after {
 width    :     100%;
}

.nav-toggle {
    display: none;
   flex-direction: column;
  cursor     :       pointer;
  gap  :    5px;
}

.hamburger {
                    width: 28px;
        height: 3px;
  background: #ecf0f1;
    border-radius: 2px;
   transition: all 0.3s ease;
}

.hero-section  {


	display: flex;
    align-items  :   center;
   justify-content: space-between;
   padding:   80px 20px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   color: white;
   gap: 40px;
   max-width: 1400px;
  margin: 0 auto;

}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-title {
   font-weight: 700;
    font-size: 3.5rem;
  margin-bottom: 1.5rem;
    line-height     : 1.2;
}


.hero-subtitle {
    font-size: 1.25rem;
          margin-bottom: 2rem;
    opacity: 0.95;
   line-height: 1.6;
}


.hero-cta {
  display: inline-block;
  background: #e74c3c;
   color: white;
       padding: 14px 40px;
  border-radius: 50px;
  text-decoration: none;
    font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4); 
	
}

.hero-cta:hover {
  background: #c0392b;

	  transform: translateY(-2px);

	  box-shadow: 0 10px 30px rgba(231, 76, 60, 0.6);
}

.hero-image {
   flex: 1;
	  overflow: hidden;
	  border-radius: 15px;
}

.hero-img


{
		width: 100%;
   height: auto;
	display  :       block;
   object-fit: cover;
	}

.services-preview {
         padding: 80px 20px;
  background: white;
}

.section-title {
  font-size  :      2.5rem;
   font-weight:       700;
  text-align: center;
     margin-bottom: 3rem;
   color :   #2c3e50;
}

.services-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap  :      2rem;
}

.service-card {


    background : white;
    border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
   transition: all 0.4s ease;
   border: 1px solid #ecf0f1; 

     }

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(52, 152, 219, 0.25);
}

.service-img {
       width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
	}

.service-name {
  font-size: 1.3rem;
   	font-weight: 600;
   	 padding  :    1.5rem 1.5rem 0.5rem;
   	 color   :      #2c3e50;
	
}

.service-desc {

	  padding: 0 1.5rem 1.5rem;
   color: #555;
    font-size  :      0.95rem;
   line-height: 1.6;
}


.benefits-section {
               padding: 80px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.benefits-layout {

	   display  :    grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap:2.5rem;



}

.benefit-item {
  background: white;
	    padding: 2rem;
		 border-radius :        12px;
	  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	    transition   :        all 0.3s ease;
}

.benefit-item:hover{
  transform: translateY(-5px); 
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);}

.benefit-icon {
    font-size   : 2.5rem;
      font-weight: 700;
     color:  #3498db;
         margin-bottom: 1rem;
}

.benefit-title {
    font-size: 1.2rem;
  font-weight: 600;
         margin-bottom: 0.8rem;
	color: #2c3e50;
}


.benefit-text	{
  line-height: 1.6;
   font-size: 0.95rem;
	 color: #555;
}

.mentoring-section

{
   padding: 80px 20px;
  background: white; 

}

.mentoring-content {
  display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 4rem;
   align-items: center;
}

.mentoring-text {
    flex: 1;
}

.mentoring-desc {
   font-size: 1rem;
   color     :        #555;
  margin-bottom: 1.5rem;
   line-height: 1.8;
}

.mentoring-list {
                    list-style    :none;
}

.mentoring-list li {
	    padding: 0.8rem 0;
	padding-left: 1.5rem;
   color: #555;
  position: relative;
    font-size: 0.95rem;}



.mentoring-list li::before {
  content: '✓';
   position: absolute;
   left: 0;
    color: #27ae60;
    font-weight: bold;
   font-size: 1.1rem;

}

.mentoring-image {
  flex: 1;
   overflow: hidden;
   border-radius :     15px;
}

.mentoring-img {
	   width: 100%;
   height: auto;
	display     :  block; 
	}

.cta-section {
    padding: 80px 20px;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    text-align: center;
    color: white; 

}

.cta-content
	{
	max-width    :       700px;
   margin: 0 auto;
}

.cta-title		{

	    font-size: 2.2rem;
    font-weight: 700;
   margin-bottom: 1rem;
     }

.cta-text {
  font-size: 1.1rem;
    margin-bottom: 2rem;
  opacity: 0.95;
}


.cta-button {
	  display: inline-block; 
	  background: #f39c12; 
	  color    :white; 
	  padding: 14px 45px; 
	                    border-radius:50px; 
	    text-decoration: none; 
	    font-weight: 600; 
	   transition: all 0.3s ease; 
	  box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4); 

     }

.cta-button:hover {
	 background: #e67e22; 
  transform: translateY(-3px); 
  box-shadow: 0 10px 30px rgba(243, 156, 18, 0.6);
}

.contact-section {
    padding: 80px 20px;
   background: white;
} 

.contact-layout {
  grid-template-columns: 2fr 1fr;
    display: grid;
   gap: 3rem;
    margin-top: 2rem;
}

.contact-form {
	background   :        #f8f9fa;
    padding: 2.5rem;
   border-radius: 12px; 

}

.form-group {
   margin-bottom: 1.5rem;
}

.form-label {
    display: block;
	 font-weight: 600;
  margin-bottom    :    0.5rem;
    color: #2c3e50;
}

.form-input,
.form-textarea {


    border: 1px solid #ddd;
   border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
	 transition: all 0.3s ease;
    padding: 12px 15px;
   width :   100%;


}

.form-input:focus,
.form-textarea:focus {
  outline: none;

  border-color: #3498db;

   background: white;

  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-textarea
	{
   resize: vertical;
   min-height: 120px;
	}

.form-submit {
   background: #2980b9;
   color : white;
   padding: 12px 30px;
   border: none;
  border-radius: 8px;
  font-weight    :    600;
  cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
  font-size     :       1rem;
}

.form-submit:hover {

  background: #1f618d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(41, 128, 185, 0.3);
	}



.contact-info {
	  background: #f8f9fa;
  padding: 2rem;
	border-radius: 12px;
	height: fit-content;}

.contact-title {
  font-size: 1.3rem;
  font-weight :600;
    margin-bottom: 1.5rem;
	color: #2c3e50;
}

.info-block {
   margin-bottom:    1.5rem;
}

.info-label {
         font-weight:        600;
   color: #2c3e50;
  margin-bottom: 0.3rem;
}

.info-text {

   color: #555;
	  font-size: 0.95rem;
	   line-height: 1.6;}

.footer {
  background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
  color: #ecf0f1;
   padding-top   :        3rem;
}

.footer-container {
  max-width: 1200px;
	margin: 0 auto;
    padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section {
  display: flex;
 flex-direction: column;
}

.footer-logo {

   height:       50px;
	    width: auto;
	  filter: brightness(0) invert(1);
	    margin-bottom: 1rem;
	}

.footer-title {
    font-size: 1.1rem;
          font-weight     :      600;
   margin-bottom: 1rem;
    color: white;
}

.footer-links {
  list-style: none;
}

.footer-links li {
					margin-bottom: 0.5rem;
}

.footer-links a {
	 color  :       #bdc3c7;
	  text-decoration: none;
	  transition: all 0.3s ease;
	   font-size: 0.95rem;
}

.footer-links a:hover  {
    color: #3498db;
  padding-left   : 5px;
}  

.footer-text {
   color :  #bdc3c7;
   font-size  :      0.95rem;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(236, 240, 241, 0.1);
   padding     :        1.5rem 20px;
   text-align: center;
    color: #95a5a6;
}

.footer-copyright {


    font-size: 0.9rem;
}@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #34495e;
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        width: 100%;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(236, 240, 241, 0.1);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .hamburger:nth-child(1) {
        transform: rotate(45deg) translate(10px, 10px);
    }

    .nav-toggle.active .hamburger:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .hamburger:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .hero-section {
        flex-direction: column;
        padding: 50px 20px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .mentoring-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .benefits-layout {
        grid-template-columns: 1fr;
    }
}@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .services-preview {
        padding: 50px 15px;
    }

    .benefits-section {
        padding: 50px 15px;
    }

    .contact-section {
        padding: 50px 15px;
    }

    .contact-form,
    .contact-info {
        padding: 1.5rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color :       white;
  padding: 60px 20px;
   text-align: center;
}  

.services-hero-content {
   max-width: 1200px; 
	    margin: 0 auto;
}

.services-hero-title {
   font-size: 2.8rem;
   font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.services-hero-text {
  font-size: 1.1rem;
  opacity: 0.95;
    max-width: 600px;
  margin: 0 auto;
}

.services-detailed {
    padding: 80px 20px;
  background: white;
}

.service-detailed-item {
    display     :grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
	align-items: center;
    margin-bottom: 5rem;
  max-width: 1200px;
    margin-left: auto;
  margin-right: auto;
}

.service-detailed-item.reverse {


  direction: rtl;
     }

.service-detailed-item.reverse > * {
    direction     :     ltr;
}  

.service-detail-image {
  overflow: hidden;
                    border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.detail-img {
  width: 100%;
  height: auto;
    display: block;
  object-fit: cover;
}

.service-detail-content {
  padding: 1rem;
}

.service-detail-title {
   font-size:   2rem;
   font-weight   :    700;
    margin-bottom: 1.5rem;
    color  :   #2c3e50;
}

.service-detail-desc
	{
   font-size: 1rem;
	color: #555;
    line-height     :   1.8;
   margin-bottom: 2rem;
}

.service-detail-features {
   display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.feature-box {
   background  :     #f8f9fa;
   padding: 1.5rem;
   border-radius: 10px;
   border-left: 4px solid #3498db;
   transition: all 0.3s ease;
}

.feature-box:hover {
  background: #e8f4f8;
  transform: translateX(5px);
}

.feature-title {
   font-size: 1rem;
        font-weight : 600;
    margin-bottom :     0.5rem;
   color: #2c3e50;
}

.feature-text {
   color: #666;
   font-size: 0.9rem;
	line-height:  1.5;
}

.service-pricing {
    display: flex;
    align-items: baseline;
   gap    :      0.5rem;
   padding: 1.5rem;
  background: linear-gradient(135deg, #e8f4f8 0%, #f0f8fb 100%);
	 border-radius: 10px;
}

.price-label {
	 font-size: 0.9rem;
    color: #666;
    font-weight  : 500;
	}

.price-value {
   font-size: 1.8rem;
   font-weight: 700;
   color: #e74c3c;
}

.price-period {
  font-size: 0.85rem;
  color: #888;
    margin-left: auto; 
	
}

.online-services {
    padding: 80px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);


     }

.online-grid {
   display    :     grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
   gap :   2.5rem;
   margin-top: 2rem;
}

.online-card {
  background    :     white;
     padding: 2.5rem;
   		 border-radius: 12px;
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
     transition: all 0.4s ease;
            border-top: 4px solid #3498db;
}

.online-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(52, 152, 219, 0.2);
}

.online-icon {
  display    :    flex;
          align-items: center;
    justify-content: center;
  width: 60px;
        height    :    60px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
 border-radius: 50%;
  font-size: 1.8rem;
  font-weight: 700;
    margin-bottom: 1.5rem;
}

.online-title {
    font-size: 1.3rem;
	 font-weight     :      700;
  margin-bottom: 1rem;
    color: #2c3e50;
}

.online-desc {
     font-size: 0.95rem; 
   color    :       #555; 
   line-height: 1.6; 
   margin-bottom: 1.5rem;}

.online-features {
  list-style: none;
  margin-bottom: 2rem;
}

.online-features li  {
  padding: 0.6rem 0; 
	                    padding-left: 1.5rem; 
	  color :     #666; 
		 font-size: 0.9rem; 
	   position: relative;
}

.online-features li::before     {
  content: '→';
   position: absolute;
  left   :        0;
   color: #3498db;
   font-weight: bold;
}

.online-price {
   display: flex; 
	  flex-direction: column; 
	   padding-top: 1.5rem; 
	      border-top: 1px solid #ecf0f1;
}

.faq-section   {
  padding: 80px 20px;
  background: white;
}

.faq-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
   background: #f8f9fa;
   padding    :  2rem;
   border-radius: 10px;
    border-left: 4px solid #3498db;
  cursor: pointer;
   transition: all 0.3s ease;
}

.faq-item:hover {
  background: #e8f4f8;
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.15);
}

.faq-question {

    display    :        flex;
	 color: #2c3e50;
    justify-content     :    space-between;
   font-size: 1.05rem;
    align-items: center;
	 margin-bottom: 1rem;
          font-weight: 600;}

.faq-question::after {
  content: '+';
   font-size: 1.5rem;
  color:#3498db;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {


    font-size: 0.95rem;
   color: #555;
  line-height :   1.6;
    display: none;
}

.faq-item.active .faq-answer 
 {
  display: block;
    animation: slideDown 0.3s ease;
}@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.cta-services {
    padding: 80px 20px; 
  background: linear-gradient(135deg, #2980b9 0%, #3498db 100%); 
  text-align: center; 
    color: white;

}

.cta-services-content
{
  max-width :700px;
    margin: 0 auto;
}

.cta-services-title {
  font-size: 2.2rem;
  font-weight   :        700;
    margin-bottom: 1rem;
	
}

.cta-services-text {
  font-size: 1rem;
    margin-bottom :       2rem;
  opacity: 0.95;
}


.cta-services-button {
    display: inline-block;
  background: #e74c3c;
      color: white;
         padding: 14px 40px;
    border-radius: 50px;
  text-decoration   :      none;
    font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);


}

.cta-services-button:hover {
   background:   #c0392b;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(231, 76, 60, 0.6);


}

.thankyou-section {
     padding: 80px 20px;

	  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);

	  min-height: 60vh;

	          display: flex;

	    align-items: center;

		justify-content: center;

}

.thankyou-container {

    width: 100%;
    max-width: 700px;

}

.thankyou-card {
   background: white;
   border-radius: 15px;
    padding    :    3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
   text-align: center;
}

.thankyou-icon


{
  display: flex;
        align-items: center;
   justify-content: center;
  width :      80px;
    height: 80px;
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color  : white;
         border-radius: 50%;
   font-size: 2.5rem;
	 margin: 0 auto 1.5rem;
  animation: scaleIn 0.5s ease;
}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-title {
    font-size: 2rem;
  font-weight   :        700;
       color: #2c3e50;
   margin-bottom: 0.5rem;
}

.thankyou-subtitle {
	   font-size: 1.05rem;
  color: #666;
   margin-bottom: 2rem;
}

.thankyou-content {
   text-align: left;
  margin: 2rem 0;
}

.thankyou-text {
   line-height: 1.7;
  margin-bottom: 2rem;
	 color: #555;
   font-size: 0.95rem;
	
}

.thankyou-info {
  background: #f8f9fa;
   padding: 2rem;
   border-radius: 10px;
  margin: 2rem 0;
}

.info-title {
   font-size: 1.1rem;
  font-weight: 600;
                    color: #2c3e50;
   margin-bottom: 1.5rem;
}


.info-steps {
          display: grid;
	  grid-template-columns: repeat(3, 1fr);
		gap: 1.5rem;
}

.step  
  {
  display: flex;
   gap: 1rem;
}

.step-number {

	    justify-content: center;
    width: 40px;
    border-radius: 50%;
  background: #3498db;
  flex-shrink: 0;
  font-weight: 700;
    color: white;
  align-items: center;
 height: 40px;
 display: flex;

}

.step-content {
    text-align: left;
}

.step-title     {
         font-size: 0.9rem;
       font-weight :    600;
   color: #2c3e50;
    margin-bottom: 0.3rem;
}

.step-text {
       font-size: 0.8rem;
    color  :     #666;
	}



.thankyou-quick-info {
	 display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 1rem;
	margin: 1.5rem 0;
}

.quick-info-box {
  background: white;
   padding: 1rem;
  border-radius: 8px;
    border     :1px solid #ecf0f1; 
	
}

.quick-info-label {
  font-size: 0.8rem;
  color: #888;
   margin-bottom: 0.3rem;
}

.quick-info-value {
   font-size: 1rem;
  font-weight: 700;
  color: #3498db; 

}

.thankyou-closing {
        line-height: 1.6;
   color: #666;
   font-size: 0.9rem;
   margin-bottom: 2rem;
}

.thankyou-actions {
  display: grid;
   grid-template-columns: 1fr 1fr;
  gap  :        1rem;
   margin-top: 2rem;
}

.action-button {
  display: inline-block; 
    padding: 12px 24px; 
    border-radius: 8px; 
    text-decoration: none; 
   font-weight: 600; 
    transition: all 0.3s ease; 
    text-align  : center;
}

.action-button.primary		{
  background :    #3498db;
  color: white;
}

.action-button.primary:hover {


  background: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(52, 152, 219, 0.3);
     }

.action-button.secondary

{
      background: #ecf0f1;
   color: #2c3e50;
  border: 2px solid #3498db;


}

.action-button.secondary:hover {
   background :  #3498db;
  color     :    white;
  transform: translateY(-2px);
}

.why-choose-section  
  {
   padding: 80px 20px;
  background: white;
}

.why-grid {
   display    :      grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
   gap: 2rem;
  margin-top: 2rem;


}

.why-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
 padding: 2rem;
      border-radius: 12px;
  text-align :       center;
	transition: all 0.3s ease;
	border: 1px solid #ddd;
}

.why-card:hover {


  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: #3498db;
	}

.why-number {
  display: flex;
  align-items   :       center;
  justify-content  :  center;
    width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   color: white;
    border-radius: 50%;
                    font-size: 1.5rem;
   font-weight  :      700;
   margin: 0 auto 1rem;
}

.why-title {
	 font-size: 1.1rem;
   font-weight: 600;
   color   :  #2c3e50;
                    margin-bottom: 0.8rem;
}

.why-text {
  font-size     : 0.9rem;
     color  : #666;
   line-height :    1.5;
}  @media (max-width: 768px) {
    .services-hero-title {
        font-size: 1.8rem;
    }

    .service-detailed-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .service-detail-title {
        font-size: 1.4rem;
    }

    .service-detail-features {
        grid-template-columns: 1fr;
    }

    .info-steps {
        grid-template-columns: 1fr;
    }

    .thankyou-actions {
        grid-template-columns: 1fr;
    }

    .online-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-card {
        padding: 1.5rem;
    }

    .quick-info-box {
        padding: 0.8rem;
    }
}@media (max-width: 480px) {
    .services-hero-title {
        font-size: 1.3rem;
    }

    .service-detail-title {
        font-size: 1.2rem;
    }

    .thankyou-title {
        font-size: 1.5rem;
    }

    .step {
        flex-direction: column;
        gap: 0.5rem;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .thankyou-quick-info {
        grid-template-columns: 1fr;
    }
}.policy-section {
    background     :      #f8f9fa;
	min-height   :     70vh;
  padding: 80px 2rem;
}

.policy-container {
    max-width: 850px;
     margin: 0 auto;
      text-align     :left;
}

.policy-container h1    {


   font-size: 2.8rem;
  color: #2c3e50;
  margin-bottom: 2rem;
     font-weight: 700;
                    text-align: center;
   padding-bottom  :       1.5rem;
   border-bottom: 3px solid #3498db;}

.policy-container h2 {
  font-size: 1.6rem;
    color: #2c3e50;
  margin-top: 2.5rem;
    margin-bottom  :       1rem;
   font-weight: 700;
    position: relative;
   padding-left  :   1.5rem;
}

.policy-container h2::before {
  content: '';
    position: absolute;
   left: 0;
    top  :50%;
  transform: translateY(-50%);
          width: 5px;
   height: 1.4rem;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   border-radius    :        3px;
}

.policy-container p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.2rem;
  line-height: 1.8;
    text-align: justify;
}

.policy-container strong {
  color: #2c3e50;
   font-weight: 600;
}@media (max-width: 1024px) {
    .policy-container {
        max-width: 100%;
    }

    .policy-container h1 {
        font-size: 2.4rem;
    }

    .policy-container h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .policy-section {
        padding: 60px 1.5rem;
    }

    .policy-container h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policy-container h2 {
        font-size: 1.2rem;
        margin-top: 2rem;
        margin-bottom: 0.8rem;
    }

    .policy-container p {
        font-size: 0.95rem;
        line-height: 1.7;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 40px 1rem;
    }

    .policy-container h1 {
        font-size: 1.6rem;
    }

    .policy-container h2 {
        font-size: 1.1rem;
        padding-left: 1rem;
    }

    .policy-container h2::before {
        width: 4px;
        height: 1.1rem;
    }

    .policy-container p {
        font-size: 0.9rem;
    }
}