* {

  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: #ffffff;
}

.navigation-bar {
       position:    sticky;
  top  :   0;
   z-index: 1000;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}


.nav-container {
	      max-width     :        1200px;
       margin: 0 auto;
  padding: 0 20px;
   display: flex;
    justify-content: space-between;
   align-items: center;
  height  :   70px;


}

.logo-section	{
  display    :  flex;
  align-items:    center;
}

.nav-logo {
 height: 45px;
  width: auto;
}

.nav-menu {


    list-style :    none;
   display: flex;
    gap: 40px;

}

.nav-link {
        color: #ffffff;
    text-decoration: none;
   font-weight: 500;
    font-size: 16px;
  transition: all 0.3s ease;
   position: relative;
}

.nav-link:hover {


   color: #ffd700;
     }

.nav-link::after {


  content: '';
    position: absolute;
    bottom: -5px;
	left: 0;
	 width: 0;
   height: 2px;
  background-color: #ffd700;
  transition: width 0.3s ease;
	}

.nav-link:hover::after {
	width: 100%;
}

.burger-menu {
  display: none;
   background: none;
  border   : none;
  cursor: pointer;
   flex-direction: column;
  gap: 6px;
   padding: 5px;
}

.burger-menu span {
 width: 25px;
       height: 3px;
  background-color:  #ffffff;
    border-radius   :     2px;
  transition    :   all 0.3s ease;
}

.hero-section {
   display: grid;
	grid-template-columns: 1fr 1fr;
  gap: 50px;
		align-items: center;
  max-width: 1200px;
  margin: 0 auto;
    padding: 80px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
    color: #667eea;
    line-height: 1.2;
}

.hero-subtitle {

		font-size: 18px;
  color: #555;
   margin-bottom: 30px; 



}  

.cta-button-primary {
	display: inline-block;
    padding: 15px 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: #ffffff;
	text-decoration: none;
  border-radius: 8px;
    font-weight :     600;
   transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
	
}

.cta-button-primary:hover {
  transform: translateY(-3px);
	  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.5);
}

.hero-image-container {
   position: relative;
  height    :  400px;
}

.hero-image     {
  width  :     100%;
  height  :      100%;
    object-fit:   cover;
   border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.about-section {


   padding: 80px 20px;
   background-color: #ffffff;
     }

.about-wrapper {
  max-width: 1200px;
   margin :0 auto;
    display: grid;
   grid-template-columns: 1fr 1fr;
 gap: 50px;
    align-items: center;
}

.about-text h2		{
    font-size: 36px;
  color: #2c3e50;
    margin-bottom   :       25px;


}

.about-text p {
   font-size  :16px;
   color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.about-image {
   height: 350px;
}

.about-img {
   width  :100%;
   height: 100%;
  object-fit: cover;
	 border-radius   :       12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.services-preview {
    padding: 80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
}

.services-preview h2 {
  font-size: 40px;
    text-align: center;
  margin-bottom: 50px;
}

.services-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap   :   30px;
	max-width: 1200px;
   margin: 0 auto;
}

.service-card {

  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 30px;
      border-radius: 12px;
  backdrop-filter: blur(10px);
    transition: all 0.3s ease;


}

.service-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
}

.service-icon-placeholder 
 {
   width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.3);
	border-radius :  50%;
   margin-bottom: 20px;
}

.service-card h3 
 {
       font-size: 20px;
    margin-bottom: 15px;
} 

.service-card p {
    font-size: 14px;
   line-height     :    1.6;
}

.benefits-section {
 padding: 80px 20px;
  background-color: #f5f7fa;


}

.benefits-section h2    {
   font-size: 40px;
  text-align: center;
    color: #2c3e50;
  margin-bottom: 50px;
}

.benefits-container {
      display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  max-width: 1200px;
               margin: 0 auto;
}

.benefit-item {
  background: #ffffff;
    padding   :       35px;
   border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
					border-left: 4px solid #667eea;
}

.benefit-item:hover {

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: translateX(5px);
     }

.benefit-icon {
	width: 50px;
		 height  :  50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   border-radius: 50%;
	margin-bottom   :20px;
}

.benefit-item h3 {
	   font-size: 22px;
   color: #2c3e50;
  margin-bottom: 15px;

}

.benefit-item p {
    line-height    :  1.7;
   font-size: 15px;
   color    :       #666;
}

