* {
    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;
}

.content-container {
  max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px; 
	
}

.main-navigation
{
  background: #ffffff;
     box-shadow: 0 2px 10px rgba(0,0,0,0.08);
       position: sticky;
     top: 0;
     z-index: 1000;
}

.nav-container {
  display: flex;
  max-width: 1200px;
  align-items: center;
   padding: 15px 20px;
    margin: 0 auto;
      justify-content: space-between;
}

.brand-section .site-logo    {
         height: 48px;
	width: auto;
}

.nav-menu {
	display: flex;
    gap: 35px;
   align-items: center;
}

.nav-link{

    text-decoration: none;
    color: #34495e;
   font-weight: 500;
    transition: color 0.3s;
     font-size: 16px;

}

.nav-link:hover {
    color: #3498db;


}

.mobile-toggle {
   background: none;
    display: none;
	flex-direction     :        column;
    border: none;
  gap: 5px;
    cursor: pointer;
}

.burger-line {
   height  :   3px;
  background: #34495e;
    width: 28px;
    transition: all 0.3s;
}

.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      padding: 80px 20px;
    color: #ffffff;
}

.hero-content-wrapper {

       max-width: 1200px;
  margin: 0 auto;
   display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 60px;
      align-items: center;


}

.hero-text h1 {
  font-size: 48px;
    line-height:      1.2;
    margin-bottom: 25px;
	font-weight: 700;
}

.hero-description {
   font-size: 20px;
    margin-bottom: 35px;
    line-height: 1.7;
  opacity    :0.95;
}

.hero-actions {
    display: flex;
        gap: 20px;
}

.btn-primary, .btn-secondary {
   padding: 15px 32px; 
    text-decoration: none; 
    border-radius: 6px; 
   font-weight     : 600; 
  transition: all 0.3s; 
    display:inline-block; 
	 font-size: 16px;
}

.btn-primary {
    background: #ffffff;
                    color: #667eea; 

}


.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.btn-secondary	{
  background   : transparent;
   color: #ffffff;
   border: 2px solid #ffffff;

}

.btn-secondary:hover    {
  background: rgba(255,255,255,0.1);
}

.hero-visual .hero-image {

	    width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);

}

.intro-section {
         padding: 90px 20px;
    background: #f8f9fa; 

}

