* {


  margin    :        0;
    padding: 0;
   box-sizing: border-box;

}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;

  line-height: 1.6;

               color: #2c3e50;

    background-color: #fafbfc;
}

.main-navigation {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
   top:   0;
    z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
               padding: 0 20px;
    display :flex;
   justify-content     :   space-between;
  align-items: center;
   height: 70px;
}

.nav-logo img {
    height: 45px;
   width: auto;
  filter: brightness(0) invert(1);
}

.nav-links		{
    display: flex;

    list-style  :        none;

   gap: 40px;

  align-items: center;
}

.nav-links a {
    text-decoration: none;
   -o-transition: color 0.3s ease;
   -webkit-transition: color 0.3s ease;
	 color: #2c3e50;
  font-weight     :      500;
         -moz-transition: color 0.3s ease;
  font-size   :       16px;
   transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after  
  {
  content: '';
    position: absolute;
  width: 0;
	height:      2px;
   bottom: -5px;
	left: 0;
  background: linear-gradient(90deg, #3498db, #2980b9);
   transition    :width 0.3s ease;
}

.nav-links a:hover {
  color: #3498db;
}

.nav-links a:hover::after {

	   width: 100%;
	
	}


.burger-menu {
	display: none;
  cursor: pointer;
	flex-direction: column;
 gap: 6px;
}

.burger-line {


  width: 25px;
   height :  3px;
    background:#2c3e50;
  border-radius: 2px;
   transition: all 0.3s ease;
     }

.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.burger-menu.active .burger-line:nth-child(2) {

	    opacity: 0;

}

.burger-menu.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.hero-section {
   max-width: 1200px;
   margin: 60px auto;
  padding :   0 20px;
  display:       grid;
  grid-template-columns: 1fr 1fr;
   gap: 50px;
  align-items: center;
}

.hero-content h1 {
      font-size: 48px;
  line-height: 1.2;
   margin-bottom: 20px;
   color: #1a252f;
    font-weight: 700;
}

.hero-subtitle {


    font-size     :    18px;
	color: #555;
    margin-bottom     :     30px;
      line-height:     1.7;
     }

.cta-button {


  display: inline-block;
   padding: 16px 35px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   color     :     white;
	text-decoration: none;
   border-radius: 6px;
   font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);


}  

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.hero-image {
   width: 100%;
    height: auto;
   border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1); 
	
}

.services-preview {
  max-width: 1200px;

	margin: 80px auto;

	 padding: 0 20px;
}

.services-preview h2 {
    font-size: 40px;
    text-align: center;
	margin-bottom: 50px;
    color: #1a252f;
}

.services-grid {
	 display: grid;
  grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card		{
    background: white;
   padding: 35px;
    border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.service-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
  border-left-color: #3498db;
}

.service-card h3 {
   color   :    #2c3e50;
   font-size: 22px;
    margin-bottom    :       15px;
}


.service-card p {
   color    :    #666;
    line-height: 1.8;
}

.image-section-alt {
	 max-width     :     1200px;
    margin: 80px auto;
    padding: 0 20px;
  display: grid;
   grid-template-columns: 1fr 1fr;
   gap:       50px;
  align-items: center;
	
}

.section-image {
  width: 100%;
  height: auto;
	border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);


}

.image-text h2 {
   font-size: 36px;
  margin-bottom: 20px;
	color: #1a252f;
	
}

.image-text p {
  color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
  font-size  :      16px;
}

.features-section {
   max-width: 1200px;
    margin: 80px auto;
    padding    :       0 20px;
}

.features-section h2 {
  font-size: 40px;
	text-align: center;
   margin-bottom: 50px;
	color: #1a252f;
}

