* {

	  box-sizing: border-box;
    margin: 0;
     padding: 0;
}

body     {
  font-family: 'Segoe UI', Arial, sans-serif;
   line-height: 1.7;
   color: #2a2a2a;
  background: #ffffff;
}

.topnav {

	   background: #1a1a1a; 
	 padding: 1.2rem 0; 
   position  :        sticky; 
    top: 0; 
    z-index :     1000; 
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
     }

.nav-wrapper {

		 max-width: 1200px;
    margin: 0 auto;
   padding: 0 2rem;
    display: flex;
   justify-content: space-between;
   align-items: center;
     }

.brand-link {
   display: block;
}



.site-logo {

	   height: 45px;
  filter: brightness(0) invert(1);
        width: auto;}

.menu-links {
  display: flex;
	     gap   :   2.5rem;
}

.menu-links a {
    color: #f4f4f4;
   text-decoration: none;
   font-size: 1.05rem;
  transition: color 0.3s;
	font-weight: 500;
}

.menu-links a:hover {
      color: #ff6b35;
     }

.burger-btn {
	   display   :      none;
		 background: none;
   border: none;
    flex-direction: column;
  gap: 5px;
                    cursor: pointer;
}

.burger-btn span {
    width:  28px;
    height: 3px;
    background: #f4f4f4;
   transition     :      0.3s;
}@media(max-width: 768px) {
    .burger-btn {
        display: flex;
    }
    
    .menu-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #1a1a1a;
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }
    
    .menu-links.active {
        max-height: 300px;
        padding: 1rem 0;
    }
    
    .menu-links a {
        padding: 1rem 2rem;
        border-bottom: 1px solid #333;
    }
    
    .burger-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .burger-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .burger-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}.hero-zone {
   display: flex;
   align-items: center;
  gap: 3rem;
   max-width: 1200px;
  margin: 4rem auto;
   padding:    0 2rem;
}

.hero-content {
      flex: 1;

}

.hero-content h1 {
   font-size: 3.2rem;
    color: #1a1a1a;
   margin-bottom: 1.5rem;
    line-height: 1.2;
}

.intro-text {

		font-size: 1.2rem;
   color: #555;
        margin-bottom:        2rem;


}

.cta-primary {


      display: inline-block;
    padding: 1rem 2.5rem;
       background: #ff6b35;
  color: white;
          text-decoration: none;
   font-weight: 600;
	 border-radius   :      4px;
  transition :        background 0.3s;

}

.cta-primary:hover {
    background: #e55a28;
}

.hero-visual {
	 flex: 1;
}  

.hero-visual img {
  width: 100%;
  height: auto;
    border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}@media(max-width: 968px) {
    .hero-zone {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.4rem;
    }
}.intro-segment {
                    background  :#f9f9f9;
  padding: 5rem 0;
}

.segment-container {
  max-width: 1200px;
  margin: 0 auto;
   padding: 0 2rem;
}

.segment-container h2 {

	   font-size: 2.5rem; 
   text-align: center; 
	margin-bottom: 1.5rem; 
  color: #1a1a1a;

}

.segment-container > p {
           text-align: center; 
    font-size: 1.1rem; 
	 color    :  #666; 
  max-width: 800px; 
   margin: 0 auto 3rem;


}

.intro-cards  
  {
	gap: 2rem;
    margin-top  :     3rem;
     display:flex;
}

.feature-box {
  flex: 1;

	    background: white;

	  padding: 2rem;

		 border-radius: 6px;

	  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
} 

.feature-box h3 {

   font-size: 1.5rem;
   margin-bottom  :       1rem;
    color: #ff6b35;
     }

.feature-box p {
    color: #555;
	line-height: 1.7;
}@media(max-width: 968px) {
    .intro-cards {
        flex-direction: column;
    }
}.methodology-area  
  {
    padding   :        5rem 0;
}

.method-wrap
{
	 max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
	 display: flex;
    gap: 4rem;
   align-items: center;
	
}

.method-image {

	    flex: 1;
}

.method-image img
{
    width: 100%;
   border-radius: 8px;
}

.method-text {
    flex: 1;
}