.section-header {
      text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
   font-size: 42px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-subtitle {
               font-size: 20px;
   color: #7f8c8d; 
	
}

.feature-grid {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-item {
   background: #ffffff;
   padding: 40px 30px;
  border-radius  :    10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s;
}

.feature-item:hover {
  transform: translateY(-5px);
}


.feature-icon {
   width: 70px;
   height: 70px;
    margin-bottom: 25px;
}

.feature-icon svg {
  width: 100%;
    height: 100%;
    fill: #667eea;
}

.feature-item h3 {
	        font-size: 24px; 
  margin-bottom: 15px; 
    color  :   #2c3e50;

}

.feature-item p {
  color: #7f8c8d;
    line-height: 1.7;
}

.services-preview {
  padding: 90px 20px;
}

.section-title {
  font-size: 42px;
    text-align: center;
   margin-bottom: 60px;
   color: #2c3e50;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.service-card {
    background    :    #ffffff;
  border-radius  :        10px;
    overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition     :    all 0.3s;
}

.service-card:hover {


  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  transform: translateY(-3px);}

.service-image  
  {
	width: 100%;
  height: 280px;
          object-fit     :        cover;
}

.service-content {
   padding: 30px;
} 

.service-content h3 {

    color  :   #2c3e50;
   font-size: 26px;
	margin-bottom: 15px;
	}

.service-content p {
   color: #7f8c8d;
   line-height: 1.7;
}

.cta-section  
  {
	  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
      padding: 80px 20px;
      color: #ffffff;

}

.cta-wrapper {
    max-width: 900px;
    margin: 0 auto;
   text-align: center;
}

.cta-content h2 {
	font-size: 42px;
    margin-bottom: 25px;
}

.cta-content p {
	  font-size: 19px;
  line-height: 1.8;
    margin-bottom: 35px;
    opacity: 0.95;


}

.cta-button {

  display: inline-block;
    background: #ffffff;
       color:    #667eea;
    padding: 18px 40px;
     border-radius: 6px;
  text-decoration: none;
   font-weight     :      600;
   font-size: 18px;
   transition: all 0.3s;
	}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.testimonials-section {
   padding: 90px 20px;
    background:        #f8f9fa;
}

.testimonials-grid {
       display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.testimonial-card {

    background: #ffffff;
          padding :      35px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);


}

.testimonial-text	{
  font-size: 17px;
  line-height: 1.7;
   color: #34495e;
   margin-bottom: 25px;
   font-style: italic;
}

.testimonial-author strong	{
   display: block;
    color: #2c3e50;
         font-size: 18px;
      margin-bottom: 5px;
}

.testimonial-author span {
  font-size: 15px;
       color   :    #7f8c8d; 
	


}

.contact-section {
    padding: 90px 20px;
    background: #ffffff;
}

.contact-container {
	max-width: 1100px;
  margin: 0 auto;
    display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

.contact-info h2 {


   font-size     :   38px;
   margin-bottom: 20px;
  color: #2c3e50;


}

.contact-info > p {
   margin-bottom: 40px;
    color: #7f8c8d;
    line-height: 1.7;
}

.info-block {
    display: flex;
  margin-bottom: 35px;
  gap: 20px;
}

.info-icon {
  width: 50px;
   height: 50px;
    flex-shrink: 0;
	
}

.info-icon svg {
   width: 100%;
    height: 100%;
     fill: #667eea; 
	
}

.info-block h3 {
  font-size: 20px;
  margin-bottom: 8px;
 color: #2c3e50;
}

.info-block p {
  color: #7f8c8d;
		 line-height: 1.6;
}

.contact-form {
       background: #f8f9fa;
  padding: 40px;
      border-radius: 10px;
}



.form-group {
   margin-bottom: 25px;
}

.form-group label {
	display: block;
	 margin-bottom: 8px;
    color   :   #34495e;
   font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-size: 16px;
        border :   1px solid #dfe6e9;
  font-family    : inherit;
   padding: 12px 15px;
    transition:    border-color 0.3s;
    border-radius :        5px;
   width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
          outline: none;
		border-color: #667eea;
}

.submit-btn {

	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	 color: #ffffff;
   padding  :    15px 40px;
	border: none;
	border-radius     : 6px;
      font-size: 17px;
    font-weight: 600;
    cursor: pointer;
   transition: all 0.3s;
	width: 100%;}

.submit-btn:hover {
  transform: translateY(-2px);
     box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.site-footer {
   background: #2c3e50;

	 color: #ecf0f1;

    padding :        60px 20px 20px;
}

.footer-container {
               max-width     :      1200px;
  margin :0 auto;
   display: grid;
  grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  height: 45px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-description {
    color: #bdc3c7;

	    line-height: 1.6; 

}

.footer-section h4 {
    font-size    :  20px;
   margin-bottom: 20px;
  color: #ffffff;
}

.footer-links {

	 list-style:       none;
	}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
   color: #bdc3c7;
	 text-decoration:      none;
	transition :  color 0.3s;
}

.footer-links a:hover
{
     color: #ffffff;
     }

.footer-phone {
    margin-top: 15px;
	 font-weight: 600;
	 color: #ffffff;
}



.footer-bottom {
   text-align: center;
  padding-top: 30px;
  border-top: 1px solid #34495e;
  color: #95a5a6;
}@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}.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;
    }
}.page-hero {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
     padding: 100px 20px 80px;
   text-align: center;
   color: #ffffff;

}

.page-hero-content h1 {
  font-size     :     52px;
   margin-bottom: 20px;
    font-weight: 700;
}

.page-hero-content p {


    font-size: 22px;
  max-width: 800px;
   margin: 0 auto;
  opacity: 0.95;

}

.services-detailed {
   padding: 90px 20px;
}

.service-detailed-item  {
	display: grid;
   grid-template-columns: 1fr 1.2fr;
  gap:  50px;
   margin-bottom: 90px;
   align-items: start;
}

.service-detailed-item.reverse {
	 grid-template-columns: 1.2fr 1fr;
}

.service-detailed-item.reverse .service-detailed-visual {
	 order: 2;
}

.service-detailed-item.reverse .service-detailed-info
	{
   order: 1;
}

.detailed-image {
    width: 100%;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.service-detailed-info h2 {
   font-size     :36px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.service-intro {
   font-size: 18px;
   line-height: 1.8;
   color: #34495e;
   margin-bottom: 30px;
}  

.service-features {
     margin-bottom: 25px;
	border-radius: 10px;
   padding: 30px;
               background: #f8f9fa;
}

.service-features h3

{
    font-size: 22px; 
    margin-bottom     :    15px; 
     color: #2c3e50;
}

.service-features ul {
    list-style:        none;
    padding: 0;
}

.service-features li {
  padding-left: 25px;
  margin-bottom: 12px;
  position: relative;
    color: #34495e;
   line-height     :    1.6;
}

.service-features li:before {
  content: "✓";
    position: absolute;
  left: 0;
   color: #667eea;
   font-weight: bold;
    font-size     :        18px;
}

.service-duration {
	   padding: 15px 20px;
               background  :   #e8eaf6;
   border-left: 4px solid #667eea;
   border-radius :     5px;
	color: #34495e;
	font-size   :     16px;
     }

.process-section {
  background: #f8f9fa;
   padding: 90px 20px;
}

.process-timeline {
    display: grid;
  grid-template-columns: repeat(4, 1fr);
 gap: 30px;
  margin-top: 50px;
}

.timeline-step {
    background: #ffffff;
   padding:   35px 25px;
	border-radius  :     10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
   text-align    :     center;
	transition: transform 0.3s;
}

.timeline-step:hover {
  transform: translateY(-5px);
}

.step-number {

	  width: 60px;
    height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: #ffffff;
   border-radius: 50%;
    display: flex;
  align-items: center;
  justify-content: center;
   font-size: 24px;
   font-weight: 700;
	 margin: 0 auto 20px; 
	
	}

.timeline-step h3     {
  font-size: 22px;
  margin-bottom    :     15px;
  color: #2c3e50;
}

.timeline-step p {
	  color: #7f8c8d;
	    line-height: 1.6;
	   font-size: 15px;
}

.benefits-section {
  padding: 90px 20px;


}

.benefits-grid {
  display :    grid;
  grid-template-columns: repeat(3, 1fr);
    gap    :       35px; 
	
}

.benefit-card{
	 background  :        #ffffff;
    padding: 35px 30px;
   border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
     border-top: 4px solid #667eea;
}

.benefit-card h3 {


    font-size: 22px;
  margin-bottom: 15px;
	color: #2c3e50;
	}

.benefit-card p {
   color    :  #7f8c8d;
   line-height:        1.7;
}

.final-cta {

	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 90px 20px;
   text-align: center;
}

.final-cta-content {
         max-width :        800px; 
    margin: 0 auto; 
	color: #ffffff;
}

.final-cta-content h2 {
   font-size: 44px;
  margin-bottom: 25px;
}

.final-cta-content p {
    font-size: 20px;
  margin-bottom: 35px;
   line-height: 1.7;
   opacity: 0.95;
	}

.cta-button-large {
	 display: inline-block;
   background: #ffffff;
  color: #667eea;
   padding :      20px 50px;
    border-radius     :   6px;
  text-decoration: none;
   font-weight  :      600;
   font-size: 18px;
   transition: all 0.3s;
}

.cta-button-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.thankyou-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e8eaf6 100%);
    padding: 100px 20px;
  text-align: center;
}

.thankyou-container {

	    max-width: 900px;
    margin: 0 auto;

     }

.success-icon {

	  width: 100px;
    height: 100px;
    margin   :   0 auto 30px;
    color: #27ae60;
}

.success-icon svg {
    width :   100%;
  height: 100%;
}

.thankyou-hero h1 {
        font-size: 48px;
    color: #2c3e50;
    margin-bottom     :       25px;
}

.thankyou-message {
   font-size: 20px;
    line-height: 1.8;
    color: #34495e;
		 margin-bottom   : 50px;
}

.next-steps {
   background: #ffffff;
        padding: 50px 40px;
     border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  margin-bottom: 40px;
}

.next-steps h2 {
    font-size:        32px;
    color: #2c3e50;
    margin-bottom    :35px;
    text-align :   center;
}

.steps-grid {
    display  :  grid;
  grid-template-columns: repeat(3, 1fr);
   gap   : 30px; 

}

.step-item {
   text-align: center;
}

.step-icon {
	 width    :  70px;
  height: 70px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
  display: flex;
   align-items: center;
   justify-content: center;
		 margin: 0 auto 20px;
}

.step-icon span {
   color: #ffffff;
  font-size: 28px;
		 font-weight: 700;
}

.step-item h3 {
  font-size   :   20px;
	margin-bottom: 12px;
	color: #2c3e50;
}


.step-item p {
    line-height: 1.6;
   color: #7f8c8d;
   font-size: 15px; 

}

.thankyou-actions {
  display: flex;
    gap: 20px;
  justify-content: center;
}

.additional-resources {
   padding: 90px 20px;
  background: #ffffff;
}

.additional-resources h2 {
   font-size: 42px;
   text-align: center;
   margin-bottom  : 20px;
          color: #2c3e50;
}

.resources-intro {
  text-align: center; 
   font-size: 19px; 
     color: #7f8c8d; 
  max-width: 700px; 
    margin: 0 auto 50px; 
   line-height: 1.7;
}

.resources-grid {
	    display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.resource-card {
     background: #f8f9fa;
  padding: 35px 30px;
   border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);

}

.resource-card h3 {
    color: #2c3e50;
    font-size: 22px;
		 margin-bottom: 15px;
}

.resource-card p {

	color: #7f8c8d;
   line-height: 1.7;
  margin-bottom: 20px;
	
	}

.resource-link {
    color: #667eea;
   text-decoration: none;
  font-weight: 600;
   transition: color 0.3s;
	
}

.resource-link:hover {
          color: #764ba2;
}

.contact-info-section {
   background: #f8f9fa;
     padding: 80px 20px;
} 

.contact-info-wrapper {
   max-width: 800px;
         margin     :        0 auto;
  text-align:center;
	}

.contact-info-wrapper h2 {
  font-size: 38px;
   color:    #2c3e50;
			margin-bottom: 15px;
}

.contact-info-wrapper > p 
 {
    font-size: 18px;
    color: #7f8c8d;
   margin-bottom     :        40px;
}

.quick-contact {
    display: grid;
  grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.contact-method {


   display: flex;
   gap: 20px;
       align-items   :   center;
    background: #ffffff;
   padding:     30px;
   border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);


}

.method-icon {
   width     : 50px;
 height: 50px;
    flex-shrink: 0;
}

.method-icon svg {
         width: 100%;
   height: 100%;
   fill: #667eea;
}

.contact-method h3 {
  font-size: 18px;
   margin-bottom: 5px;
	color:     #2c3e50;


}

.contact-method p {
	               color: #7f8c8d;
	 font-size: 16px;
     }@media (max-width: 768px) {
    .page-hero-content h1 {
        font-size: 36px;
    }

    .service-detailed-item,
    .service-detailed-item.reverse {
        grid-template-columns: 1fr;
    }

    .service-detailed-item.reverse .service-detailed-visual {
        order: 1;
    }

    .service-detailed-item.reverse .service-detailed-info {
        order: 2;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }

    .quick-contact {
        grid-template-columns: 1fr;
    }
}