* {
    margin: 0;
   padding: 0;
       box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height: 1.6;
    color: #2a2a2a;
  background: #ffffff;
}

.main-navigation {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 1.2rem 0;
  position    :     sticky;
    top: 0;
	z-index: 1000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.nav-wrapper {


    max-width: 1320px; 
	    margin:        0 auto; 
	    padding: 0 2rem; 
	   display: flex; 
	        justify-content: space-between; 
	  align-items:   center;
     }

.site-logo {
		 height: 52px;
    width: auto;
}

.nav-links {
  gap: 2.5rem;
   display: flex;
  align-items: center;
}

.nav-links a {


   color: #f5f5f5;
  text-decoration: none;
  font-size: 1.05rem;
	font-weight: 500;
   transition   :     color 0.3s;
  position: relative;
}

.nav-links a:hover {
   color: #ff6b35;
}

.nav-links a::after {
  background: #ff6b35;
	width: 0;
   bottom :   -5px;
    transition: width 0.3s;
         position: absolute;
  height: 2px;
  content: '';
  left: 0;
} 

.nav-links a:hover::after {
  width: 100%;
}

.burger-menu {
  display: none;
    flex-direction: column;
    gap: 5px;
   background: none;
    border: none;
   cursor: pointer;
    padding: 8px; 

}

.burger-menu span {
  border-radius   :2px;
   transition: all 0.3s;
    width: 28px;
    background: #f5f5f5;
  height: 3px;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.hero-section {
  background: linear-gradient(165deg, #f8f9fa 0%, #e9ecef 100%);

    padding: 6rem 2rem;

   display: flex;

    align-items: center;

   gap: 4rem;

    max-width: 1320px;

    margin: 0 auto;
}

.hero-content  
  {
     flex: 1;
}

.hero-content h1 {
   font-size: 3.2rem;
       font-weight     :700;
   color: #1a1a1a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-content p 
 {
       font-size: 1.25rem;
         color: #555;
  margin-bottom :  2.5rem;
}

.cta-buttons {

  display: flex;
    gap: 1.5rem;
	}

.btn-primary, .btn-secondary {
   text-decoration: none; 
    display: inline-block; 
                    padding: 14px 32px; 
	font-size: 1.05rem; 
   -moz-transition: all 0.3s; 
    transition: all 0.3s; 
	-webkit-transition:   all 0.3s; 
          font-weight: 600; 
    border-radius: 6px;
}

.btn-primary {
    background: #ff6b35;
         color: white;
    border: 2px solid #ff6b35;


}

.btn-primary:hover {
         background: #e55a28; 
	  transform: translateY(-2px); 
	  box-shadow: 0 6px 20px rgba(255,107,53,0.3);
}

.btn-secondary {
    background: transparent;
   color: #1a1a1a;
	border     :   2px solid #1a1a1a;
}

.btn-secondary:hover {
   background    :     #1a1a1a;
   color: white;
  transform: translateY(-2px);
}

.hero-visual {
	    flex: 1;
	}

.hero-visual img {
	width: 100%;
    height: auto;
       border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.container-main {
    max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
}

.intro-section {
    padding: 5rem 2rem;
   text-align: center;
  background: white;
}


.intro-section h2  
  {
  font-size   :   2.5rem;
  font-weight: 700;
  color: #1a1a1a;
   margin-bottom: 1.5rem;
}

.intro-section p {
   font-size: 1.15rem;
                    color  :        #666;
    max-width: 850px;
	margin: 0 auto 3rem;
}

.stats-row {
	   display: flex;
       justify-content: center;
    gap: 4rem;
	flex-wrap: wrap;

}

.stat-item {

       text-align: center;
	}

.stat-item h3 {
    font-size: 2.8rem;
  font-weight: 700;
  color: #ff6b35;
   margin-bottom: 0.5rem;
}

.stat-item p {


  font-size: 1rem;
  color: #666;} 

.approach-section {
  padding: 5rem 2rem;
  background   :       #f8f9fa;
}

.approach-grid {
  align-items: center;
  gap: 4rem;
    display:flex;
}

.approach-text {
     flex: 1;
     }

.approach-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
        color: #1a1a1a;
   margin-bottom: 1.5rem;
}

.approach-text p	{
       font-size: 1.1rem;
  color: #666;
    margin-bottom: 2rem;


}

.features-list {
  list-style: none;
}

.features-list li {
	 font-size: 1.05rem;
    color: #444;
    padding: 0.75rem 0;
   padding-left: 2rem;
		 position: relative; 

}

.features-list li::before {
  content: '✓';
      position: absolute;
   	 left: 0;
     color  :    #ff6b35;
      font-weight: bold;
     font-size: 1.3rem;
}

.approach-image {
  flex: 1;
}

.approach-image img {
	width: 100%;
   height: auto;
  border-radius   :      12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.services-preview {
    padding: 5rem 2rem;
  background: white;
}

.services-preview h2 {
   font-size: 2.5rem;
   font-weight:     700;
   color: #1a1a1a;
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-card {
  background: #f8f9fa;
	 border-radius: 12px;
   overflow: hidden;
               transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);

	  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}  

.service-card img {

	  width: 100%;
   height: 220px;
  object-fit: cover;


}

.service-card h3		{

	    font-size: 1.5rem;
    font-weight: 600;
        color: #1a1a1a;
  padding: 1.5rem 1.5rem 0.5rem;
     }

.service-card p {
    font-size: 1rem;
    color: #666;
   padding: 0 1.5rem 1.5rem;
}

.cta-section {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
	padding     :       5rem 2rem;
   text-align: center;
}



.cta-content h2{
	    font-size: 2.8rem;
   font-weight: 700;
    color     :     white;
   margin-bottom: 1.5rem;}

.cta-content p {
  font-size: 1.2rem;
   color: white;
    margin-bottom:   2.5rem;
   opacity: 0.95;


}

.btn-cta {
    background    :    white;
  color: #ff6b35;
	padding: 16px 40px;
  font-size: 1.1rem;
   font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
  display: inline-block;
   transition: all 0.3s;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.process-section {
  padding: 5rem 2rem;
  background: white;
}

.process-section h2 {
   font-size: 2.5rem;
   font-weight: 700;
    color: #1a1a1a;
  text-align: center;
   margin-bottom: 3.5rem;
}

.process-steps {


  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap     :     2.5rem;

}

.step {
      text-align: center;
   padding: 2rem 1rem; 

     }

.step-number {
   font-size: 3rem;
   font-weight: 700;
    color: #ff6b35;
  margin-bottom: 1rem;
}

.step h3  
  {
    font-size: 1.4rem;
  font-weight: 600;
    color: #1a1a1a;
   margin-bottom: 1rem;
}



.step p {
   font-size: 1rem;
    color: #666;
}

.contact-section {
  padding: 5rem 2rem;
	background  :   #f8f9fa;


}

.contact-wrapper  
  {
  display: flex;
  gap: 4rem;
  align-items   : flex-start;
}

.contact-info {


     flex   :      1;
}

.contact-info h2
{
                    font-size: 2.5rem;
   font-weight: 700;
	color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.contact-info p {

    font-size: 1.1rem;
  color     :       #666;
   margin-bottom: 2.5rem;

}

.info-items {
     display: flex;
   flex-direction: column;
         gap: 2rem;
}


.info-item {
    display: flex;
   gap: 1.5rem;
    align-items: flex-start;
}

.info-item img {
               width: 32px;
    height: 32px;
          stroke: #ff6b35;
   fill: none;
    stroke-width: 2;

}

.info-item strong    {
   display: block;
   font-size: 1.1rem;
   color: #1a1a1a;
   margin-bottom: 0.5rem;
}

.info-item p {
   font-size: 1rem;
	 color: #666;
	 margin: 0;
}

.contact-form {
  flex: 1;
          background: white;
	 padding   :      2.5rem;
   border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.form-group {
   margin-bottom: 1.5rem;
}

.form-group label {
	  display: block;
  font-size: 1rem;
  font-weight: 600;
   color: #1a1a1a;
  margin-bottom:0.5rem;
     }

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
    padding: 12px 16px;
	 font-size: 1rem;
   border: 2px solid #ddd;
    border-radius:       6px;
          font-family: inherit;
   transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus  {
   border-color   :    #ff6b35;
  outline   :      none;
}

.form-group textarea {

    resize: vertical;


}

.btn-submit {
    width: 100%;
       padding: 14px;
      font-size :       1.1rem;
      font-weight: 600;
       background: #ff6b35;
   	 color  :    white;
         border:        none;
       border-radius: 6px;
       cursor: pointer;
     transition   :  all 0.3s;
}

.btn-submit:hover {
	background: #e55a28;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,107,53,0.3); 
	
}

.site-footer 
 {
  background: #1a1a1a;
   color: #f5f5f5;
   padding: 3rem 2rem 1.5rem;
}

.footer-content {
	max-width   :      1320px;
   margin: 0 auto;
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
   margin-bottom: 2rem;
}

.footer-logo {
  height: 45px;
  width: auto;
   margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-column h4 {
	font-size: 1.2rem;
   font-weight: 600;
    margin-bottom: 1rem;
  color: #ff6b35;
}

.footer-column p {
	 font-size: 0.95rem;
    color: #ccc;
    line-height: 1.8;
}

.footer-column ul {
  list-style: none;
}  

.footer-column ul li {

	 margin-bottom:      0.75rem;
	}


.footer-column ul li a {

	         color: #ccc;
  text-decoration: none;
	font-size: 0.95rem;
   transition: color 0.3s;

}

.footer-column ul li a:hover {
   color: #ff6b35;
}

.footer-bottom {
     max-width: 1320px;
       margin: 0 auto;
	padding-top: 2rem;
    border-top  :    1px solid #333;
    text-align: center;


}

.footer-bottom p {
               font-size: 0.9rem;
    color: #999;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 76px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 76px);
        background: #1a1a1a;
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s;
        gap: 1.5rem;
    }

    .nav-links.active {
        left: 0;
    }

    .hero-section {
        flex-direction: column;
        padding: 3rem 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .approach-grid {
        flex-direction: column;
    }

    .contact-wrapper {
        flex-direction: column;
    }

    .stats-row {
        gap: 2rem;
    }
}.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;
    }
}.services-hero {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
   padding   :       5rem 2rem;
  text-align :  center;
	 color     :    white;
}

.services-hero-content h1 {
  font-size: 3rem; 
  font-weight: 700; 
   margin-bottom   :      1.5rem;
}

.services-hero-content p {
  font-size: 1.2rem;
  max-width: 750px;
   margin: 0 auto;
  opacity: 0.9;
}

.services-intro {
       padding  :       4rem 2rem;
   background: white;
    text-align: center;
}

.intro-content h2 {
  font-size: 2.3rem;
   font-weight   :  700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.intro-content p {
   font-size: 1.1rem;
    color: #666;
   max-width: 900px;
	 margin :     0 auto;
    line-height: 1.8;
}

.detailed-services {
    padding: 3rem 2rem 5rem;
  background: #f8f9fa;
}  

.service-detail {
    display: flex;
   gap: 3.5rem;
   align-items: center;
  margin-bottom:  5rem;
   background: white;
   padding: 3rem;
   border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.08);
}  

.service-detail.reverse {
	flex-direction: row-reverse;

}

.service-detail-image {
  flex: 1;
}

.service-detail-image img {
   width: 100%;
    height: auto;
	border-radius :     8px;
}

.service-detail-content {
  flex: 1.2;
}

.service-detail-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
    color: #1a1a1a;
  margin-bottom: 1.2rem;
}

.service-detail-content > p {
  font-size: 1.1rem;
     color     :        #555;
   	margin-bottom: 2rem;
     line-height: 1.7;
}

.service-features {
                    display: grid;
     grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.feature-item h4

{
    font-size: 1.15rem;
  font-weight: 600;
  color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.feature-item p {

	  font-size: 0.95rem;
       color: #666;
    line-height: 1.6;


}

.service-pricing {

   background: #f8f9fa;
  padding: 1.5rem;
  border-radius :      8px;
   border-left: 4px solid #ff6b35;
	}

.price-label {
  margin-bottom: 0.5rem;
	font-size: 0.9rem;
 color: #666;

}

.price-value {
  font-size: 2rem;
   font-weight  : 700;
   color: #ff6b35;
  margin-bottom: 0.5rem;

}

.price-note {
   font-size   :     0.9rem;
               color   :   #666;
  font-style: italic; 
	
}

.methodology-section {

	   padding: 5rem 2rem;
	          background  :        white;}

.methodology-section h2    {
   font-size: 2.5rem;
   font-weight: 700;
  color: #1a1a1a;
    text-align: center;
  margin-bottom: 1.5rem;
}

.methodology-intro {
    font-size: 1.15rem;
	color: #666;
   text-align    :center;
	max-width: 800px;
 margin: 0 auto 3.5rem;
}

.methodology-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.method-card {
  background  :       #f8f9fa;

	padding: 2rem;

               border-radius:        12px;

  transition     :      transform 0.3s, box-shadow 0.3s;
}

.method-card:hover {

	  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);

}

.method-number {
    font-size: 2.5rem;
    font-weight: 700;
	color: #ff6b35;
  margin-bottom: 1rem;
}

.method-card h3 {
    font-size: 1.4rem;
  font-weight     :  600;
   color     :        #1a1a1a;
   margin-bottom:     1rem; 

}

.method-card p {
	line-height: 1.6;
   color: #666;
    font-size :    1rem;
}

.testimonials-section {
   padding: 5rem 2rem;
	background: #f8f9fa;
}  

.testimonials-section h2
{
  font-weight: 700;
	margin-bottom: 3.5rem;
       font-size: 2.5rem;
    color: #1a1a1a;
	text-align: center;
}

.testimonials-grid {
   	 display: grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

   gap: 2.5rem;



}

.testimonial-card {
    background: white;
   padding: 2.5rem;
	 border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.08);
}

.testimonial-text {
   font-size: 1.05rem;
	color  :      #444;
		 line-height     :    1.7;
    margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  border-top: 2px solid #f0f0f0;
   padding-top: 1.5rem;
}

.author-name {
   font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
         margin-bottom: 0.3rem;
}

.author-position {
  font-size: 0.95rem;
  color: #666;
}

.cta-contact-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
   padding: 5rem 2rem;
   text-align: center;

}

.cta-contact-content h2 {
  font-size: 2.8rem;
		font-weight: 700;
    color: white;
  margin-bottom     :    1.5rem;
	
}

.cta-contact-content p   {
   font-size: 1.2rem;
      color  :       white;
     margin-bottom: 2.5rem;
  opacity: 0.9;
     }  

.btn-cta-white {
    background: white;
  color  : #1a1a1a;
   padding :    16px 40px;
   font-size: 1.1rem;
                    font-weight: 600;
	border-radius: 6px;
          text-decoration: none;
   display: inline-block;
  transition :   all 0.3s;
}

.btn-cta-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255,255,255,0.3);}

.thankyou-section {
 padding: 6rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: 70vh;
	 display: flex;
    align-items: center;
    justify-content: center;
}

.thankyou-container	{
    max-width: 850px;
   text-align: center;
  background: white;
    padding: 4rem 3rem;
   border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.thankyou-icon {
   margin-bottom: 2rem;
}

.thankyou-icon img {
    width: 80px;
      height: 80px;
	stroke: #27ae60;
   fill: none;
   stroke-width: 2.5;
  filter: drop-shadow(0 4px 10px rgba(39,174,96,0.3));
}

.thankyou-container h1 {
   font-size: 2.8rem;
 font-weight: 700;
   color: #1a1a1a;
   margin-bottom: 1.5rem;

}

.thankyou-message     {
    font-size: 1.2rem;
       color: #555;
    margin-bottom: 3rem;
  line-height: 1.7;
}

.next-steps {
    margin: 3rem 0;
   text-align: left;
}

.next-steps h2 {


    font-size: 2rem;
  font-weight: 700;
  color   :    #1a1a1a;
   text-align: center;
  margin-bottom: 2.5rem;


}

.steps-list {

	  display: flex;
       flex-direction:    column;
  gap: 2rem;
     }

.step-item

{
   display: flex;
   gap: 1.5rem;
   align-items: flex-start;
}

.step-icon img {
   width: 40px;
  height: 40px;
  stroke: #ff6b35;
   fill     :       none;
    stroke-width: 2;
}

.step-content h3 {
   font-size: 1.3rem;
   font-weight: 600;
    color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.step-content p {


   font-size: 1rem;
  color: #666;
}

.thankyou-cta {
  margin: 3rem 0;
    padding: 2rem;
  background :  #f8f9fa;
		 border-radius: 10px;
}

.thankyou-cta p   {
	font-size: 1.1rem;
   margin-bottom: 1.5rem;
   color: #555;
}

.thankyou-buttons{
  display    : flex;
   gap : 1.5rem;
   justify-content: center;
    flex-wrap: wrap;
}

.additional-info {
  margin-top     :    3rem;
  padding-top: 2rem;
  border-top:   2px solid #e9ecef;

}

.additional-info h3 {


   font-size: 1.5rem;
   font-weight: 600;
   color: #1a1a1a;
   margin-bottom: 1rem;

}

.additional-info p {
  font-size: 1rem;
    color: #666;
   margin-bottom: 1rem;
}

.phone-link {
  font-size: 1.8rem;
  font-weight: 700;
    color: #ff6b35;
  text-decoration   :        none;
  transition   : color 0.3s;
}

.phone-link:hover {
  color: #e55a28;
}

.thank-resources {
	padding: 5rem 2rem;
				 background: white;
}

.thank-resources h2 {
  font-size    :2.5rem;
    font-weight: 700;
	color  :#1a1a1a;
   text-align: center;
  margin-bottom: 3rem;
}

.resources-grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem; 
	
}

.resource-card {
   background: #f8f9fa;
    border-radius: 12px;
   overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}



.resource-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.resource-card img {
   width: 100%;

	    height: 200px;

	    object-fit: cover;
}

.resource-card h3 {

    font-size: 1.4rem;
	     font-weight: 600;
	  color: #1a1a1a;
	   padding: 1.5rem 1.5rem 0.5rem;}

.resource-card p		{
   font-size: 1rem;
   color: #666;
  padding: 0 1.5rem 1.5rem; 

}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2.2rem;
    }

    .service-detail {
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
    }

    .service-detail.reverse {
        flex-direction: column;
    }

    .thankyou-container {
        padding: 3rem 2rem;
    }

    .thankyou-container h1 {
        font-size: 2.2rem;
    }

    .step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .thankyou-buttons {
        flex-direction: column;
    }

    .phone-link {
        font-size: 1.4rem;
    }

    .next-steps {
        text-align: center;
    }
}