.method-text h2 {
	font-size  :   2.3rem;
	      margin-bottom: 1.5rem;
	    color: #1a1a1a;
}

.method-text p {
	   margin-bottom: 1.2rem;
       color: #555;
   font-size:        1.05rem;
}

.method-list {
    list-style: none;
  margin-top: 1.5rem;
}

.method-list li {
  padding: 0.8rem 0 0.8rem 2rem; 
	  position     : relative; 
	    color: #444;
}

.method-list li:before {
  content: '→';
  position: absolute;
	left: 0;
  color: #ff6b35;
               font-weight: bold;
}@media(max-width: 968px) {
    .method-wrap {
        flex-direction: column;
    }
}.offering-section {
		background: #f9f9f9;
   padding: 5rem 0;
	
}

.offer-container {
    max-width: 1200px;
    margin   :    0 auto;
   padding: 0 2rem;
}

.offer-container h2 {
  font-size:    2.5rem;
  text-align     :        center;
	margin-bottom: 3rem;
   color: #1a1a1a;
}  

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap     :        2rem;}

.service-card {
	 background     :  white;
  border-radius: 6px;
    overflow:        hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	 transition: transform 0.3s;
}

.service-card:hover {

  transform: translateY(-5px);
     }

.service-card img {
  width:   100%;
   height: 220px;
   object-fit: cover;
}

.service-card h3  {
  padding    :        1.5rem 1.5rem 1rem;
    font-size   : 1.5rem;
   color     : #1a1a1a;
}

.service-card p  
  {


    padding: 0 1.5rem;
          color: #666;
  line-height    :1.6;


}

.service-duration {
    display: block;
                       padding: 1rem 1.5rem 1.5rem;
     color: #ff6b35;
     font-weight: 600;
	
}

.cta-banner {
  background: linear-gradient(135deg, #ff6b35 0%, #e55a28 100%);

	          padding: 4rem 0;

	   text-align: center;
}

.cta-content {

  max-width  :       800px;
 margin: 0 auto;
               padding  :      0 2rem;}

.cta-content h2     {
    font-size     :  2.5rem;
	color:      white;
   margin-bottom  : 1rem; 
	
}

.cta-content p {
        margin-bottom: 2rem;
  font-size: 1.2rem;
    color: white;



}

.cta-button-alt {
                    display: inline-block;
    padding: 1rem 2.5rem;
  background   :  white;
        color: #ff6b35;
   text-decoration     :  none;
  font-weight: 600;
	border-radius: 4px;
  transition: transform 0.3s;
}

.cta-button-alt:hover {
  transform: scale(1.05);


}

.contact-zone {
  padding: 5rem 0;
}

.contact-wrapper {
   max-width  :        1200px;
   margin: 0 auto;
               padding: 0 2rem;
  display: flex;
  gap: 4rem;}

.contact-info
{
  flex: 1;
}

.contact-info h2 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
                    font-size: 2.3rem;
}

.contact-info p {
  color: #555;
      line-height: 1.7;
  margin-bottom: 1.5rem;
} 

.info-block {
    margin-top: 2rem;
}

.info-block p {
    margin-bottom: 1.5rem;
}

.contact-form {
	  flex: 1;

}

.form-row
{
 margin-bottom: 1.5rem;
}

.form-row input,
.form-row select,
.form-row textarea {
	 width   :   100%;
    padding  :      1rem;
   border: 2px solid #e0e0e0;
   border-radius    :    4px;
   font-size     :     1rem;
   font-family: inherit;
         transition: border-color 0.3s;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
   outline: none;
    border-color: #ff6b35;


}

.submit-btn {
  width: 100%;
	 padding: 1rem;
   background :  #ff6b35;
	 color: white;
  border: none;
      border-radius: 4px;
    font-size: 1.1rem;
   font-weight     :600;
   cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
	background: #e55a28;
}@media(max-width: 968px) {
    .contact-wrapper {
        flex-direction: column;
    }
}.site-footer {

	    background: #1a1a1a;
    color   :    #f4f4f4;
          padding: 3rem 0 1rem;
}

.footer-container
	{
  max-width: 1200px;
    margin: 0 auto;
    padding : 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap : 2rem;
	margin-bottom: 2rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
   color   :      #ff6b35;
    font-size: 1.1rem;
}

