* {
   margin: 0;

	   padding: 0;

	   box-sizing: border-box; 

}

body  
  {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  color:      #2c3e50;
       background: #ffffff;
}

.primary-navigation {

	  background: rgba(255,255,255,0.98);
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
	 position: sticky;
  top: 0;
    z-index: 1000;
  padding: 1rem 0;
	}

.nav-wrapper {
    max-width: 1400px;
    margin     :       0 auto;
    padding:     0 2rem;
   display: flex;
   justify-content: space-between;
  align-items  :center;
}

.site-logo {
	    width: auto; 
	    height  :       45px;}

.nav-links {

  display: flex;
      list-style: none;
   gap: 2.5rem;
   align-items: center;
     }

.nav-links a {
   text-decoration: none;
  color: #34495e;
    font-weight: 500;
	 transition :   color .3s;
   font-size: 16px;
}

.nav-links a:hover {
    color: #667eea;
}

.burger-menu     {
   display: none;
   flex-direction: column;
   gap: 5px;
    background  :  none;
  border: none;
    cursor: pointer;
  padding :        8px;
}

.burger-menu span   {
         width: 28px;
   height: 3px;
	background: #34495e;
  border-radius: 3px;
  transition: all 0.3s;
}

.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 {
       display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
   max-width: 1400px;
               margin: 0 auto;
    padding: 5rem 2rem;
	align-items     :       center;

	}

.hero-content h1 {
   font-size: 3.2rem;
   line-height: 1.2;
    color: #1a1a2e;
   margin-bottom: 1.5rem;
   font-weight:     700;
}

.hero-subtitle {
               font-size    :  1.25rem;
       color: #5a6c7d;
    margin-bottom: 2.5rem;
   line-height: 1.7;
}

.hero-cta {
  display: flex;

   flex-wrap: wrap;

   gap     :1.5rem;
}


.btn-primary, .btn-secondary {
  padding: 15px 35px;
  border-radius  :  8px;
  text-decoration: none;
   font-weight: 600;
	transition: all 0.3s;
  display: inline-block;
   font-size: 1rem;


}

.btn-primary {
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	 color: white;



}



.btn-primary:hover {
     transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102,126,234,0.3); 
	
	}

.btn-secondary {
     background: transparent;
   color: #667eea;
    border: 2px solid #667eea;
     }

.btn-secondary:hover {
	  background: #667eea;
   color:       white;
	}

.hero-visual img

{
    width: 100%;
   border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.intro-block

{
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding:     5rem 2rem;
    text-align    :  center;
}

.container-fluid {
    max-width: 900px;
    margin :0 auto;
}

.intro-block h2 {
 font-size: 2.5rem;
   margin-bottom     :        1.5rem;
  color: #2c3e50;
}

.intro-block p {
    font-size    :     1.2rem;
    color   :        #4a5568;
   line-height: 1.8;
}

.features-grid {
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  max-width: 1400px;
       margin :       0 auto;
    padding :       5rem 2rem;
}

.feature-card {
  background: white; 
   border-radius :12px; 
  overflow: hidden; 
  box-shadow: 0 5px 20px rgba(0,0,0,0.08); 
  transition    :   transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}  

.feature-image img {


  width: 100%;
               object-fit    :      cover;
        height   :        250px;

}

.feature-card h3 {
	  padding: 1.5rem 2rem 1rem;
   font-size: 1.5rem;
  color    :      #2c3e50;


     }

.feature-card p {
  padding:  0 2rem 2rem;
        color  :     #5a6c7d;
         line-height: 1.7;
}

.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	 padding: 5rem 2rem;
    text-align: center;
   color: white;
}

.cta-container h2 {
          font-size: 2.8rem;

    margin-bottom   :  1.5rem;
}

.cta-container p {


  font-size: 1.2rem; 
	   margin-bottom: 2.5rem; 
	   max-width: 700px; 
	  margin-left: auto; 
	    margin-right: auto; 
	  opacity: 0.95;
     }

.btn-highlight     {


   background: white; 
    color   :        #667eea; 
               padding: 18px 45px; 
    border-radius: 8px; 
    text-decoration: none; 
  font-weight: 700; 
   display   : inline-block; 
	transition: all 0.3s; 
               font-size: 1.1rem;
	}

.btn-highlight:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.method-section {
  padding: 5rem 2rem;
      max-width: 1400px;
     margin: 0 auto;
}

