* {
        margin:  0;
	 padding: 0;
  box-sizing: border-box;}

html {
   scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    color: #2c3e50;
   background: #ffffff;
    line-height: 1.6;
}

.navbar {
	  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding :       0;
   position: sticky;
   top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
     }

.nav-container {
   max-width: 1200px;
   margin     :    0 auto;
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 15px 20px;
}

.nav-brand {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
    -webkit-flex: 0 0 auto;
}

.logo-img

{


    height: 40px;
    width: auto;
  display:     block;
	}

.nav-links {


    display: flex;
	list-style: none;
    gap: 30px;

}

.nav-links a  
  {
   transition: color 0.3s ease;
      font-weight: 500;
    position: relative;
          color: #ffffff;
          text-decoration: none;
}

.nav-links a:after {
  content: '';
    position: absolute;
      bottom: -5px;
  left: 0;
  width: 0;
     height     :      2px;
  background :   #00d4ff;
   transition: width 0.3s ease;
}

.nav-links a:hover {
	color: #00d4ff;
}

.nav-links a:hover:after {
        width: 100%;
}

.burger-menu
	{
  display: none;
   flex-direction: column;
  background: none;
  border: none;
   cursor: pointer;
   gap: 6px;
}

.burger-menu span {
  width: 25px; 
	   height: 3px; 
	    background: #ffffff; 
	    border-radius   :       2px; 
	  transition: all 0.3s ease;
	
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.burger-menu.active span:nth-child(2) {
   opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -8px);
}

.hero-zone {
	 display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
   align-items: center;
  padding: 80px 20px;
   max-width: 1200px;
   margin: 0 auto;
}

.hero-content h1 {
	font-size     :  48px;
  font-weight: 700;
  line-height: 1.2;
         margin-bottom: 20px;
   color : #1a1a2e;
}

.hero-subtitle {
  font-size: 18px;
   color  :#555;
   margin-bottom: 30px;
    line-height :     1.8;
}

.cta-primary {
   display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  padding: 15px 40px;
    border-radius: 8px;
  text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.hero-image		{
   width: 100%;
	 height  :     auto;
     border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	
}

.section-wrapper  
  {
    max-width: 1200px;
    margin     :       0 auto;
 padding: 0 20px;
}

.expertise-section,
.services-preview,
.features-zone {
   padding:     80px 20px;
}

.expertise-section {
  background: #f8f9fa;
}

.services-preview {
    background: #ffffff;
}

.features-zone {
   background: #f8f9fa;
}

.expertise-section h2,
.services-preview h2,
.features-zone h2,
.contact-section h2,
.cta-conversion h2 {
	 font-size: 42px;
    font-weight  :  700;
	 margin-bottom: 50px;
   text-align: center;
  color: #1a1a2e; 

}

.expertise-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 30px;
}

.expertise-card  
  {
  background: white; 
   padding: 30px; 
         border-radius: 12px; 
   text-align: center; 
  transition: all 0.3s ease; 
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.expertise-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);


}

.expertise-icon  {
   margin-bottom: 20px;
}

.svg-icon   {

	    width: 48px;
  height: 48px;
  stroke: #667eea;
  fill: none;
    stroke-width   :      2;
      stroke-linecap: round;
    stroke-linejoin  : round;
  transition   :      all 0.3s ease;
     }

.expertise-card:hover .svg-icon {
    stroke  :      #764ba2;
  filter: drop-shadow(0 0 8px rgba(118, 75, 162, 0.3));
  transform: scale(1.1);
}

.expertise-card h3 {
   font-size     :      22px;
   margin-bottom:     15px;
    color: #1a1a2e;
}

.expertise-card p 
 {
    color: #666;
        font-size:     15px;
}

.services-showcase {
	display: flex;
   flex-direction    :   column;
   gap :      60px;
}

.service-block
	{
       display:    grid;
  grid-template-columns: 1fr 1fr;
   gap: 40px;
    align-items: center;
     }

.service-block.reverse-layout {
  direction: rtl;
}

.service-block.reverse-layout > * {

  direction: ltr;

}

.service-image   {
  width: 100%;
   height: auto;
   border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);

}