.footer-logo {
   height: 40px;
   margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}



.footer-desc {
   color: #aaa;
     font-size: 0.95rem;

} 

.footer-links  
  {
	list-style: none;
}

.footer-links li {
        margin-bottom: 0.7rem;

}

.footer-links a {
               color: #ccc;
	 text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ff6b35;
}

.footer-col p {

    color: #aaa;
    font-size: 0.95rem;
   line-height   :1.7;}

.footer-bottom {
    text-align: center;
  padding-top: 2rem;
   border-top  :     1px solid #333;
   color:   #888;
    font-size: 0.9rem;
}

.policySection {
	padding: 80px 2rem;
   background: #f8f9fa; 
	
}

.policyContainer     {
    text-align: left;
    margin: 0 auto;
  max-width: 800px;

}

.policyContainer h2 {

     font-weight: 700;
    font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;}

.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;
    }
}.about-hero


{

  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
               padding: 6rem 2rem;
  text-align:   center;
         color: white;
     }

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.subtitle-text {
    font-size: 1.3rem;
    max-width: 700px;
   margin: 0 auto;
  color     :    #ddd;
}

.story-section {
    padding: 5rem 0;
}

.story-container {
	display: flex;
   align-items: center;
  gap: 3rem;
    max-width    :    1200px;
  margin: 0 auto;
               padding: 0 2rem;
}

.story-visual  
  {
	 flex: 1;

}


.story-visual img {
     width: 100%;
   border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
	
}

.story-content {


    flex: 1;


}

.story-content h2 {
  color: #1a1a1a;
      font-size: 2.2rem;
       margin-bottom :     1.5rem;
}

.story-content p {
	margin-bottom: 1.3rem;
  color: #555;
   font-size :      1.05rem;
   line-height: 1.8;
}@media(max-width: 968px) {
    .story-container {
        flex-direction: column;
    }
    
    .about-hero-content h1 {
        font-size: 2.2rem;
    }
}.values-area {

	  background:     #f9f9f9;
    padding: 5rem 0;
}

.values-wrapper {
   max-width: 1200px; 
	 margin: 0 auto; 
 padding: 0 2rem;
}

.values-wrapper h2 {
  color: #1a1a1a;
   font-size: 2.5rem;
    margin-bottom: 3rem;
	text-align: center;
} 

.values-grid {

    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;


}

.value-item {
	 background: white;
   padding    :   2rem;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  border-left: 4px solid #ff6b35;
}

.value-item h3 {
        font-size: 1.4rem;

		color: #ff6b35;

	    margin-bottom: 1rem;


}

.value-item p {
    color: #666;
	line-height: 1.7;
}

.approach-zone     {
    padding  : 5rem 0; 

}

.approach-content {


	max-width     : 1200px;
   margin: 0 auto;
  padding: 0 2rem;

}  

.approach-content h2 {
	 font-size :      2.5rem;
	text-align: center;
	margin-bottom    :3rem;
      color: #1a1a1a;
}


.approach-blocks     {
  display: flex;
    flex-direction    :  column;
   gap: 3rem;
}

.approach-block {
  display: flex;
   gap: 2.5rem;
  align-items: center;
}

.approach-block.reverse {
  flex-direction   :      row-reverse;
}