.programs-section {
  padding: 80px 20px;
  background-color   :        #ffffff;
	max-width: 1200px;
    margin: 0 auto;
}

.programs-section h2 {
        font-size: 40px;
    text-align: center;
	color: #2c3e50;
    margin-bottom: 60px;
}

.programs-list  {
    display :  flex;
  flex-direction: column;
    gap: 60px;
}

.program-item {
  display: grid;
    grid-template-columns: 1fr 1fr;
               gap: 40px;
	align-items: center;
}

.program-item.reverse {
  direction: rtl;
}

.program-item.reverse > * {
	direction: ltr;
}

.program-image {

	                    width: 100%;
	height: 350px;
    object-fit: cover;
	 border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);}

.program-content h3	{

	  font-size: 28px;
  color: #667eea;
    margin-bottom: 20px;
}

.program-content p {
  font-size :  16px;
      color: #555;
    line-height: 1.8;
  text-align: justify;
}

.cta-section {
    padding: 60px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
       color: #ffffff;
    text-align: center;
}

.cta-content {
	    max-width: 800px;
  margin: 0 auto;


}

.cta-content h2 {
		font-size: 36px;
	  margin-bottom: 20px;


}

.cta-content p {
   font-size: 18px;
    margin-bottom: 30px;
   opacity: 0.95; 
	
}

.cta-button-secondary {
    display: inline-block;
	 padding: 15px 40px;
   -webkit-border-radius: 8px;
  background: #ffffff;
    color: #667eea;
          text-decoration     :        none;
  border-radius    :    8px;
	 font-weight: 600;
        transition:      all 0.3s ease;
}

.cta-button-secondary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-section {
     padding: 80px 20px;
    background-color: #f5f7fa;
  max-width: 1200px;
   margin    :0 auto;


}

.contact-section h2 {


   margin-bottom     :15px;
   text-align: center;
    font-size: 36px;
    color: #2c3e50;
}

.contact-intro {
    text-align: center;
   font-size: 16px;
    color: #666;
     margin-bottom:    40px;
}