.service-info h3
	{
  font-size: 32px;
    margin-bottom: 15px;
               color :     #1a1a2e;
}

.service-info p {
   font-size: 16px;
    color: #555;
   line-height: 1.8;
}

.features-list		{
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-item {


    display: flex;
       gap: 20px;
       background: white;
   	 padding: 25px;
       border-radius     :10px;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	}

.feature-marker {
    flex     :      0 0 40px; 
	width  :40px; 
   height: 40px; 
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
    color     :        white; 
   border-radius: 50%; 
   display: flex; 
   align-items:   center; 
  justify-content    :        center; 
    font-weight: 700; 
    font-size: 20px;
}

.feature-body h4  
  {


  margin-bottom: 8px;
    color: #1a1a2e;
         font-size: 18px;
     }

.feature-body p {
    color: #666;
    font-size     :   14px;
}

.cta-conversion {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
	         padding: 80px 20px; 
		text-align   :       center; 
		 color    :        white;
}

.cta-wrapper h2 {
   font-size: 42px;

  color: white;

  margin-bottom: 20px;
}

.cta-wrapper p {
    font-size: 18px;
   margin-bottom: 30px;
	max-width: 600px;
	margin-left  :     auto;
   margin-right: auto;
    line-height: 1.8;
}

.cta-button
{
	   display: inline-block;
    background: white;
  color: #667eea;
   padding: 15px 40px;
   border-radius: 8px;
  text-decoration :        none;
    font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); 


}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: #f0f0f0;
}



.contact-section {
  padding: 80px 20px;
    background: white;
}

.contact-layout	{
   display: grid;
  grid-template-columns: 1fr 1fr;
    gap    :      50px;
          margin-top: 40px;
}

.contact-info h3  
  {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a2e;
    margin-top: 0;
}  

.contact-info p {
          color: #555;
  font-size: 16px;
    line-height :        1.8;
	}

.contact-info a {
	   color: #667eea;
  text-decoration   :      none;
	 font-weight    :      600;
  transition: color 0.3s ease;}

.contact-info a:hover {
  color: #764ba2;
}

.contact-form {
  display: flex;
	flex-direction: column;
   gap: 20px;
}

.form-group  
  {
  display:   flex;
   flex-direction: column;
}

.form-group label {
	font-weight: 600;
	margin-bottom   :  8px;
    color: #1a1a2e;
   font-size: 14px;

}

.form-group input,
.form-group select,
.form-group textarea    {
	padding: 12px 15px;
   border: 2px solid #e0e0e0;
  border-radius: 6px;
	font-size: 14px;
  font-family  :    inherit;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline:       none; 
	   border-color: #667eea; 
	  background     :white; 
	  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1); 
	
}

.form-group textarea {
  resize: vertical;
	min-height   :    120px;
} 

.form-submit {
    padding: 15px 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
   border: none;
    border-radius     :        6px;
    font-weight: 600;
	cursor :       pointer;
  transition: all 0.3s ease;
                    font-size: 16px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.form-submit:hover {

	  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);


}

.form-submit:active {
  transform: translateY(0);
  -ms-transform: translateY(0);
  -moz-transform: translateY(0);
}

.page-footer {
  background: #1a1a2e;
  color: #ecf0f1;
  padding: 60px 20px 20px;
}

.footer-container 
 {
   max-width:       1200px;
   margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
  margin-bottom: 40px;
}