.method-content {
  display: grid;
  grid-template-columns :     1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.method-text h2
{
	  font-size: 2.5rem;
   margin-bottom  :  1.5rem;
    color  :     #2c3e50;
}

.method-text p {


	margin-bottom: 1.5rem;
	  color: #4a5568;
	    font-size    :        1.1rem;
	      line-height: 1.8;


}

.method-list {


    list-style: none;
   margin-top     :     2rem;




}

.method-list li {

	  padding     :        12px 0 12px 35px;
    position: relative;
   color: #4a5568;
    font-size: 1.05rem;

}

.method-list li:before   {
  content: "→";
  position: absolute;
   left: 0;
   color: #667eea;
  font-weight: bold;
   font-size: 1.3rem;
}

.method-image img{
    width   :     100%;
    border-radius: 12px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}  

.services-overview {
   background: #f8f9fa;
  padding     :      5rem 2rem;
}

.services-header {
    text-align: center;
    margin-bottom    :    4rem;
}

.services-header h2  
  {
   font-size: 2.5rem;
  color: #2c3e50;
    margin-bottom: 1rem;
}

.services-header p {
	 font-size: 1.2rem;
	  color: #5a6c7d; 
	
}

.services-cards {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
         gap: 2.5rem;
	 max-width: 1200px;
  margin: 0 auto;
}

.service-item {
   background: white;
   padding  :     2.5rem;
    border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  transition     :       all 0.3s;
}

.service-item:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.service-item h3 {
   font-size: 1.6rem;
   color: #667eea;
  margin-bottom: 1rem;
}

.service-item p {
  color: #5a6c7d; 
	line-height: 1.7; 
	 margin-bottom: 1.5rem;
}

.service-duration

{
    display: inline-block;
   background: #e8eaf6;
    color: #667eea;
  padding: 8px 16px;
   border-radius: 20px;
  font-size: 0.9rem;
  font-weight :        600;
}

.contact-section {
   padding: 5rem 2rem; 
	  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.contact-wrapper {
  max-width: 1200px;
    margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1.5fr;
   gap: 4rem;
}

.contact-info h2 {
  font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1.1rem;
   color   : #4a5568;
    margin-bottom: 2.5rem;
   line-height: 1.7;
}

.info-details


{
  display: flex;
				 gap: 1.5rem;
   flex-direction  : column;
}

.info-item {
    display: flex;
       align-items: flex-start;
          gap: 1rem;
}

.contact-icon {
    width: 24px;
    height: 24px;
    stroke: #667eea;
    fill: none;
      stroke-width: 2;
  flex-shrink: 0;
}

.info-item span {
  color: #4a5568;
  font-size: 1rem;
   line-height:1.6;
}

.contact-form {
    background: white;
	 padding: 2.5rem;
	border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 1.5rem;}

.form-group label {
    display: block;
          margin-bottom: 0.5rem;
    color: #2c3e50;
   font-weight: 600;
   font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
   width: 100%;
  padding: 12px 15px;
    -webkit-border-radius     :  6px;
   border    :   2px solid #e0e6ed;
  border-radius: 6px;
	font-size: 1rem;
   font-family     :     inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
     outline: none;
        border-color: #667eea;
	}

.form-group textarea {
				 resize: vertical;
}

.form-submit 
 {
  width: 100%;

	   padding: 15px;

	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

	    color: white;

	 border: none;

	   border-radius: 8px;

	    font-size :      1.1rem;

	  font-weight: 700;

	    cursor: pointer;

	   transition: all 0.3s;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102,126,234,0.3);
}

.site-footer {
   background: #1a1a2e;
	 color   :       #e0e6ed;
  padding: 4rem 2rem 2rem; 

}

.footer-content {
  max-width: 1400px;
   margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
               gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
      height   :      40px;
    margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-col h4 {
    color: white;
  margin-bottom: 1.5rem;
	font-size: 1.2rem;
}

.footer-col ul {
   list-style: none;
}  

.footer-col ul li	{
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: #b8c1cc;
    text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover


{
   color: #667eea;
	}  

.footer-col p {
   line-height: 1.7;
   margin-bottom: 0.5rem;
  color: #b8c1cc;
}

.footer-bottom {
   text-align: center;
    padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #8895a7; 
	
}@media (max-width: 968px) {
    .burger-menu {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        display: none;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hero-section {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.3rem;
    }
    
    .method-content {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 1.9rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .intro-block h2 {
        font-size: 1.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem;
    }
}.page-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding  :        8rem 2rem 5rem;
   text-align: center;
  position: relative;
}

.hero-overlay h1


{

	   font-size: 3rem; 
   color: white; 
	margin-bottom: 1rem; 
       font-weight  :      700;


     }

.hero-overlay p {
		 font-size: 1.3rem;
  color: rgba(255,255,255,0.95);
	max-width  :700px;
  margin: 0 auto;


}

.services-intro  {
	padding:        5rem 2rem;
   background: #f8f9fa;
} 

.content-container {
   max-width: 900px;
    margin: 0 auto;
  text-align    :    center;
}

.services-intro h2 {

	   font-size: 2.5rem;
    color: #2c3e50;
  margin-bottom: 1.5rem;
}

.services-intro p {
    line-height: 1.8;
	color: #5a6c7d;
   font-size: 1.15rem;
}

.detailed-services{
    padding: 3rem 2rem;
  max-width     : 1400px;
  margin: 0 auto;

}

.service-detail {
	  display     :        grid;
  grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
   align-items: start;
	 margin-bottom :        6rem;
	padding   :       3rem 0;
	}

.service-detail.reverse {
  grid-template-columns: 1.2fr 1fr;
}

.service-detail.reverse .service-visual {
  order: 2;
}

.service-detail.reverse .service-description {
   order: 1;
     }

.service-visual img {
	       width :  100%;
    border-radius: 12px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.12);
	}

.service-description h2 {
        font-size: 2.3rem;
  color: #2c3e50;
    margin-bottom  :        1rem;
}

.service-lead {
   font-size: 1.2rem;
   color: #667eea;
    margin-bottom: 1.5rem;
   font-weight: 600; 
	
}

.service-description > p {
   color :       #5a6c7d;
   line-height: 1.8;
    margin-bottom: 2rem;
   font-size: 1.05rem;
	
}

.service-features {
    display: grid;
    gap: 1.5rem;
  margin-bottom: 2rem;
}

.feature-point h4   {

	    color: #34495e;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.feature-point p {
  color: #6c757d;
	   line-height: 1.6;
	    font-size: 0.95rem;
}

.service-details-box {

	  background: #f8f9fa;
    padding: 1.5rem;
   border-radius: 8px;
	 border-left: 4px solid #667eea;
}

.service-details-box p {
	    margin-bottom: 0.8rem;
    color: #495057;
  font-size: 0.95rem;

}

.service-details-box p:last-child {
   margin-bottom: 0;
}

.process-section {

	  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
   padding: 5rem 2rem;

}

.process-container {
   max-width: 1300px;
    margin: 0 auto;
}

.process-container h2   {
	font-size     :       2.5rem;
  text-align     : center;
         color: #2c3e50;
	margin-bottom: 1rem;
}

.process-intro {
    text-align: center;
  font-size: 1.15rem;
  color: #5a6c7d;
        margin-bottom: 3rem;
}

.process-steps {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.step-item {

	          background: white;
   padding: 2rem;
    border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
               text-align: center;
  transition: transform 0.3s;
     }

.step-item:hover {
  transform: translateY(-5px);
}

.step-number{
      font-size: 3rem;
	font-weight: 700;
	color: #667eea;
    margin-bottom: 1rem;
   opacity: 0.3;
}

.step-item h3 {
	font-size : 1.4rem;
      color: #2c3e50;
	 margin-bottom: 1rem;
}

.step-item p {
     color: #5a6c7d;
       line-height:        1.7;
	 font-size: 0.95rem;
}

.benefits-section {
    padding: 5rem 2rem;
  background: white;
}

.benefits-wrapper {
   	margin: 0 auto;
    max-width: 1300px;
     }

.benefits-wrapper h2 {
   font-size: 2.5rem;
  text-align: center;
    color: #2c3e50;
   margin-bottom: 4rem;
}

.benefits-grid		{

	                    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2.5rem;

}

.benefit-card {
	text-align    :      center;
    padding  : 2rem;
   transition: all 0.3s;
}

.benefit-card:hover {
  transform: translateY(-5px);
	
}

.benefit-icon {
    width: 60px;
   height: 60px;
   margin-bottom: 1.5rem;
    stroke: #667eea;
   fill: none;
        stroke-width: 2;
    stroke-linecap :      round;
    stroke-linejoin: round;
}

.benefit-card h3   {
  font-size: 1.4rem;
    color: #2c3e50;
   margin-bottom: 1rem;
}

.benefit-card p {
    color    :#5a6c7d;
  line-height: 1.7;
	 font-size: 0.95rem;


}

.testimonials-section {
  padding     :  5rem 2rem;
    background: #f8f9fa;
}

.testimonials-container {
  max-width    :   1300px;
    margin: 0 auto;

}

.testimonials-container h2 {
      font-size: 2.5rem;
    text-align: center;
  color: #2c3e50;
  margin-bottom: 4rem;
}

.testimonials-grid
	{
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.testimonial-card {
    background   :   white; 
		padding: 2.5rem; 
	  border-radius: 10px; 
	  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.testimonial-text {
   color: #4a5568;
    line-height: 1.8;
	font-size: 1.05rem;
  margin-bottom     :   2rem;
    font-style: italic;
}

.testimonial-author {
  border-top: 2px solid #e9ecef;
  padding-top: 1.5rem;
}

.author-name {
	    font-weight:700;
    color: #2c3e50;
   margin-bottom: 0.3rem;
         font-size: 1.05rem;
	


}

.author-role {
    color: #667eea;
 font-size: 0.9rem;
}

.cta-final {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 5rem 2rem;
}

.cta-content-box {
  margin: 0 auto;
          color: white;
   max-width   :     800px;
               text-align: center;
}

.cta-content-box h2
	{
  font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.cta-content-box p 
 {
    font-size  :    1.2rem;
   margin-bottom: 2.5rem;
  opacity: 0.95;
}

.thankyou-section {
    min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
    padding: 5rem 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.thankyou-container {
  max-width: 700px;
    text-align: center;
    background: white;
    padding    : 4rem 3rem;
   border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
	
}

.thankyou-icon {
    margin-bottom: 2rem;
}

.success-icon {
     width  :        80px;
  height: 80px;
    stroke: #28a745;
                    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
  stroke-linejoin:    round;


}

.thankyou-container h1 {
    margin-bottom: 1.5rem;
 font-size   :        2.5rem;
   color: #2c3e50;
}

.thankyou-message {
   font-size: 1.2rem;
   color: #5a6c7d;
   margin-bottom: 2rem;
}

.thankyou-info


{
               background:  #f8f9fa;
    padding: 1.5rem;
   border-radius: 8px;
        margin-bottom: 2.5rem;
}

.thankyou-info p {


    color:   #4a5568;
   line-height: 1.7;
   font-size  :   1rem;



}

.thankyou-actions {
  gap: 1rem;
   display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.next-steps {

	    padding: 5rem 2rem;
                    background: white; 
}

.steps-container {
  max-width: 1200px; 
	   margin   :    0 auto;
}

.steps-container h2 {
  font-size: 2.5rem;
    color: #2c3e50;
  margin-bottom     :   4rem;
	text-align: center;
}

.steps-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 3rem;
}

.step-box {
	text-align: center; 
  padding: 2rem;
} 

.step-icon-wrapper {
    margin-bottom: 1.5rem;
}

.step-icon {
  width: 60px;
    height    :    60px;
  stroke   :     #667eea;
   fill: none;
   stroke-width: 2;
   stroke-linecap: round;
    stroke-linejoin: round;
}

.step-box h3 {
    font-size: 1.5rem; 
	  color: #2c3e50; 
	   margin-bottom: 1rem;
}

.step-box p {
   color: #5a6c7d;
	line-height: 1.7;
	 font-size: 1rem;
}

.additional-resources {
   padding: 5rem 2rem; 
	       background: #f8f9fa;
}

.resources-container {
	max-width: 1200px;
    margin: 0 auto;
}

.resources-container h2 {
	font-size: 2.5rem;
      text-align: center;
    color: #2c3e50;
   margin-bottom: 1rem;
}

.resources-intro
	{
    font-size    :   1.15rem;
    margin-bottom: 3rem;
    text-align: center;
  color     :       #5a6c7d;
}

.resources-cards


{
       display     :grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 3rem;} 

.resource-item {
   background: white;
   border-radius: 12px;
  overflow   :       hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.resource-item img {
    width :    100%;
    height: 250px;
    object-fit   :   cover;

}

.resource-item h3 {
  font-size: 1.5rem; 
  color: #2c3e50; 
   padding: 1.5rem 2rem 1rem;
}

.resource-item p

{
		padding     :    0 2rem 2rem;
	  color: #5a6c7d;
	  line-height: 1.7;
}@media (max-width: 968px) {
    .page-hero {
        padding: 5rem 2rem 3rem;
    }
    
    .hero-overlay h1 {
        font-size: 2.2rem;
    }
    
    .service-detail,
    .service-detail.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-detail.reverse .service-visual,
    .service-detail.reverse .service-description {
        order: initial;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .thankyou-container {
        padding: 3rem 2rem;
    }
    
    .thankyou-container h1 {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .hero-overlay h1 {
        font-size: 1.8rem;
    }
    
    .services-intro h2,
    .process-container h2,
    .benefits-wrapper h2 {
        font-size: 2rem;
    }
    
    .service-description h2 {
        font-size: 1.8rem;
    }
    
    .thankyou-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .thankyou-actions .btn-primary,
    .thankyou-actions .btn-secondary {
        width: 100%;
    }
}.policySection {

    padding    :  80px 2rem;
  background: #f8f9fa;


}

.policyContainer {
   max-width: 800px;
    margin: 0 auto;
        text-align: left;
}

.policyContainer h2 {
	   font-size:       2.5rem;
    color :   #2c3e50;
  margin-bottom: 1.5rem;
  font-weight    :        700;
     }

.policyContainer p {
  color: #7f8c8d;
   margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }
    .policyContainer p {
        font-size: 1rem;
    }
    .policySection {
        padding: 60px 1rem;
    }
}