.contact-form {
      max-width: 600px;
    margin: 0 auto;
			background  :      #ffffff;
    padding  :    40px;
   border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.form-group {
   margin-bottom: 25px;
}

.form-group label {
   display: block;
                    font-weight    :600;
   color: #2c3e50;
		 margin-bottom: 8px;
  font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
        width: 100%;
               padding: 12px 15px;
   border :  2px solid #e0e0e0;
   border-radius: 6px;
   font-size: 15px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  transition:        all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

	  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
   resize: vertical;
}

.form-submit {
   width:   100%;
       padding: 14px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  border: none;
        border-radius: 6px;
   font-size: 16px;
    font-weight: 600;
    cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.footer {
  background: #2c3e50;
   color: #ecf0f1;
  padding: 60px 20px 20px;
}

.footer-content {
   max-width: 1200px;
    margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
} 

.footer-section h3 {
   font-size: 18px; 
       margin-bottom: 20px; 
   color     :        #ffffff;
}

.footer-logo-img
{
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-links {
  list-style: none;
}

.footer-links li {
	   margin-bottom: 12px;
     }

.footer-links a 
 {
  color: #bdc3c7;
                    text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.footer-links a:hover   {
    color: #667eea;
}

.footer-contact {
	    font-size: 14px;
  line-height: 1.8;
}

.footer-contact p {
 margin-bottom: 15px;
}

.footer-contact a {
  color: #667eea;
   text-decoration: none;
    transition: all 0.3s ease;


}

.footer-contact a:hover {
  text-decoration   :      underline;
}

.footer-hours {

		font-size: 14px;
   line-height: 1.8;
     }

.footer-bottom {


      max-width: 1200px;
      margin: 0 auto;
	padding-top: 30px;
    border-top: 1px solid #34495e;
    text-align: center;
  font-size: 14px;
   color: #95a5a6;
     }@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: #667eea;
        gap: 0;
        list-style: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-menu li {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link::after {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 50px 20px;
        gap: 30px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-image-container {
        height: 300px;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-text h2 {
        font-size: 28px;
    }

    .about-image {
        height: 300px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-preview h2 {
        font-size: 28px;
    }

    .benefits-container {
        grid-template-columns: 1fr;
    }

    .programs-section {
        padding: 50px 20px;
    }

    .programs-section h2 {
        font-size: 28px;
    }

    .program-item {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .program-image {
        height: 250px;
    }

    .program-content h3 {
        font-size: 22px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .contact-form {
        padding: 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .about-text h2 {
        font-size: 22px;
    }

    .services-preview h2 {
        font-size: 22px;
    }

    .benefits-section h2 {
        font-size: 22px;
    }

    .programs-section h2 {
        font-size: 22px;
    }

    .program-content h3 {
        font-size: 18px;
    }

    .contact-section h2 {
        font-size: 24px;
    }

    .contact-intro {
        font-size: 14px;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: #ffffff;
    padding: 100px 20px;
  text-align   :    center;
}

.services-hero-content h1
	{
  font-size    :     48px;
  margin-bottom: 20px;
      line-height: 1.2;
}

.services-hero-content p {
   font-size: 20px;
  opacity  :      0.95;
}

.services-detailed {

  padding: 80px 20px;
    background-color: #ffffff;}

.services-container {

		max-width: 1200px;
	margin: 0 auto;
	display: flex;
  flex-direction: column;
   gap: 80px;
     }

.service-detailed-card {
    display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
    align-items: flex-start;
    padding: 40px;
    background: #f5f7fa;
   border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.service-detailed-card.reverse {
    direction: rtl; 

}

.service-detailed-card.reverse > * {

  direction:   ltr;
	}

.service-image-container {
   height: 400px;
    overflow: hidden;
}

.service-detail-image {
                    width: 100%;
   height: 100%;
  object-fit    :cover;
          border-radius: 12px;
}

.service-detail-content h2 {
  margin-bottom   :     15px;
    line-height: 1.3;
  font-size: 32px;
   color: #667eea;
}

.service-meta {

  display: flex;
   gap:      20px;
                    margin-bottom: 25px;
  flex-wrap: wrap;
}

.service-meta span		{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
         padding: 8px 15px;
   border-radius: 20px;
   font-size: 13px;
  font-weight: 600; 
	
}

.service-description {
   font-size: 16px;
    color  :       #555;
         line-height: 1.8;
    margin-bottom: 25px;
          text-align  : justify;
}

.service-subtitle {
  font-size   :      18px;
   color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
}  

.service-features {
  list-style: none;
	    margin-bottom: 30px;
	
}

.service-features li {
    padding-left: 30px; 
	   position: relative; 
	     margin-bottom    :     12px; 
	  font-size: 15px; 
	    color: #555; 
		line-height: 1.6;
}

.service-features li::before {
  content: '✓';
   position: absolute;
  left: 0;
  color: #667eea;
  font-weight: bold;
    font-size:   18px;
}

.service-price {


	 display: flex;
    align-items: baseline;
  gap: 15px;
   padding: 20px;
	 background   :    #ffffff;
         border-left: 4px solid #667eea;
	border-radius: 8px;}

.price-label {

    font-weight: 600;
               color: #2c3e50;
    font-size    :        15px;
	}

.price-value {
          font-weight: 700;
  font-size: 28px;
  color: #667eea;
}

.service-comparison 
 {
          padding: 80px 20px;
	background-color: #f5f7fa;
} 

.service-comparison h2 {
 font-size: 36px;
   color: #2c3e50;
    text-align    :       center;
  margin-bottom: 50px;
}

.comparison-table-wrapper

{


        max-width: 1200px;
    margin: 0 auto;
  overflow-x: auto;
        background :        #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	}

.comparison-table {
    width: 100%;
	border-collapse: collapse;
     }

.comparison-table thead {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	 color :        #ffffff;
}

.comparison-table th {
   		 padding: 20px;
    text-align: left;
		 font-weight: 600;
    font-size: 15px; 

}

.comparison-table td {
   padding: 18px 20px;
    border-bottom: 1px solid #e0e0e0;
   font-size: 14px;
                    color: #555;
}

.comparison-table tbody tr:hover {
    background-color: #f9f9f9;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.faq-section {
	padding: 80px 20px;
	background-color     :        #ffffff;
}

.faq-section h2 {
   font-size: 36px;
       color: #2c3e50;
      text-align: center;
     margin-bottom: 50px; 
	
}

.faq-container {
          max-width: 900px;
  grid-template-columns: 1fr;
	gap: 20px;
  margin: 0 auto;
    display: grid;
}  

.faq-item{
  background: #f5f7fa;
       padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #667eea;
  cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.2);
     transform: translateX(5px);
}

.faq-question


{
	 font-size    :        18px;
   color :#2c3e50;
    margin-bottom    :        15px;
  font-weight: 600;
}

.faq-answer {
    font-size: 15px;
  color: #555;
  line-height: 1.7;
    text-align: justify;
}

.services-cta {
   padding: 60px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
          color: #ffffff;
   text-align: center;
}

.services-cta-content {
   max-width :       800px;
  margin: 0 auto; 

}

.services-cta-content h2 {
  font-size: 36px;
 margin-bottom: 20px;
}

.services-cta-content p {
  font-size: 18px;
	opacity: 0.95;
    margin-bottom: 30px;
}

.thankyou-section  
  {
       padding: 100px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
   min-height: 70vh;
  display: flex;
 align-items: center;}

.thankyou-container {
  max-width: 700px;
  margin: 0 auto;
  background: #ffffff;
         padding: 60px 40px;
   border-radius:15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
	}

.thankyou-icon {
    color: #2ecc71;
	margin-bottom: 30px;
		animation  :        scaleIn 0.5s ease;
}@keyframes scaleIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-title    {
    font-size: 42px;
	color: #2c3e50;
  margin-bottom: 15px;
   font-weight: 700;
}

.thankyou-subtitle {

   font-size: 18px;
   	color: #667eea;
      margin-bottom: 30px;
       font-weight: 600;


}

.thankyou-message {
   background: #f5f7fa;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 40px;
       border-left: 4px solid #2ecc71;
}


.thankyou-message p	{
  font-size: 15px;
   color: #555;
  line-height: 1.8;
    margin-bottom: 15px;
         text-align: left;
}

.thankyou-message p:last-child {
    margin-bottom: 0;
}

.thankyou-phone {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
    padding: 12px 25px;
    border-radius: 6px;
  text-decoration: none;
    font-weight: 600;
  margin-top: 15px;
    transition: all 0.3s ease;
}

.thankyou-phone:hover {
  transform: scale(1.05);
	
}

.thankyou-next-steps {
    margin-bottom:       40px;
}

.thankyou-next-steps h2 {
    font-size: 22px;
   color: #2c3e50;
	margin-bottom: 30px;
  font-weight: 600;
}

.steps-list{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap  :  25px;
	margin-bottom: 30px;
}

.step {
   background: #f5f7fa;
   padding: 25px;
    border-radius  : 10px;
  position: relative;
}

.step-number {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color   :       #ffffff;
    width: 50px;
   height     :        50px;
		 border-radius: 50%;
   display: flex;
	align-items    : center;
   justify-content: center;
         font-size: 24px;
                    font-weight: 700;
	 margin: 0 auto 15px;
}

.step h3 {
	font-size: 16px;
   color    :    #2c3e50;
  margin-bottom: 10px;
   font-weight: 600;
}

.step p {
  font-size: 13px;
    color: #666;
       line-height   :        1.6;
}

.thankyou-suggestions {
	background: #fff9e6;
  padding: 25px;
                    border-radius: 10px;
    margin-bottom: 30px;
    border-left:4px solid #f39c12;
}

.thankyou-suggestions h2 {
  font-size: 18px;
   margin-bottom: 15px;
    text-align: center;
   font-weight: 600;
    color: #2c3e50;
}

.suggestions-list    {
  list-style: none;
  text-align: left;
}

.suggestions-list li {
                    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    font-size: 14px;
  color: #555;
  line-height: 1.6;
}


.suggestions-list li::before {
  content: '→';
   position: absolute;
	left: 0;
   color: #f39c12;
	font-weight: bold;
}

.suggestions-list a {

	  color   :    #667eea;
	text-decoration: none;
   font-weight: 600;
   transition: all 0.3s ease;



}

.suggestions-list a:hover {
       text-decoration: underline;
}

.thankyou-actions    {
    display: grid;
               grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.button-primary {
  display: inline-block;
    padding: 14px 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
  text-decoration: none;
    border-radius: 6px;
   font-weight: 600;
  transition: all 0.3s ease;
    border: 2px solid transparent;
}

.button-primary:hover

{
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.button-secondary {
  display   : inline-block;

		padding: 14px 30px;

	   background: transparent;

	    color: #667eea;

	    text-decoration: none;

	    border-radius: 6px;

		font-weight  :   600;

		border :   2px solid #667eea;

	  transition:      all 0.3s ease;
}

.button-secondary:hover {
   background: #667eea;
    color :     #ffffff;
}

.quick-info {
   padding: 60px 20px;
   	 background: #f5f7fa;
}



.quick-info-container {
  max-width: 1000px;
   margin: 0 auto;
}

.quick-info-container h2
{
   font-size: 28px;
    color: #2c3e50;
    text-align: center;
   margin-bottom: 40px;
   font-weight: 600;
}

.info-grid {
     display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
  gap: 30px;
	} 

.info-card {
  background     :   #ffffff;
   padding: 30px;
   border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align  :center;
}

.info-card h3 {
   font-size: 18px;
     color: #667eea;
             margin-bottom: 15px;
       font-weight: 600;
}

.info-card p {
   font-size: 15px;
  color: #555;
  line-height: 1.8;

}

.info-card a {
      color :   #667eea;
   text-decoration: none;
                    font-weight: 600;
  transition: all 0.3s ease;
}

.info-card a:hover {


       text-decoration  :        underline;

}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 32px;
    }

    .services-hero-content p {
        font-size: 16px;
    }

    .service-detailed-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 25px;
    }

    .service-image-container {
        height: 300px;
    }

    .service-detail-content h2 {
        font-size: 24px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px;
        font-size: 12px;
    }

    .faq-item {
        padding: 20px;
    }

    .faq-question {
        font-size: 16px;
    }

    .faq-answer {
        font-size: 14px;
    }

    .thankyou-container {
        padding: 40px 25px;
    }

    .thankyou-title {
        font-size: 32px;
    }

    .steps-list {
        grid-template-columns: 1fr;
    }

    .thankyou-actions {
        grid-template-columns: 1fr;
    }

    .services-cta-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 24px;
    }

    .services-hero-content p {
        font-size: 14px;
    }

    .service-detail-content h2 {
        font-size: 20px;
    }

    .service-description {
        font-size: 14px;
    }

    .service-subtitle {
        font-size: 16px;
    }

    .thankyou-container {
        padding: 30px 20px;
    }

    .thankyou-title {
        font-size: 26px;
    }

    .thankyou-subtitle {
        font-size: 16px;
    }

    .thankyou-message {
        padding: 15px;
    }

    .quick-info-container h2 {
        font-size: 22px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}.policy-section {
    padding: 80px 20px;
	background: #f5f7fa;
  min-height: calc(100vh - 200px);
}

.policy-container {

	max-width: 900px;
   margin    :0 auto;
  background: #ffffff;
   padding   :        60px 50px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	}

.policy-container h1 {
          font-size: 42px;
	 color: #667eea;
  margin-bottom: 40px;
   font-weight   :       700;
    padding-bottom: 20px;
    border-bottom: 3px solid #667eea;}

.policy-container h2     {
   font-size  :        26px;
    color: #2c3e50;
    margin-top: 35px;
   margin-bottom: 20px;
    font-weight: 600;
    padding-top: 15px;


}

.policy-container p {
	   line-height: 1.8;
   margin-bottom: 18px;
 font-size: 15px;
                    text-align: justify;
    color: #555;
     }

.policy-container strong {
    color: #2c3e50;
    font-weight: 600;
}  

.policy-container p:first-of-type {
  margin-top: 0;
}@media (max-width: 768px) {
    .policy-section {
        padding: 60px 15px;
    }

    .policy-container {
        padding: 40px 30px;
        border-radius: 10px;
    }

    .policy-container h1 {
        font-size: 32px;
        margin-bottom: 30px;
        padding-bottom: 15px;
    }

    .policy-container h2 {
        font-size: 22px;
        margin-top: 28px;
        margin-bottom: 15px;
    }

    .policy-container p {
        font-size: 14px;
        margin-bottom: 15px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 40px 12px;
        min-height: auto;
    }

    .policy-container {
        padding: 25px 20px;
        border-radius: 8px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    }

    .policy-container h1 {
        font-size: 26px;
        margin-bottom: 25px;
        padding-bottom: 12px;
        border-bottom-width: 2px;
    }

    .policy-container h2 {
        font-size: 18px;
        margin-top: 22px;
        margin-bottom: 12px;
    }

    .policy-container p {
        font-size: 13px;
        margin-bottom: 12px;
        line-height: 1.6;
        text-align: left;
    }
}