.footer-block h4 {
    font-size     :        18px;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-block ul {
         list-style    :   none;
}

.footer-block ul li {
    margin-bottom: 12px;
}

.footer-block a {
    color: #bdc3c7;
  text-decoration: none;
    transition: color 0.3s ease;
}

.footer-block a:hover {
    color: #00d4ff;
}

.footer-block p {
   		color: #bdc3c7;
		 line-height: 1.8;
  font-size: 14px;

}

.footer-logo {
  height: 50px;
	width  :     auto;
   display: block;
}

.footer-bottom {
  text-align: center;
    padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #95a5a6;
  font-size: 14px;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0f3460;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-links.active {
        max-height: 500px;
    }

    .nav-links li {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links a:after {
        display: none;
    }

    .hero-zone {
        grid-template-columns: 1fr;
        padding: 50px 20px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .expertise-section h2,
    .services-preview h2,
    .features-zone h2,
    .contact-section h2,
    .cta-conversion h2 {
        font-size: 32px;
    }

    .service-block,
    .service-block.reverse-layout {
        grid-template-columns: 1fr;
        gap: 20px;
        direction: ltr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-container {
        gap: 30px;
    }

    .cta-conversion,
    .expertise-section,
    .services-preview,
    .features-zone,
    .contact-section {
        padding: 50px 20px;
    }
}@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .service-info h3 {
        font-size: 24px;
    }

    .expertise-section h2,
    .services-preview h2,
    .features-zone h2,
    .contact-section h2,
    .cta-conversion h2 {
        font-size: 26px;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
         color: white;
 padding: 100px 20px;
   text-align: center;
}

.services-hero-content h1 {
       font-size: 48px;
    font-weight: 700;
  margin-bottom    :        20px;
  line-height: 1.2;
}

.services-hero-content p {
     font-size: 20px;
	  line-height: 1.8;
	  max-width: 700px;
	  margin: 0 auto;
}

.services-main {
   padding: 80px 20px;
  background: #ffffff;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
         gap    :   50px;
      max-width: 1200px;
  margin: 0 auto;
}

.service-detailed-card {


    display     :  grid;
  grid-template-columns: 1fr 1fr;
   gap: 40px;
 align-items: center;
  background: #f8f9fa;
  border-radius: 12px;
  overflow  :    hidden;
    transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);}

.service-detailed-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
	
} 

.service-card-image {
    overflow: hidden;
  height: 100%;
    min-height     : 400px;
}

.service-card-img		{
    width: 100%;
  height: 100%;
   object-fit: cover;
   transition: transform 0.3s ease;
}

.service-detailed-card:hover .service-card-img {


  transform: scale(1.05);


}

.service-card-content {
  padding: 40px;
	
}

.service-card-content h2 {


    font-size: 32px;

    margin-bottom: 15px;

	 color: #1a1a2e;
}

.service-intro {
                    font-size :      16px;
    color: #667eea;
  font-weight: 600;
    margin-bottom: 25px;
}

.service-features-list


{
  list-style: none;
  margin-bottom: 30px;
}

.service-features-list li {
  padding:        10px 0;
    color: #555;
  font-size: 15px;
  padding-left: 25px;
   position: relative;
}

.service-features-list li:before {
  content: '';
    position: absolute;
   left: 0;
  top     :      50%;
  transform: translateY(-50%);
   width: 6px;
    height: 6px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   border-radius: 50%;
}

.service-details {
   display: flex;
    gap: 20px;
          flex-wrap: wrap;
}

.service-duration,
.service-format  {
   background: white;
  padding: 8px 15px;
         border-radius   :  20px;
  font-size: 13px;
   font-weight: 600;
    color :#667eea;
    border: 1px solid #e0e0e0;
}

.pricing-overview {
    padding: 80px 20px;
  background: #f8f9fa;
}

.pricing-overview h2 {

  font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
	 text-align:  center;
  color: #1a1a2e;
	}



.pricing-cards {
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
   max-width: 1200px;
  margin: 0 auto;
}

.pricing-item {
   background: white;
    padding: 40px 30px;
   border-radius: 12px;
				 text-align     :    center;
	transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #e0e0e0;
}

.pricing-item.starter {
    border-top-color: #3498db;

}

.pricing-item.professional {
   border-top-color: #667eea;

	  transform: translateY(-10px);
} 

.pricing-item.ultimate

{


  border-top-color: #764ba2;
}

.pricing-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-15px);
} 

.pricing-item h3 {
	   font-size: 24px;
   margin-bottom: 15px;
    color: #1a1a2e; 
	


}

.pricing-value {
		 font-size: 48px; 
	 font-weight: 700; 
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
	  background-clip   :       text; 
	    margin: 20px 0;
}

.pricing-desc {
    color: #999;
  font-size: 14px;
   margin-bottom: 25px;

}

.pricing-features {

    list-style: none;
    text-align: left;


}

