* {
  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: #f8f9fa;
}

.main-navigation {
   background   :       #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
   position    : sticky;
  top: 0;
    z-index: 1000;
	 padding: 0;


}

.nav-wrapper {
  max-width: 1200px;

	    margin: 0 auto;

	         display: flex;

	    justify-content: space-between;

	  align-items: center;

	   padding: 1.2rem 2rem;
}

.brand-section .site-logo {
   height:      45px;
  width: auto;

}

.nav-toggle {
  display: none;
					background  :     none;
   border: none;
  cursor: pointer;
   flex-direction: column;
   gap: 5px;
}

.hamburger-line {
   width: 28px;
    height: 3px;
    background: #2c3e50;
   transition: all 0.3s ease;
}

.nav-menu
{
   display: flex;
   gap: 2.5rem;
}

.nav-link {
    color: #2c3e50;
    text-decoration     :   none;
    font-weight    :        500;
    transition     :color 0.3s ease;
   font-size: 1rem;
}

.nav-link:hover, .nav-link.active {
  color: #3498db;
	
}

.hero-section {
	max-width: 1200px;
      margin: 0 auto;
   padding: 4rem 2rem;
    display: grid;
               grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
	  font-size    :    2.8rem;
       color    :       #1a252f;
   margin-bottom: 1.5rem;
      line-height: 1.2;}  

.hero-description {
   font-size:   1.15rem;
   color: #5a6c7d;
	 margin-bottom    :    2rem;
   line-height: 1.7;
}

.hero-actions {
   display: flex;
               gap    :      1rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
   transition: all 0.3s ease;
   border-radius: 6px;
  display: inline-block;
    font-weight: 600;
  text-decoration: none;
  padding     :      14px 32px;
}

.btn-primary {
    background   :   #3498db;
  color: #ffffff;
}  

.btn-primary:hover     {
	         background     : #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52,152,219,0.3);


}

.btn-secondary {
		 background: transparent;
    color    : #3498db;
  border: 2px solid #3498db;
}

.btn-secondary:hover {
   background: #3498db;
    color     :     #ffffff;
}

