* {
  margin: 0;
         box-sizing: border-box;
    padding: 0;
}

body  {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height: 1.6;
    color: #2c3e50;
	background: #fafafa;
}

.topbar-wrapper {
	 background: #ffffff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition     :        all 0.3s ease;
}

.topbar-wrapper.scrolled {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.navContainer {
	 max-width: 1200px;
    margin: 0 auto;
      padding: 0 20px;
    display: flex;
   justify-content: space-between;
  align-items: center;
   height: 70px;
     }

.brand-section a {
   display: block;
}

.brand-image {
	height: 45px;
   width: auto;
}



.nav-links {
    display: flex;
      list-style :  none;
	gap: 35px;
     }

.nav-links li a  {
  text-decoration: none;
  color: #2c3e50;
   font-weight: 500;
    font-size   :     16px;
    transition: color 0.3s;
}

.nav-links li a:hover {
  color: #667eea;
}

.burger-toggle {
       display   :    none;

  background: none;

    border: none;

  cursor  :pointer;

    flex-direction: column;

    gap: 5px;
     }

.burger-line {
   width: 28px;
  height: 3px;
   background: #2c3e50;
       transition:      all 0.3s ease;
}

.burger-toggle.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}


.burger-toggle.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-toggle.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}@media (max-width: 768px) {
    .burger-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background: #ffffff;
        width: 100%;
        padding: 30px 20px;
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        transition: right 0.4s ease;
        gap: 20px;
    }

    .nav-links.active {
        right: 0;
    }
}.hero-block {
    padding: 120px 20px 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-content-wrapper {
    max-width: 1200px;

	  margin   :    0 auto;

	  display: grid;

	    grid-template-columns: 1fr 1fr;

	  gap     :60px;

	    align-items: center;
}  

.text-zone h1 {


  font-size: 48px;
               color: #ffffff;
    margin-bottom: 20px;
  line-height: 1.2;

}

.intro-description {
   font-size: 19px;
  color :#f0f0f0;
               margin-bottom: 35px;
}

.cta-buttons {
 display: flex; 
	    gap: 18px; 
	          flex-wrap: wrap;
}

.primary-action, .secondary-action {
   transition: all 0.3s;
    padding  :14px 32px;
   border-radius: 6px;
	text-decoration: none;
    display: inline-block;
  font-weight: 600;
}

.primary-action {
  background: #ffffff;
	 color: #667eea;
}

.primary-action:hover   {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.secondary-action {
   background: transparent;
  color: #ffffff;
    border: 2px solid #ffffff;
}

.secondary-action:hover {
    background: #ffffff;
  color: #667eea;
}

.hero-img {
    width: 100%;
         border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}@media (max-width: 968px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .text-zone h1 {
        font-size: 36px;
    }

    .visual-zone {
        order: -1;
    }
}.approach-segment, .services-overview, .thinking-section, .contact-segment {
      padding   :       80px 20px;
     }

.segment-wrapper {
     max-width     :      1200px;
   margin: 0 auto;
     }

.approach-segment h2, .services-overview h2, .thinking-section h2, .contact-segment h2 {
    font-size: 38px;
	   color: #2c3e50;
	        margin-bottom: 20px;
	    text-align     :   center;
}

.segment-intro {
	font-size: 18px;
 color: #555;
   text-align     :center;
  max-width: 800px;
    margin: 0 auto 50px;
}

.feature-grid {
	  display    :    grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
       margin-top: 50px;
}

.feature-card {
  background: #ffffff;
   padding: 35px;
    border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;


}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.icon-holder {


   margin-bottom: 20px;
        color: #667eea;
     }

svg {
      width: 0;
   height: 0;

}

.icon-holder svg {

    width: 48px;
   height :  48px;
    stroke: #667eea;
   fill: none;
    stroke-width: 2;
  stroke-linecap: round;
   stroke-linejoin: round;


}

.feature-card h3 {
    font-size: 22px;
   color: #2c3e50;
   margin-bottom: 12px;

}

.feature-card p {
  color: #666;
   font-size: 16px;
}

.services-layout  
  {
	 display :     grid; 
	        gap: 40px; 
	    margin-top: 50px;


}

.service-item {
    display: grid;
  grid-template-columns: 1fr 1.5fr;
	gap   :30px;
    background: #ffffff;
	border-radius: 10px;
  overflow     :      hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.service-item:nth-child(even) {
  grid-template-columns: 1.5fr 1fr;
}

.service-item:nth-child(even) img  
  {
               order    :2;
}

.service-item img {
    width: 100%;
   height: 100%;
		object-fit: cover;
}

.service-text {
 justify-content: center;
                    padding: 35px;
	display: flex;
   flex-direction: column; 
	
}

.service-text h3 {
         font-size: 26px;
    color: #2c3e50;
   margin-bottom: 15px;
	
}

.service-text p {

  color: #666; 
	         font-size: 17px;
}@media (max-width: 768px) {
    .service-item, .service-item:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .service-item:nth-child(even) img {
        order: 0;
    }
}.cta-block {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);

	  padding: 80px 20px;
}

.cta-inner {


    margin: 0 auto;
  text-align: center;
  max-width: 800px;


}

.cta-inner h2 {
    font-size: 38px;
  color: #ffffff;
   margin-bottom: 20px;
}

.cta-inner p {
   font-size: 19px;
   color: #ffffff;
    margin-bottom  :       35px;
	}

.cta-button-large {
  display: inline-block;
   background: #ffffff;
  color: #f5576c;
    padding: 16px 40px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
	 font-size: 18px;
    transition: all 0.3s;
}

.cta-button-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.content-split {
    display    :      grid;
   grid-template-columns: 1fr 1fr;
   gap    :      50px;
	align-items: center;

}

.text-column h2 {
    text-align: left;
    margin-bottom : 20px;


}

.text-column p    {


    font-size    :    17px;
   color:        #555;
	 margin-bottom: 20px;
}

.benefit-list {

	  list-style: none;
  margin-top: 25px;}

.benefit-list li {
    padding-left: 30px;
	 position     :  relative;
   margin-bottom: 12px;
    color  :#555;
   font-size: 17px;
}

.benefit-list li:before {
  content: "✓";
  position: absolute;
    left: 0;
   color: #667eea;
    font-weight: bold;
  font-size: 20px;
}

.image-column img    {
    width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}@media (max-width: 968px) {
    .content-split {
        grid-template-columns: 1fr;
    }
}.contact-segment {
  background: #f5f5f5;
}

.contact-intro {
 text-align :        center;
    max-width: 700px;
  margin: 0 auto 40px;
    color: #555;
    font-size: 17px; 

}

.contact-form {
  max-width   :        700px;
               margin: 0 auto;
    background: #ffffff;
   padding: 40px;
   border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.form-row {
    display: grid;
  grid-template-columns: 1fr 1fr;
         gap: 20px;
    margin-bottom: 20px;
}@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}.input-group	{
   display: flex;
   flex-direction  : column;
}

.input-group label {
       margin-bottom: 8px;
  color  :        #2c3e50;
    font-weight: 500;
}

.input-group input, .input-group select, .input-group textarea {
    padding: 12px;
    border: 2px solid #e0e0e0;
     border-radius     :       6px;
      font-size: 16px;
       font-family  :  inherit;
      transition:   border-color 0.3s;
}

.input-group input:focus, .input-group select:focus, .input-group textarea:focus  
  {
   outline: none;
   border-color: #667eea;
}

.submit-btn {
   width: 100%;
    padding: 14px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
	border-radius: 6px;
 font-size: 17px;
		font-weight: 600;
	cursor: pointer;
   transition: all 0.3s;
     margin-top: 10px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.site-footer
{
  background  :    #2c3e50;
  color :       #ffffff;
   padding: 60px 20px 20px;
	}

.footer-container {
	    max-width: 1200px;
  margin :     0 auto;
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
               gap: 40px;
   margin-bottom: 40px;
     }

.footer-logo {
   height: 40px;
    width: auto;
          margin-bottom: 15px;
  filter: brightness(0) invert(1);
     }

.footer-description {
    color: #bbb;
   font-size: 15px;
}

.footer-section h4 {
		margin-bottom: 15px;
   font-size: 18px;}

.footer-nav {
    list-style: none;
	
}

.footer-nav li {
    margin-bottom: 10px;


}

.footer-nav a

{
  color: #bbb;
    text-decoration: none;
	transition: color 0.3s;
}

.footer-nav a:hover {
    color   :   #ffffff;
}

.footer-section p {
       color: #bbb; 
	  font-size: 15px; 
	  line-height   :   1.8;
}

.phone-contact {
      margin-top    :       10px;}



.footer-bottom {
    text-align: center; 
    padding-top  : 30px; 
    border-top: 1px solid #3a4f63; 
	color: #999;
}

.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-header-services {
	  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    padding: 140px 20px 80px;
    text-align: center;}

.header-content h1 {
   font-size: 44px;
    color     :#ffffff;
  margin-bottom: 18px;

}

.header-subtitle   {
       font-size: 19px;
    color: #f0f0f0;
                    max-width: 700px;
   margin: 0 auto;
}

.services-detailed	{
	  padding   :  80px 20px;
	}

.service-detail-block {
   display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 80px;
         align-items: start;

} 

.service-detail-block.reverse-layout {
	 grid-template-columns: 1.2fr 1fr;
}  

.service-detail-block.reverse-layout .detail-image-wrapper {
   order: 2;
}

.detail-image-wrapper img {
  width :    100%; 
	border-radius: 12px; 
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.detail-text-wrapper h2 {
  font-size: 32px;
  color: #2c3e50;
                    margin-bottom: 18px;
}

.detail-text-wrapper p {
   color: #555;
   line-height:    1.7;
       margin-bottom: 25px;
   font-size: 17px;
}

.feature-highlights {
	   display     :  grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap    :  20px;
  margin: 30px 0;
}

.highlight-item 
 {
  background: #f8f9fa;
	 padding  :    20px;
   border-radius: 8px;
    border-left: 4px solid #11998e;
}

.highlight-item h4 {
     font-size: 18px;
               color: #2c3e50;
   margin-bottom: 8px;
}

.highlight-item p {
    font-size: 15px;
    color  :  #666;
    margin: 0;
}

.detail-info {
	  font-size: 16px;
  color: #666;
  font-style: italic;
   background: #f0f7f4;
    padding: 18px;
    border-radius: 8px;
    margin-top: 20px;
	}@media (max-width: 968px) {
    .service-detail-block, .service-detail-block.reverse-layout {
        grid-template-columns: 1fr;
    }

    .service-detail-block.reverse-layout .detail-image-wrapper {
        order: 0;
    }
}.additional-services {
	    background: #f5f5f5;
   padding: 80px 20px;

}  

.additional-services h2 {
    font-size     :     38px;
    color: #2c3e50;
 text-align: center;
    margin-bottom: 50px;
}

.services-grid		{
   display   :  grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
   gap: 30px;
}

.service-card {
	background: #ffffff;
  padding: 35px;
  border-radius     : 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
	transition :        transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.card-icon {
         margin-bottom :       20px; 
    color: #11998e;
	}

.card-icon svg {
    width: 52px;
          height: 52px;
    stroke : #11998e;
  fill: none;
	stroke-width   :       2;
  stroke-linecap:        round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-size: 22px;
  color    :     #2c3e50;
    margin-bottom: 12px;
}

.service-card p {
   font-size     :     16px;
  color: #666;
  line-height: 1.6;
}

.methodology-section {
    padding: 80px 20px;
}

.methodology-section h2

{
      font-size: 38px;
   color: #2c3e50;
  text-align: center;
  margin-bottom: 50px;
}

.methodology-content {
    display: grid;
	 grid-template-columns: 1.3fr 1fr;
	 gap: 50px;
   align-items: center;
}

.method-text p {
	    font-size     :  17px;
  color: #555;
   margin-bottom: 35px;
  line-height:1.7;
	}

.process-steps {
	display: flex;
  flex-direction:        column;
    gap: 25px;
}

.step-item {
  display: flex;
    gap: 20px;
	align-items: start;
}

.step-number {

    font-size  :        32px;
   font-weight: bold;
	 color: #11998e;
  min-width:        50px;


}

.step-content h4     {
   font-size     :    20px;

	  color: #2c3e50;

	    margin-bottom: 6px;
}

.step-content p {
   font-size: 16px;
    color: #666;
   margin: 0;
}

.method-visual img {
  width: 100%;
   border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}@media (max-width: 968px) {
    .methodology-content {
        grid-template-columns: 1fr;
    }
}.cta-services {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 20px;
}

.cta-services-inner {
  max-width: 800px;
  margin: 0 auto;
	text-align: center;
}

.cta-services-inner h2  {
 font-size: 38px;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-services-inner p {
   font-size: 18px;
       color: #ffffff;
     margin-bottom: 35px;
}

.cta-services-btn {
    display:        inline-block;
   background: #ffffff;
   color :#667eea;
  padding    :     16px 40px;
   text-decoration: none;
    border-radius: 6px;
  font-weight: 600;
  font-size: 18px;
    transition: all 0.3s;
}

.cta-services-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.thankyou-section {
     min-height: calc(100vh - 70px);
    display: flex;
                    align-items: center;
   justify-content: center;
   padding: 100px 20px 60px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
     }

.thankyou-container {
   max-width: 800px;
  background: #ffffff;
	padding:     60px 40px;
    border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
   text-align: center;
}

.success-icon-wrapper {

    margin-bottom   : 30px;


}

.success-icon-wrapper svg {


  fill: none;
    height:     80px;
  stroke-linejoin: round;
    stroke: #11998e;
  stroke-width    :       2;
   stroke-linecap: round;
   width: 80px; 
	
     }

.thankyou-container h1 {
     color: #2c3e50;
               margin-bottom  :    20px;
   font-size :       36px;}

.thankyou-message {
   font-size: 18px; 
                    color: #555; 
    margin-bottom    : 45px; 
  line-height :      1.7;
}


.next-steps {
       margin-bottom: 40px;

}

.next-steps h3     {
   font-size: 26px;
  color:#2c3e50;
    margin-bottom: 30px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap :       25px;
  text-align :      left;
}

.step-box {

  background: #f8f9fa;
        padding     :     25px;
  border-radius: 8px;
  position: relative;
     }

.step-num {
    display: inline-block;
               background: #11998e;
	color: #ffffff;
   width: 35px;
     height: 35px;
	 border-radius: 50%;
	text-align: center;
   line-height    :      35px;
    font-weight: bold;
   margin-bottom: 15px;


}

.step-box h4{
    font-size: 19px;
  color: #2c3e50;
    margin-bottom:        8px;
}

.step-box p

{
             font-size: 15px;

	               color: #666;

	    margin: 0;
}

.action-buttons {
   display: flex; 
	    gap: 18px; 
	 justify-content: center; 
	    flex-wrap    :wrap; 
	               margin-bottom: 35px;
}

.btn-primary, .btn-secondary {
   display: inline-block;
  padding: 14px 32px;
    text-decoration: none;
   border-radius: 6px;
   font-weight  :      600;
  transition  :     all 0.3s;
}

.btn-primary
	{
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
     color: #ffffff;
}

.btn-primary:hover {


  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(17, 153, 142, 0.3);
	}

.btn-secondary {
	    background: transparent;
  color     :       #11998e;
   border: 2px solid #11998e;
     }

.btn-secondary:hover {
  color: #ffffff;
         background: #11998e; 
	
}

.additional-info {
   padding-top :30px;
   border-top: 1px solid #e0e0e0;
}

.additional-info p {
	         font-size:     16px;
  color: #777;
    margin   :      0;
     }@media (max-width: 768px) {
    .thankyou-container {
        padding: 40px 25px;
    }

    .thankyou-container h1 {
        font-size: 28px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
}