.features-list {
	display: grid;
  grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.feature-item {
   padding: 30px;
  background: linear-gradient(135deg, #f5f7fa 0%, #fff 100%);
    border-radius: 8px;
   border: 1px solid #e8ecf1;
}

.feature-number

{
   font-size: 32px;
    font-weight: 700;
   color: #3498db;
  margin-bottom: 15px;
	
}

.feature-item h3 {

	   color: #2c3e50;

   margin-bottom: 12px;

   font-size: 22px;

}  

.feature-item p{
    color: #666;
    line-height: 1.7;
}

.image-section 
 {
  grid-template-columns   :        1fr 1fr;
	align-items: center;
   gap: 50px;
  padding: 0 20px;
   max-width: 1200px;
   display: grid;
  margin: 80px auto;
}


.cta-section {
   max-width: 1200px;
	 margin: 80px auto;
	 padding: 50px 40px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
 border-radius: 10px;
  text-align     :   center;
  color: white;
}

.cta-content h2  
  {

	     margin-bottom  :   20px;
	font-size: 36px;


}

.cta-content p {
                    font-size: 18px;
  margin-bottom    :     30px;
   opacity: 0.95;
}

.cta-button-alt {
   display: inline-block;
  padding: 16px 35px;
    background: white;
	color: #2980b9;
    text-decoration: none;
    border-radius: 6px;
   font-weight: 600;
   font-size: 16px;
  transition  :       all 0.3s ease;
}

.cta-button-alt:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.workshop-section {
	max-width: 1200px; 
   margin: 80px auto; 
    padding     : 0 20px;
}

.workshop-section h2 {


  font-size: 40px;
    text-align   :        center;
   margin-bottom: 50px;
  color: #1a252f;}

.events-grid {
	display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}



.event-card {
      background: white;
   padding: 30px;
   border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	transition: all 0.3s ease;
  display: flex;
   flex-direction: column;
}

.event-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.event-card h3 {

	    font-size: 20px;
	margin-bottom: 15px;
   color: #2c3e50;

}

.event-card p    {
  color: #666;
   line-height: 1.7;
       flex-grow: 1;
    margin-bottom: 15px; 

}

.event-type {

    display: inline-block;

  padding: 6px 12px;

    background: #e8f4f8;

    color: #2980b9;

    border-radius: 20px;

  font-size: 13px;

    font-weight: 600;

  align-self:   flex-start;
     }

.contact-section {
   max-width: 700px;
    margin :80px auto;
	 padding: 0 20px;
}


.contact-section h2 {
   font-size: 40px;
   text-align: center;
  margin-bottom: 15px;
    color: #1a252f;
}

.contact-intro {
	    text-align: center;

	  color:     #666;

	    margin-bottom: 40px;

	         font-size :    16px; 
}

.contact-form {

      background: white;

    padding: 40px;

   border-radius: 8px;

  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
        display: block;
  margin-bottom: 8px;
  font-weight: 600;
   color: #2c3e50;
    font-size: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea
	{
	    width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size:  14px;
   transition: all 0.3s ease;
	}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
	border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-button {
   width:   100%;
         padding: 14px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
  border: none;
	border-radius :6px;
    font-size: 16px;
    font-weight:       600;
  cursor: pointer;
   transition: all 0.3s ease;
}

.form-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

.main-footer {
  background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
          color: white;
    margin-top: 100px;
	padding: 60px 20px 30px;
}

.footer-content {
  max-width:        1200px;
   margin: 0 auto;
    display  :  grid;
  grid-template-columns: repeat(4, 1fr);
	 gap: 40px;
   margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom     :  20px;
    color: #ecf0f1;
}

.footer-logo {
    height: 50px; 
   width: auto; 
  filter: brightness(0) invert(1);
}

.footer-section ul {
   list-style: none;
}

.footer-section ul li {
  margin-bottom    :     12px;
}

.footer-section a {

	   text-decoration :     none;
  transition  :        color 0.3s ease;
   color: #bdc3c7;
	}

.footer-section a:hover {
   color   : #3498db;
}

.footer-contact	{
      color: #bdc3c7;

	  line-height: 1.8;

	    margin-bottom  :  15px;

	   font-size   :    14px;}

.footer-section p {
    color: #bdc3c7;
                    font-size: 14px;
    line-height: 1.7;
}

.footer-bottom {

	  max-width:     1200px;
  margin: 0 auto;
  padding-top:    30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
 text-align: center;
  color: #95a5a6;
	font-size: 14px;
	}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: white;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        max-height: 300px;
    }

    .nav-links li {
        padding: 15px 20px;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-links a::after {
        display: none;
    }

    .hero-section {
        grid-template-columns: 1fr;
        margin: 40px auto;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .image-section-alt,
    .image-section {
        grid-template-columns: 1fr;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-section {
        padding: 40px 30px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .contact-form {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 24px;
    }

    .services-preview h2,
    .workshop-section h2,
    .contact-section h2,
    .features-section h2 {
        font-size: 28px;
    }

    .cta-button,
    .cta-button-alt,
    .form-button {
        font-size: 14px;
        padding: 12px 25px;
    }

    .nav-container {
        height: 60px;
    }

    .nav-logo img {
        height: 35px;
    }

    .hero-subtitle {
        font-size: 16px;
    }
}.services-hero {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
   color   :   white;
 padding: 80px 20px;
       text-align: center;
   margin-top     :        0;
}

.services-hero-content h1 {
   margin-bottom: 20px;
   font-size: 48px;
   font-weight: 700;
}

.services-hero-content p {
  font-size: 20px;
    opacity: 0.95;
	max-width: 600px;
      margin  : 0 auto;
}

.service-detail-section {
   max-width: 1200px;
  margin: 70px auto;
   padding: 0 20px;
    display :    grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.service-detail-reverse   {
	grid-template-columns  : 1fr 1fr;
	direction: rtl;
}

.service-detail-reverse > * {
  direction: ltr; 

}

.service-detail-container {
    padding: 20px;
}

.service-detail-text h2 {
   font-size: 36px;
  margin-bottom: 20px;
  color: #1a252f;
    font-weight: 700;
}

.service-detail-text h3 {
    margin    :     25px 0 15px;
    color   :       #2c3e50;
	font-size: 20px;
  font-weight: 600;
}


.service-detail-text p {

	  color: #666;
        line-height   :1.8;
  margin-bottom: 15px;
   font-size: 16px;


}

.service-list {
	list-style: none;
				 margin: 20px 0;
	 padding: 0;
	
}

.service-list li {
    padding: 10px 0 10px 30px;
		position:    relative;
	    color :   #555;
	   line-height    :      1.7;
}

.service-list li::before {
	  content: '✓';
   position: absolute;
     left :        0;
	 color: #3498db;
   font-weight   : bold;
	 font-size: 18px;
	} 

.service-highlight {
  background: #e8f4f8;
	   padding: 20px;
	  border-radius: 8px;
	    border-left: 4px solid #3498db;
	   margin    :20px 0;
		 color: #2c3e50;
	    font-style: italic;


}

.service-image {
   width: 100%;
    height   : auto;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.pricing-section   {

	  padding: 0 20px;
    margin: 80px auto;
   max-width: 1200px;

}

.pricing-section h2 {
    font-size     :40px;
    text-align  :  center;
  margin-bottom: 50px;
    color  :      #1a252f;
	
}

.pricing-grid {
  display   : grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pricing-card {
  background: white;
   border-radius: 10px;
    padding: 40px 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	 transition: all 0.3s ease;
         border: 2px solid #f0f0f0;
    position: relative;
}

.pricing-card:hover


{

  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);

}

.pricing-card-featured {
    border-color: #3498db;
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.2);
  transform: scale(1.05);
}

.featured-badge {
	  position: absolute;
               top: -15px;
    left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
    padding: 6px 16px;
   border-radius: 20px;
  font-size: 12px;
  font-weight: 700;

}

.pricing-header h3 {
  font-size: 24px;
  margin-bottom: 10px;
    color: #2c3e50;
}

.pricing-header .price {

	   color: #999;
   font-size: 14px; 
	

}

.pricing-features {
   list-style: none;
   margin:  30px 0;
    padding: 0;
}

.pricing-features li {
    padding: 12px 0;
   border-bottom    :   1px solid #f0f0f0;
  color: #666;
    font-size: 15px;
   line-height: 1.6;
}

.pricing-features li:last-child   {
  border-bottom: none;
}

.pricing-button {
  width: 100%;
   padding: 14px;
    margin-top: 25px;
   border: 2px solid #3498db;
  background: white;
    color   :   #3498db;
   border-radius: 6px;
    font-weight: 600;
   cursor: pointer;
    transition  :all 0.3s ease;
       font-size: 15px;
}

.pricing-button:hover {
   background: #f0f8ff;
  transform: translateY(-2px);
}

.pricing-button-primary {
  background: linear-gradient(135deg, #3498db, #2980b9);
	color: white;
    border: none;
}


.pricing-button-primary:hover		{
  background: linear-gradient(135deg, #2980b9, #1f5a8f);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

.process-section {
  max-width   :  1200px;
	margin     :  80px auto;
   padding     :   0 20px;
}

.process-section h2 {


  font-size:      40px;
    text-align: center;
   margin-bottom: 50px;
  color: #1a252f;

}

.process-steps {
    display: grid;
  grid-template-columns: repeat(5, 1fr);
   gap: 20px;
}

.step-item


{
  background: white;
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	text-align: center;
    transition: all 0.3s ease;
}

.step-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.step-number {
   width   :  50px;
  height: 50px;
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
	border-radius: 50%;
   display: flex;
   align-items: center;
  justify-content: center;
  font-size   :        24px;
   font-weight: 700;
  margin: 0 auto 20px;
}

.step-item h3 {
       color: #2c3e50;
   margin-bottom: 15px;
    font-size :18px; 

}  

.step-item p {
  color: #666;
  font-size :     14px;
          line-height: 1.7;
}

.faq-section


{
    max-width :        900px;
    margin: 80px auto;
  padding: 0 20px;
}

.faq-section h2 {

	   font-size     :40px;
    text-align: center;
   margin-bottom: 50px;
  color: #1a252f;


}

.faq-container {

    background: white;
   border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
          overflow     : hidden;
	}

.faq-item		{
   border-bottom: 1px solid #f0f0f0;
    -o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.faq-item:last-child {

	 border-bottom:       none;
	


}

.faq-question   {
   padding: 20px;
   cursor :    pointer;
	display :flex;
  justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover		{
    background: #f8f9fa;}

.faq-question h3 {
   font-size: 16px;
   color: #2c3e50;
    margin    :        0;
   flex-grow: 1;
}

.faq-toggle {
  font-size: 24px;
 color: #3498db;
    font-weight: 300;
   transition     :   transform 0.3s ease;
}

.faq-item.active .faq-toggle
	{
  transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 20px 20px;
  color: #666;
	line-height    :       1.8;
   font-size: 15px;
}

.faq-item.active .faq-answer {
    display: block;
}

.thankyou-section {

		padding: 0 20px 60px;

                    max-width: 900px;

  margin: 80px auto;
	}

.thankyou-container {
    background: white;
   border-radius: 10px;
    padding: 50px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
   text-align   :  center;
}

.thankyou-icon {
   margin-bottom   : 30px;
}

.thankyou-icon svg  
  {
  -webkit-animation: scaleIn 0.5s ease;
   animation: scaleIn 0.5s ease;
}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-section h1 {
	        font-size: 42px; 
	  color: #1a252f; 
	         margin-bottom: 15px; 
	    font-weight: 700;
	}

.thankyou-message {
   font-size  :     18px;
  color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
  max-width: 700px;
    margin-left: auto;
  margin-right: auto;
	
}

.thankyou-content {
   display: grid;
    gap :       30px;
    text-align: left;
   margin: 40px 0;
  grid-template-columns: 1fr 1fr;
}

.thankyou-box {
	 background  :      #f8f9fa;
    padding: 30px;
	border-radius :    8px;
   border-left  :4px solid #3498db;


}

.thankyou-box h2
{
 font-size: 22px;
  color   :    #2c3e50;
    margin-bottom: 20px;
}
	/* Responsive design */
.next-steps {


  list-style: none;
    padding: 0;
   margin: 0;


}

.next-steps li {
    margin-bottom: 20px;
    padding-bottom: 20px;
   border-bottom: 1px solid #ddd; 

}

/* Performance critical */


/* Cross-browser fix */

.next-steps li:last-child {
  border-bottom  :    none;
  margin-bottom: 0;
   padding-bottom: 0;
}

.next-steps strong {
   display: block;
	font-size: 15px;
  color: #2c3e50;
               margin-bottom: 8px;
}

.next-steps p {
  margin: 0;
       font-size: 14px;
   color:      #666;
        line-height: 1.6;
}
/* Cross-browser fix */

	/* Cross-browser fix */


.recommendations{


    list-style    :   none;
    padding: 0;
	 margin: 0;




}

.recommendations li {
   font-size: 14px;
   color    :       #666;
    line-height: 1.6;
   padding: 12px 0 12px 25px;
   position: relative;
}

.recommendations li::before {
   position:       absolute;
    color: #3498db;
   left: 0;
      font-weight: bold;
   font-size: 16px;
  content: '•';
}

.thankyou-info {
   background: #e8f4f8;
	-webkit-border-radius: 8px;
	 padding: 25px;
  -moz-border-radius  :   8px;
	 border-radius: 8px;
    margin: 40px 0;
}

/* Minified version */

.thankyou-info p {
    color: #2c3e50;
    margin: 10px 0;
    font-size   :  15px;
}

.contact-number {
	    font-size: 24px;
   font-weight: 700;
	color: #3498db;


}

.contact-hours {
 margin-top   :  10px;
  font-size: 14px;
    color: #666;
}
/* Layout styles */


/* Animation and transitions */



.thankyou-actions {
    display: flex;
  gap: 20px;
   justify-content: center;
                    margin-top: 40px;
    flex-wrap   :    wrap;
}

.action-button {
    display: inline-block;
    padding: 14px 32px;
  background: linear-gradient(135deg, #3498db, #2980b9);
	color: white;
    text-decoration:      none;
 border-radius: 6px;
  font-weight: 600;
                    transition: all 0.3s ease;
		font-size :   15px;
}

.action-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

.action-button-secondary {
               background: white;
   color: #3498db;
    border: 2px solid #3498db;
}

.action-button-secondary:hover {
	       background: #f0f8ff;
     }

.trust-section {
    max-width  :       1200px;
	 margin: 80px auto;
  padding: 0 20px 60px;
}

/* Build system output */

.trust-section h2 {

    font-size: 40px;

	  text-align: center;

	   margin-bottom: 50px;

	  color: #1a252f;


}

/* Debug styles */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;

}

.trust-item {
	background: white;
   padding: 35px 25px;
    border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  text-align: center;
   transition: all 0.3s ease;
}

.trust-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); 
	  transform: translateY(-5px);
}

.trust-number {
    font-size: 40px;
    font-weight: 700;
  color: #3498db;
  margin-bottom: 10px;
}


.trust-item h3 {
   color  :#2c3e50;
    margin-bottom: 15px;
   font-size   :   18px;
}

.trust-item p {


               color: #666;
		 font-size: 14px;
                    line-height  :   1.6;
	} 
@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 32px;
    }

    .service-detail-section,
    .service-detail-reverse {
        grid-template-columns: 1fr;
    }

    .service-detail-reverse {
        direction: ltr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card-featured {
        transform: scale(1);
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .thankyou-content {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .action-button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 24px;
    }

    .service-detail-text h2 {
        font-size: 24px;
    }

    .pricing-section h2,
    .process-section h2,
    .faq-section h2,
    .trust-section h2 {
        font-size: 28px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-container {
        padding: 30px 20px;
    }

    .thankyou-section h1 {
        font-size: 28px;
    }

    .faq-question h3 {
        font-size: 14px;
    }
}.policy-section {
  padding: 80px 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  min-height: calc(100vh - 300px);
	
}


.policy-container {
   max-width: 850px;
   margin: 0 auto;
        text-align: left;
    background: white;
  padding: 50px 40px;
        border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.policy-container h1 {
   font-size: 42px;
    color: #1a252f;
    margin-bottom: 40px;
    font-weight: 700;
}

.policy-container h2    {
   font-size: 28px;
   color: #2c3e50;
   margin-top: 35px;
    margin-bottom: 20px;
    font-weight: 600;
	 border-bottom: 3px solid #3498db;
  padding-bottom: 10px;
}


.policy-container p {
	 color: #555;
	margin-bottom:     18px;
   line-height :      1.8;
  font-size: 16px; 
	
}

.policy-container strong


{
    font-weight: 600;
   color: #2c3e50;
}

.policy-container > h2:first-of-type {
    margin-top: 0;
}

.policy-container p:has(+ h2) {
     margin-bottom: 25px;
}@media (max-width: 768px) {
    .policy-section {
        padding: 60px 1rem;
        min-height: calc(100vh - 250px);
    }

    .policy-container {
        padding: 35px 25px;
        max-width: 100%;
    }

    .policy-container h1 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .policy-container h2 {
        font-size: 22px;
        margin-top: 28px;
        margin-bottom: 16px;
    }

    .policy-container p {
        font-size: 15px;
        margin-bottom: 16px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 40px 1rem;
    }

    .policy-container {
        padding: 25px 16px;
        border-radius: 6px;
    }

    .policy-container h1 {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .policy-container h2 {
        font-size: 18px;
        margin-top: 22px;
        margin-bottom: 14px;
    }

    .policy-container p {
        font-size: 14px;
        margin-bottom: 14px;
        line-height: 1.6;
    }
}

@media print {
    .main-navigation,
    .main-footer {
        display: none;
    }

    .policy-section {
        padding: 0;
        background: white;
    }

    .policy-container {
        box-shadow: none;
        padding: 0;
    }
}