.approach-block img {
    width: 45%;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.approach-text {
 flex: 1; 

}

.approach-text h3 {
                    font-size: 1.7rem;
   margin-bottom: 1rem;
				 color: #1a1a1a;
}

.approach-text p {
  color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}@media(max-width: 968px) {
    .approach-block,
    .approach-block.reverse {
        flex-direction: column;
    }
    
    .approach-block img {
        width: 100%;
    }
}.mission-banner {
  background: linear-gradient(135deg, #ff6b35 0%, #e55a28 100%);
  padding: 4rem 2rem;
    text-align     :    center;
}

.mission-content {
   max-width    :900px;
   margin: 0 auto;
}

.mission-content h2 {
   font-size: 2.5rem;
   color  :        white;
    margin-bottom: 1.5rem;
}

.mission-content p {
    font-size: 1.2rem;
	color: white;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.mission-emphasis {
  font-size:   1.4rem;
   font-weight: 600;
   margin-top: 2rem;

}

.stats-section {
	   padding: 5rem 0;
   background: #f9f9f9;


}

.stats-container {
	max-width: 1200px;
  margin: 0 auto;
  padding     :       0 2rem;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 2rem;
}

.stat-box


{
  text-align   : center;
     padding: 2rem;
    background :    white;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.stat-number {
   display:        block;
	  font-size: 3rem;
	   font-weight: 700;
		color: #ff6b35;
	  margin-bottom: 0.5rem;
}

.stat-label {


   display: block;
  font-size: 1rem;
    color    :  #666;
	}

.cta-about   {
    padding: 5rem 2rem;
	 text-align: center;
}

.cta-about-content {
  max-width: 800px;
    margin:  0 auto;
}

.cta-about-content h2 {
	    font-size: 2.5rem;
  margin-bottom: 1rem;
    color: #1a1a1a;
	}

.cta-about-content p {
	font-size     : 1.2rem;
  color: #555;
   margin-bottom: 2rem;
}

.btn-cta-secondary {
    display: inline-block;
    padding    :1rem 2.5rem;
    background: #ff6b35;
  color  :       white;
   text-decoration:        none;
  font-weight   :      600;
    border-radius: 4px;
  transition: background 0.3s;

}

.btn-cta-secondary:hover		{
                       background: #e55a28;

}

.thankyou-container {
    padding: 5rem 2rem;

	         justify-content: center;

	  display  : flex;

	  min-height: 70vh;

		align-items: center;
	
}

.thankyou-content {
   max-width: 700px;
    text-align: center;

}

.success-icon {
   margin-bottom: 2rem;
}

.thankyou-content h1 {
				 font-size: 2.5rem;
   color: #1a1a1a;
    margin-bottom: 1rem;
}

.thankyou-message


{
  font-size:       1.2rem;
 color: #666;
  margin-bottom: 3rem;
	line-height: 1.7;
}

.next-steps {
    background: #f9f9f9; 
   padding: 2.5rem; 
   border-radius: 8px; 
   margin-bottom: 3rem; 
   text-align: left;
}

.next-steps h2 {
   font-size: 1.8rem;
   color: #1a1a1a;
   margin-bottom: 2rem;
		text-align :   center;
}

.steps-list {
			gap: 1.5rem;
        flex-direction: column;
    display: flex;
}

.step-item {

	  display: flex;
      gap: 1.5rem;
         align-items: flex-start;}

.step-num {
  display: flex; 
   align-items : center; 
          justify-content: center; 
   width :        40px; 
   height: 40px; 
  background: #ff6b35; 
   color: white; 
  border-radius: 50%; 
   font-weight: 700; 
  flex-shrink: 0;
}

.step-item p 
 {
   color:        #555;
    line-height: 1.7;
    margin: 0;
    padding-top: 0.5rem;
}

.thankyou-actions    {

	    display: flex;
   gap: 1rem;
   justify-content: center;
   margin-bottom:  3rem;
	}

.btn-primary-alt    {
  display: inline-block;
    padding: 1rem 2rem;
    background:      #ff6b35;
   color: white;
    text-decoration: none;
  font-weight: 600;
   border-radius: 4px;
    transition: background 0.3s;
}

.btn-primary-alt:hover {
  background: #e55a28;
}

.btn-secondary-alt {
    display: inline-block;
   padding    :       1rem 2rem;
   background: white;
	 color: #ff6b35;
   text-decoration: none;
         font-weight: 600;
   border-radius: 4px;
               border: 2px solid #ff6b35;
    transition   :      all 0.3s;
}

.btn-secondary-alt:hover {
	background  :   #ff6b35;
	color: white;
}@media(max-width: 768px) {
    .thankyou-actions {
        flex-direction: column;
    }
}.contact-reminder {
    padding-top: 2rem;
	border-top : 1px solid #e0e0e0;
}

.contact-reminder p {
    margin-bottom:      0.5rem;
   color: #555; 

}

.phone-link {
    color: #ff6b35;
   text-decoration:none;
   font-weight: 600;
}

.phone-link:hover   {
    text-decoration: underline;


}