.hero-visual img {
  width: 100%;
   height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.intro-block {
	 padding: 5rem 2rem;
	 background: #ffffff;
}

.content-container {
		 max-width: 1200px;
      margin: 0 auto;
	}

.intro-block h2 {
   	 text-align: center;
  font-size: 2.4rem;
   color: #1a252f;
  margin-bottom: 1.5rem;
     }

.intro-block p {
    font-size: 1.1rem;
  color: #5a6c7d;
   margin-bottom: 1.2rem;
   max-width :    900px;
    margin-left: auto;
	margin-right: auto;
}

.services-overview {
	padding: 5rem 2rem;
        background: #f8f9fa;
} 

.services-overview h2 {


   font-size: 2.4rem;
       color: #1a252f;
   margin-bottom: 3rem;
   text-align: center;
     }

.services-grid {
      display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap :   2.5rem;


}



.service-card {
   background: #ffffff;
     border-radius: 10px;
          overflow: hidden;
     box-shadow: 0 4px 15px rgba(0,0,0,0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.service-image img {
         width:  100%;
   height: 250px;
   object-fit: cover;
}

.service-card h3 {
    font-size: 1.5rem;
	color: #1a252f;
       margin: 1.5rem 1.5rem 1rem;
}

.service-card p {

     color    :       #5a6c7d;
      padding :  0 1.5rem 1.5rem;
   line-height  : 1.6;
	}

.approach-section {
   padding: 5rem 2rem;
   background: #ffffff;
}

.approach-content {
    display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
    align-items: center;
}

.approach-text h2 {
    font-size: 2.4rem;
	   color: #1a252f;
		margin-bottom :1.5rem;
}

.approach-text p {
  font-size: 1.05rem;
   color: #5a6c7d;
   margin-bottom: 1.2rem;
     line-height: 1.7;
}

.benefits-list {
   list-style: none;
	    margin-top: 2rem;
}

.benefits-list li {
  padding    : 0.8rem 0;
   padding-left: 1.8rem;
  position    :  relative;
    color: #2c3e50;
  font-size: 1.05rem;
}

.benefits-list li:before {
  content: "✓";
  position: absolute;
     left: 0;
	color :    #3498db;
        font-weight: bold;
   font-size    :    1.2rem; 
	
}

.approach-image img {

	       width: 100%;
  height: auto;
  border-radius : 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
     }

.cta-section {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    padding: 5rem 2rem;
          text-align: center;
    color: #ffffff;
}



.cta-content h2 {
	font-size  :    2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
  font-size  : 1.2rem;
	margin-bottom: 2rem;
  max-width: 700px;
    margin-left    :        auto;
    margin-right: auto;
    opacity: 0.95;


}

.btn-cta {
        border-radius: 6px;
   text-decoration: none;
      font-weight: 600;
	 display: inline-block;
   transition: all 0.3s ease;
   color: #3498db;
    padding: 16px 40px;
   background:  #ffffff;
	
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.contact-section {
   background: #f8f9fa;
    padding: 5rem 2rem;
}

.contact-section h2 {
   	 font-size   :2.4rem;
  color: #1a252f;
    margin-bottom: 3rem;
    text-align: center;

}

.contact-wrapper {


   display   :  grid;
    grid-template-columns: 2fr 1fr;
                    gap: 3rem;


}

.contact-form {
    background: #ffffff; 
  padding: 2.5rem; 
   border-radius :       10px; 
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.form-group {
   margin-bottom: 1.5rem;
}

.form-group label {
    color: #2c3e50;
  margin-bottom: 0.5rem;
	 display:       block;
          font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
   padding: 12px 15px;
  border: 2px solid #e1e8ed;
	 border-radius: 6px;
	font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
   border-color: #3498db;
}

.form-group textarea


{
	  resize: vertical; 
	
     }

.btn-submit {

	    background: #3498db;
    color: #ffffff;
    padding: 14px 32px;
   border : none;
    border-radius: 6px;
	font-size:       1rem;
  font-weight: 600;
  cursor: pointer;
	 transition: all 0.3s ease;
   width: 100%;
	}  

.btn-submit:hover {
    background: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52,152,219,0.3);
}

.contact-info	{
   background: #ffffff;
   padding: 2.5rem;
   border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.info-block h3 {
   font-size: 1.5rem;
    color: #1a252f;
   margin-bottom: 1.5rem;
}

.info-block p     {
    color: #5a6c7d;
          margin-bottom: 1rem;
  line-height    :  1.6;
}

.main-footer {
    background: #1a252f; 
	    color: #ffffff; 
	    padding: 3rem 2rem 1.5rem;

}

.footer-content {
	 max-width: 1200px;
   margin: 0 auto;
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-bottom :     2rem;
}

.footer-column h4 {
    font-size    :  1.2rem;
  margin-bottom: 1rem;

	}

.footer-logo
	{
   	height: 40px;
    margin-bottom: 1rem;


}

.footer-description {

	   color: #b8c5d0; 
    line-height: 1.6;

}

.footer-links    {
    list-style: none; 
	
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a


{
      color: #b8c5d0;
     text-decoration: none;
  transition: color 0.3s ease;

}

.footer-links a:hover{
   color: #3498db;
}

.footer-column p {
   color :#b8c5d0;
  line-height    :    1.6;


}


.footer-bottom    {
    max-width   : 1200px;
   margin: 0 auto;
    padding-top: 2rem;
               border-top: 1px solid #2c3e50;
   text-align: center;
  color: #b8c5d0; 

}@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 1rem 2rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 1rem 0;
        border-bottom: 1px solid #e1e8ed;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .approach-content {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }
}.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 {
    line-height    :  1.7;
   font-size: 1.1rem;
   margin-bottom: 1.5rem;
     color    :        #7f8c8d;
}  @media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}.about-hero {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: #ffffff;
  padding     : 5rem 2rem;
      text-align: center;
}

.about-hero h1 {
  font-size: 3rem;
	margin-bottom     :     1.5rem;
}

.about-lead {
    font-size: 1.3rem;
    max-width: 800px;
        margin: 0 auto;
	 line-height     :     1.7;
	opacity: 0.95;
}

.story-section {
    padding: 5rem 2rem;

   background: #ffffff;
}  

.story-grid


{
    display: grid;
	grid-template-columns: 1.2fr 1fr;
   gap: 3.5rem;
  align-items: center;
}

.story-content h2 {
   color    :       #1a252f;
  font-size: 2.4rem;
       margin-bottom: 1.5rem;
	
}

.story-content p {
       font-size: 1.05rem;
      color: #5a6c7d;
   line-height: 1.7;
 margin-bottom: 1.3rem;


}

.story-visual img {
      width: 100%;
  height: auto;
               border-radius   :       12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);

}

.values-section {
   padding: 5rem 2rem;
    background: #f8f9fa;
	
}

.values-section h2 {
    font-size  :        2.4rem;
    color: #1a252f;
         margin-bottom: 3rem;
   text-align:     center;
}

.values-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
}

.value-item {
  background:#ffffff;
  padding: 2rem;
	 border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.value-item:hover {
  transform: translateY(-5px);
}

.value-item h3 {
  font-size: 1.4rem;
	color: #3498db;
     margin-bottom: 1rem;
}

.value-item p {
    color :       #5a6c7d;
    line-height: 1.6;
}

.approach-detail {
    padding: 5rem 2rem;
    background: #ffffff;
}

.approach-detail h2 {
          font-size: 2.4rem;
    color: #1a252f;
    margin-bottom: 3rem;
  text-align :        center;
}

.approach-grid {
    display: flex;

    flex-direction: column;

  gap: 4rem;
}

.approach-block {
   display: grid;
	grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items :      center;
}

.approach-block.reverse 
 {
	  direction: rtl;
     }

.approach-block.reverse > * {
    direction: ltr;

}

.approach-block img {
	 width : 100%;
	  height: auto;
	    border-radius: 12px;
	  box-shadow: 0 8px 30px rgba(0,0,0,0.1);


}



.approach-text-content h3 {

   font-size: 1.8rem;
   color: #1a252f;
    margin-bottom     :1rem;
	}

.approach-text-content p {
    font-size: 1.05rem;
    color: #5a6c7d;
  line-height  :     1.7;
   margin-bottom: 1rem;
     }

.experience-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: #ffffff;
}

.experience-section h2 {
    font-size    :     2.4rem;
    margin-bottom: 2rem;
	 text-align: center;
}

.experience-content p {
   font-size  :       1.1rem;
  line-height: 1.7;
  margin-bottom: 1.3rem;
   max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  opacity     :    0.95;
}

.stats-row {
     display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
       gap: 2rem;
    margin-top: 3rem;
	}

.stat-box {

	 text-align :    center;
   padding: 2rem;
  background: rgba(255,255,255,0.1);
		border-radius: 10px;
  backdrop-filter: blur(10px);


}

.stat-number {
   display   :    block;
   font-size: 3rem;
    font-weight: bold;
  margin-bottom: 0.5rem;
}

.stat-label {
  display: block;
  font-size: 1rem;
   opacity: 0.9;
}

.methodology-section {
	 padding: 5rem 2rem;
   background: #f8f9fa;
}

.methodology-section h2 {
	 font-size: 2.4rem;
   color: #1a252f;
  margin-bottom  :1.5rem;
	text-align   : center;
}

.methodology-intro  {
    font-size: 1.1rem;
  color: #5a6c7d;
   text-align: center;
    max-width: 800px;
	 margin: 0 auto 3rem;
}

.methodology-list {
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
     gap: 2rem;
}

.method-card {
  background:#ffffff;

   padding: 2rem;

   border-radius: 10px;

  box-shadow: 0 4px 15px rgba(0,0,0,0.08);

   border-left: 4px solid #3498db;
}

.method-card h3 {
    font-size     :   1.3rem;
  color: #1a252f;
  margin-bottom: 1rem;
}

.method-card p


{
          color: #5a6c7d;
          line-height: 1.6;
}



.cta-about     {
   padding: 5rem 2rem;
   background: #ffffff;
    text-align: center;

}

.cta-about h2

{
    font-size: 2.4rem; 
	  color  : #1a252f; 
	  margin-bottom: 1.5rem;
}

.cta-about p {
 font-size: 1.1rem;
  color: #5a6c7d;
	 max-width:      700px;
   margin: 0 auto 2rem;
}

.thankyou-section {
    min-height: 80vh;
    display: flex;
    align-items    :    center;
	justify-content: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.thankyou-container 
 {
	max-width: 900px;
    background: #ffffff;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 50px rgba(0,0,0,0.1);
  text-align: center;
}

.success-icon {
  margin-bottom: 2rem;
}

.thankyou-container h1 {
   font-size: 2.5rem;
    color: #1a252f;
  margin-bottom: 1.5rem;
}

.thankyou-message {
     font-size    :     1.2rem;
  color: #5a6c7d;
    line-height: 1.7;
   margin-bottom :    3rem;
}

.next-steps {
      margin: 3rem 0;
                    padding: 2rem 0;
  border-top: 2px solid #e9ecef;
  border-bottom   :    2px solid #e9ecef;
     }

.next-steps h2 {
    font-size: 1.8rem;
         color: #1a252f;
	 margin-bottom   :      2rem;
}

.steps-grid {
	display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
   gap  : 2rem;
	text-align: center;
}

.step-item {


	padding: 1.5rem;}

.step-number {
  width: 50px;
  height: 50px;
      -webkit-border-radius: 50%;
    background     :        #3498db;
    -moz-border-radius: 50%;
    color: #ffffff;
	border-radius: 50%;
    display: flex;
   align-items: center;
  justify-content: center;
   font-size   :   1.5rem;
    font-weight    :        bold;
 margin :        0 auto 1rem;
}

.step-item h3


{
               font-size: 1.2rem;
   margin-bottom: 0.8rem;
    color: #1a252f;
}

.step-item p {
   font-size   :0.95rem;
    color: #5a6c7d;
  line-height: 1.5;
}

.thankyou-info {
    margin :      2rem 0;
     padding: 1.5rem;
      background: #f8f9fa;
      border-radius: 8px; 
	
}

.thankyou-info p {
  color: #5a6c7d;
  margin-bottom: 0.5rem;
}

.phone-highlight


{
  font-size: 1.5rem;
      color:     #3498db;
      font-weight: 600;
}

.thankyou-actions {
   display: flex;
  gap: 1rem;
   justify-content: center;
  margin: 2rem 0;
   flex-wrap: wrap;
}

.additional-resources {
	                    margin-top: 3rem;
   padding-top: 2rem;
  border-top   : 1px solid #e9ecef;
     }

.additional-resources h3 {
         font-size: 1.3rem;
    color: #1a252f;
  margin-bottom: 1rem;
}

.additional-resources p    {


    color: #5a6c7d;
		 line-height  :  1.6;
}@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2rem;
    }

    .about-lead {
        font-size: 1.1rem;
    }

    .story-grid {
        grid-template-columns: 1fr;
    }

    .approach-block, .approach-block.reverse {
        grid-template-columns: 1fr;
    }

    .approach-block.reverse {
        direction: ltr;
    }

    .stats-row {
        grid-template-columns: 1fr;
    }

    .thankyou-container {
        padding: 2rem 1.5rem;
    }

    .thankyou-container h1 {
        font-size: 1.8rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .thankyou-actions .btn-primary,
    .thankyou-actions .btn-secondary {
        width: 100%;
    }
}