.pricing-features li {
  padding: 12px 0;
   color: #666;
  font-size: 14px;
  border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:last-child     {
  border-bottom: none;
}

.faq-section

{
		padding: 80px 20px;
   background  :    #ffffff;
}

.faq-section h2 {
    font-size: 42px;
   font-weight: 700;
    margin-bottom    :        50px;
  text-align: center;
   color :#1a1a2e;
}

.faq-container {
  max-width: 800px;

	margin: 0 auto;
}

.faq-item {
	margin-bottom: 20px;
  border-radius   :  8px;
  overflow: hidden;
    background: #f8f9fa;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question		{

   display: flex;
  justify-content: space-between;
                    align-items: center;
  padding   :    25px;
    cursor: pointer;
   transition: all 0.3s ease;
    background: #f8f9fa;
	}

.faq-question:hover {
   background: #eef2ff;


}

.faq-question h3 {

   font-size: 18px;
      color: #1a1a2e;
    margin: 0;
   text-align   :   left;

	}

.faq-toggle  
  {
  font-size  :      28px;
      color     :        #667eea;
  font-weight: 300;
   transition: transform 0.3s ease;
    flex-shrink: 0;
  margin-left: 20px;
}

.faq-item.active .faq-toggle 
 {

	  transform: rotate(45deg);}

.faq-answer {
  display    :   none;
   color: #555;
  font-size     :       15px;
	line-height   :    1.8;
  padding: 0 25px 25px;
  background: white;
}

.faq-item.active .faq-answer {
  display: block;
}

.cta-services {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	padding: 80px 20px;
    text-align: center;
	color: white;
     }

.cta-services .cta-wrapper h2  
  {
  color: white;
   font-size: 42px;
    margin-bottom    :      20px;
}

.cta-services .cta-wrapper p {
         font-size: 18px;
    margin-bottom: 30px;
   line-height: 1.8;
}

.cta-button-services   {
   display: inline-block;
    background: white;
          color: #667eea;
  padding  :       15px 40px;
	 border-radius: 8px;
   text-decoration     :none;
          font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button-services:hover  {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
   background   :   #f0f0f0;
}

.thankyou-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
         padding  :        100px 20px;
   text-align: center;
   color: white;
}

.thankyou-container {
   max-width: 600px;
       margin: 0 auto;
}

.thankyou-icon {
   margin-bottom: 30px;
   color: white;
}

.thankyou-icon svg {
  animation     : checkmark-animation 0.6s ease-out;
}@keyframes checkmark-animation {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}.thankyou-hero h1 {
  font-size: 48px;
  font-weight: 700;
   margin-bottom: 20px;
  line-height: 1.2;
}

.thankyou-subtitle	{
    font-size: 20px;
	line-height: 1.8;


}

.thankyou-content {
          background: #ffffff;
	 padding: 80px 20px;
}

.thankyou-info-grid {
       display:   grid;
	grid-template-columns: 1fr 1fr;
  gap     :       50px;
    max-width:      1200px;
   margin:      0 auto;

}

.thankyou-info-block h2 {
                    font-size:32px;
        margin-bottom: 30px;
    color: #1a1a2e;
}

.steps-timeline {
    display: flex;
  flex-direction: column;
   gap: 25px;
}

.timeline-step {
	   display: grid;
      grid-template-columns   :     60px 1fr;
    gap: 20px;
    align-items: flex-start;
     }

.step-number {
		 width: 60px;
   	height: 60px;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
       color: white;
             border-radius: 50%;
       display: flex;
     align-items: center;
       justify-content    :      center;
       font-weight  :  700;
   	 font-size: 22px;
          flex-shrink: 0;

}

.step-content h3 {
  font-size: 18px;
    margin-bottom: 8px;
  color: #1a1a2e;
}

.step-content p {
       color: #666;
   font-size: 14px;
   line-height  :       1.6;
	}

.info-cards {
 display: grid;
	grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.info-card {
   background   :  #f8f9fa; 
	  padding: 25px; 
	  border-radius: 10px; 
	   text-align: center; 
	    transition: all 0.3s ease;
}

.info-card:hover {
  background: #eef2ff;
  transform: translateY(-5px);
}

.info-icon {
   margin-bottom: 15px;
  height: 40px;
  display :   flex;
	justify-content: center;
   align-items :      center;
}

.small-svg {
   width: 40px;
  height: 40px;
    stroke     :     #667eea;
    fill     :       none;
  stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.info-card h3


{
    font-size: 16px;
    margin-bottom: 8px;
  color    :      #1a1a2e;
}

.info-card p {
  color: #666;
   font-size: 13px;
	line-height: 1.6;
}

.thankyou-faq {
   padding: 80px 20px;
     background: #f8f9fa;

}

.thankyou-faq h2 {
    font-size: 42px;
  font-weight  :      700;
    margin-bottom: 50px;
    text-align: center;
   color: #1a1a2e;
} 

.prep-tips {
       display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      max-width   :      1200px;
       margin    :     0 auto;
}

.prep-tip
	{
  background: white;
  padding: 30px;
    border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.prep-tip:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.prep-tip h3 {
    font-size: 18px;

   margin-bottom: 12px;

    color    : #1a1a2e;
}

.prep-tip p {
	color: #666;
    font-size: 14px;
    line-height  :        1.6;
}

.thankyou-cta {


  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 20px;
  text-align: center;
    color: white;
     }

.thankyou-cta .cta-wrapper h2 {
	 color: white;
    font-size: 42px;
   margin-bottom: 20px;
}

.thankyou-cta .cta-wrapper p {

	font-size: 18px;
   margin-bottom: 40px;
   line-height: 1.8;

}

.thankyou-cta-buttons {
    display     : flex;
               gap: 20px;
    justify-content: center;
     flex-wrap  :  wrap;
}

.btn-primary,
.btn-secondary {


               padding: 15px 35px;
   border-radius: 8px;
    text-decoration: none;
  font-weight: 600;
   transition: all 0.3s ease;
    display  :        inline-block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
     }

.btn-primary {


   background: white; 
	 color: #667eea;
     }

.btn-primary:hover {
       background: #f0f0f0;
  transform: translateY(-2px);


}

.btn-secondary {

	  background: rgba(255, 255, 255, 0.2);
   color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}@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: 0;
    }

    .service-card-image {
        min-height: 300px;
    }

    .service-card-content {
        padding: 30px;
    }

    .service-card-content h2 {
        font-size: 24px;
    }

    .thankyou-info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }

    .thankyou-cta-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .faq-question h3 {
        font-size: 16px;
    }

    .pricing-overview h2,
    .thankyou-faq h2,
    .thankyou-cta .cta-wrapper h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 24px;
    }

    .service-details {
        flex-direction: column;
        gap: 10px;
    }

    .pricing-value {
        font-size: 36px;
    }

    .timeline-step {
        grid-template-columns: 50px 1fr;
        gap: 15px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .step-content h3 {
        font-size: 16px;
    }

    .step-content p {
        font-size: 13px;
    }
}.policySection {


   padding :        80px 2rem;
      background: #f8f9fa;
     min-height: calc(100vh - 200px);
	}

.policyContainer {
	  max-width:  800px;
       margin: 0 auto;
    text-align: left;

}

.policyContainer h1 {
    font-size:3rem;
	color : #1a1a2e;
  margin-bottom: 40px;
                    font-weight: 700;
    line-height: 1.2;
}


.policyContainer h2 {
  font-size: 2.5rem;
  color   :     #2c3e50;
	margin-bottom: 20px;
    margin-top: 40px;
  font-weight: 700;
  line-height: 1.3;
}


.policyContainer p {
    color:       #555;
          margin-bottom :     1.5rem;
  line-height: 1.8;
  font-size: 1.1rem;
}

.policyContainer strong


{
   color: #1a1a2e;
          font-weight: 600;
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1.5rem;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .policyContainer h2 {
        font-size: 1.8rem;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .policyContainer p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 50px 1rem;
    }

    .policyContainer h1 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .policyContainer h2 {
        font-size: 1.3rem;
        margin-top: 25px;
        margin-bottom: 12px;
    }

    .policyContainer p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }
}