* {
  margin: 0;
  padding: 0;
	box-sizing     : border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, sans-serif;
                    line-height: 1.6;
   color: #2d3748;
}

.top-section {
       background:#ffffff;
	  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	    position: sticky;
		top:  0;
	   z-index:  1000;

}

.wrap-navigation {
  max-width: 1200px;
  margin: 0 auto;
   display: flex;
  justify-content: space-between;
                    align-items: center;
	padding: 1rem 2rem;
	
}

.brand-zone {
      flex    :0 0 auto;
}

.brand-img {
    height: 45px;
    width: auto;
}

.main-links

{


  gap: 2.5rem;
  display     : flex;
	}

.main-links a {
    color: #2d3748;
         font-size :  1.05rem;
   text-decoration     : none;
   transition:    color 0.3s;
    font-weight: 500;
}

.main-links a:hover {
	 color: #f59e0b;
}

.burger-trigger {


     display: none;

     flex-direction   :        column;

  gap: 5px;

	cursor: pointer;

}

.burger-trigger span


{
    height: 3px;
          transition: all 0.3s ease;
	 width: 28px;
    background: #2d3748;
	
}

.intro-banner {
   display: flex;
    max-width: 1200px;
   margin: 0 auto;
    padding: 5rem 2rem;
   gap: 3rem;
    align-items: center;
}

.content-holder		{

	    flex: 1;
    -ms-flex: 1;}

.content-holder h1 {
   font-size    :        2.8rem;
  color: #1a202c;
   margin-bottom: 1.5rem;
    line-height: 1.2;
}

.lead-txt {
    font-size: 1.2rem;

	  color: #4a5568;

	    margin-bottom: 2rem;
}

.btn-group {
    display: flex;
	gap :     1rem;
    flex-wrap: wrap;
	
}

.primary-action,
.secondary-action {


   padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 6px;
	font-weight  :600;
   transition    :       all 0.3s;
  display   :inline-block;

}

.primary-action{
	 background: #f59e0b;
    color: white;
}

.primary-action:hover {
   background: #d97706;
  transform: translateY(-2px);
}

.secondary-action {
	background:       transparent;
    color    :       #2d3748;
   border: 2px solid #2d3748;
}

.secondary-action:hover {
  background: #2d3748;
    color: white;
}

.visual-part {
  flex: 1;
}

.visual-part img {
    width: 100%;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);

}

.benefits-zone {
  background: #f7fafc;
  padding    :       5rem 2rem;
}

.benefits-zone h2 {
	text-align: center;
	font-size    :2.4rem;
	margin-bottom: 3rem;
    color     :     #1a202c;
}


.advantages-grid {
 max-width: 1200px;
     margin: 0 auto;
       display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.single-benefit {
    background: white;
  padding: 2rem;
	 border-radius   :       8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.single-benefit h3

{
 color: #f59e0b;
  margin-bottom: 1rem;
  font-size  :     1.5rem;
}

.single-benefit p {
	color: #4a5568;
  line-height: 1.7;
}

.showcase-images
	{
  position: relative;
   height: 500px;
  overflow: hidden; 

}

.img-container {


    width  :    100%;

  height: 100%;

}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.text-overlay{
   position: absolute;
   top: 50%;
          left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,0.95);
   padding: 3rem;
    max-width: 600px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.text-overlay h2 {
   color: #1a202c;
	 margin-bottom: 1rem;
    font-size: 2rem;
}

.text-overlay p {
    color:      #4a5568;
   line-height: 1.8;
}

.offerings-list {
	padding: 5rem 2rem;
    max-width :   1200px;
  margin: 0 auto;
}

.offerings-list h2 {

	   text-align: center;
   font-size    :   2.4rem;
  margin-bottom: 3rem;
	color: #1a202c; 

     }

.services-wrapper {

          display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-box
{
     background    : white;
   border-radius: 10px;
   overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
                    transition: transform 0.3s;
} 

.service-box:hover 
 {
  transform: translateY(-8px);}

.service-box img {
    width  :      100%;
   height: 220px;
  object-fit     :cover;
}

.service-box h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  color: #1a202c;
 font-size: 1.6rem;
}

.service-box p {
  padding: 0 1.5rem 1rem;
         color: #4a5568;
  line-height: 1.7; 

}

.link-more {
          display: inline-block;
					margin: 0 1.5rem 1.5rem;
   color: #f59e0b;
  text-decoration: none;
  font-weight: 600;
   transition: color 0.3s;
}

.link-more:hover {
   color: #d97706;
}

.cta-block {


  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
   padding: 5rem 2rem;
    text-align: center; 

}

.cta-content

{
  margin: 0 auto;
   max-width: 800px; 

}

.cta-content h2 {
    color: white;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}



.cta-content p {
   color: white;
    font-size: 1.2rem;
	margin-bottom: 2rem;
   line-height: 1.8;
}

.cta-button {

	        -webkit-transition: all 0.3s;
      -webkit-border-radius: 6px;
     display: inline-block;
     -moz-transition :      all 0.3s;
     background: white;
      -moz-border-radius: 6px;
      color     :        #f59e0b;
     -o-transition: all 0.3s;
     padding: 1rem 2.5rem;
     border-radius: 6px;
      text-decoration: none;
      font-weight :        700;
      font-size  :      1.1rem;
      transition: all 0.3s;
	}

.cta-button:hover {
	 background: #1a202c;
   color: white;
  transform: scale(1.05);
}

.contact-area {
    padding: 5rem 2rem;
    background: #f7fafc;
   display    :grid;
   grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
                    max-width: 1200px;
  margin: 0 auto;
}

.form-side h2 {
        color  : #1a202c;
	  margin-bottom: 1rem;
	   font-size    :    2.2rem;
} 

.form-side p {
   color: #4a5568; 
    margin-bottom: 2rem;
}

.contact-form {
  background: white;
   padding:  2.5rem;
	 border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}


.field-row {
    margin-bottom: 1.5rem;
}

.field-row label     {
    display: block;
    margin-bottom: 0.5rem;
    color: #2d3748;
                    font-weight: 500;
}

.field-row input,
.field-row select,
.field-row textarea


{
    width: 100%;
      padding: 0.8rem;
       border: 2px solid #e2e8f0;
     border-radius: 6px;
      font-size: 1rem;
                  font-family  :    inherit;
     transition: border-color 0.3s;
}

.field-row input:focus,
.field-row select:focus,
.field-row textarea:focus

{
	 outline: none;
   border-color: #f59e0b;
}

.submit-btn {
    -webkit-transition     :    background 0.3s;
  transition: background 0.3s;
  border   :   none;
    font-weight: 600;
	padding: 1rem;
    color: white;
    background: #f59e0b;
    border-radius: 6px;
   font-size: 1.1rem;
   cursor: pointer;
      width: 100%;
}

.submit-btn:hover {
          background: #d97706;
}

.info-side h3 {
       color: #1a202c;
	  margin-bottom: 1.5rem;
	   font-size: 1.8rem;
}


.contact-details p{
	margin-bottom:   1.5rem;
  color: #4a5568;
  line-height: 1.8; 
	
}


.contact-details strong {
  color    :   #2d3748; 
	
}

.bottom-section

{
   color: white;
  padding: 3rem 2rem 1rem;
  background: #1a202c;

}

.footer-container {

  max-width: 1200px;
	 margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
	 margin-bottom: 2rem; 
	
}

.footer-logo {
    height: 40px;
   margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.company-desc {
	 color: #cbd5e0;
  line-height: 1.7;
}

.footer-col h4 {
  margin-bottom: 1rem;

	               color: #f59e0b;
}

.footer-menu {

	    list-style: none;}

.footer-menu li {
  margin-bottom: 0.8rem;
}



.footer-menu a{
    color: #cbd5e0;
    text-decoration: none;
	 transition: color 0.3s;
}

.footer-menu a:hover  {
  color:       #f59e0b;
}

.footer-col p {
   color: #cbd5e0;
   line-height: 1.7;
}

.copyright-bar {
   border-top    :       1px solid #2d3748;
  padding-top: 1.5rem;
   text-align     :center;
   color :      #cbd5e0;
}@media (max-width: 768px) {
    .burger-trigger {
        display: flex;
    }

    .main-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1.5rem 2rem;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        display: none;
    }

    .main-links.active {
        display: flex;
    }

    .intro-banner {
        flex-direction: column;
        padding: 3rem 2rem;
    }

    .content-holder h1 {
        font-size: 2rem;
    }

    .text-overlay {
        position: static;
        transform: none;
        margin: 2rem;
    }

    .contact-area {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}.policySection {
 padding   :80px 2rem;
               background: #f8f9fa;
}

.policyContainer {
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
	
}

.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;
    }
}.hero-about {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../static/lightness_at_work_imagery_1.webp');
 background-size: cover;
    background-position   :     center;
   height :        400px;
    display: flex;
    align-items   :        center;
	justify-content: center;
}

.hero-text-zone {
    text-align  :  center;
  color: white;
}

.hero-text-zone h1 {
	  font-size:   3.2rem;
	    margin-bottom: 1rem;
     }

.subtitle-hero {
     font-size: 1.3rem;
   font-weight: 300;
}

.story-segment {
    background  :      white;
                    padding: 5rem 2rem;
}

.story-container {

	  max-width: 1200px;
    margin: 0 auto;
  display: grid;
    grid-template-columns: 1.2fr 1fr;
       gap: 3rem;
   align-items :     center;

} 

.text-part h2 {
  margin-bottom    :    1.5rem;
    font-size: 2.3rem;
   color: #1a202c;
}

.text-part p {
  color  :       #4a5568;
 line-height: 1.8;
	margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.image-part img {
   width: 100%;
    border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);

}

.philosophy-block		{
    padding: 5rem 2rem;
   background  :#f7fafc;
}

.philosophy-block h2 {
    text-align: center;
   font-size: 2.5rem;
  color: #1a202c;
     margin-bottom: 3rem;
}

.philosophy-grid {
  max-width: 1200px;
	 margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2.5rem;

}

.philosophy-item


{
   background: white;
   padding     :   2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
   border-top    : 4px solid #f59e0b;
}

.philosophy-item h3 {
    color: #f59e0b;
         font-size: 1.6rem;
    margin-bottom     : 1rem;
}

.philosophy-item p {
    line-height: 1.8;
               color: #4a5568;


}

.approach-section {
 padding: 5rem 2rem;
   background: white;
}

.approach-wrapper	{
  max-width: 1200px;
  margin: 0 auto;
          display: grid;
  grid-template-columns: 1fr 1.3fr;
   gap: 4rem;
  align-items: start;
}

.approach-wrapper img
	{
	 width: 100%;
     border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.approach-content h2   {
  font-size :   2.3rem;
    color: #1a202c;
       margin-bottom: 2rem;
}

.method-step {
         margin-bottom: 2rem;

	  padding-left: 1.5rem;

	      border-left :  3px solid #f59e0b;
}

.method-step h4 {
	color: #2d3748;
   font-size: 1.3rem;
   margin-bottom: 0.5rem; 

}



.method-step p {
   color: #4a5568;
     line-height: 1.7;
}

.values-area   {
  background:    #f7fafc;
    padding: 5rem 2rem;
}

.values-area h2 {

	    text-align: center;
    font-size: 2.5rem;
  color: #1a202c;
  margin-bottom: 3rem;

}

.values-display {
   max-width: 1200px;
		 margin: 0 auto;
   display  :  grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: 2rem;
}

.value-card {
    background: white;
    padding :     2rem;
    border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.07);
			transition: transform 0.3s;
}

.value-card:hover {
	  transform: translateY(-5px);
     }

.value-card h3 {
               color: #1a202c;
   font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.value-card p {
   color    :    #4a5568;
       line-height: 1.7;
}

.why-choose-us {
     padding: 5rem 2rem;
    background: white;
  display: grid;
   grid-template-columns: 1.2fr 1fr;
   gap: 3rem;
     max-width: 1200px;
               margin: 0 auto;
	 align-items: center;
}

.why-content h2 {
		font-size    :2.3rem;
  color: #1a202c;
  margin-bottom: 1.5rem;


}

.intro-why {
   color:      #4a5568;
  line-height  :        1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;


}

.reasons-list {
  display: flex;
   flex-direction: column;
  gap: 1.5rem;
}

.reason-point strong {
      display:  block;
    color: #f59e0b;
  font-size  :   1.2rem;
   margin-bottom: 0.5rem;
}

.reason-point p {
		color: #4a5568;
  line-height  :1.7;


}

.why-visual img {
   width  :  100%;
   border-radius: 10px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}

.cta-about {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  padding: 5rem 2rem;
      text-align: center;
    color: white;
}

.cta-about h2  
  {
       font-size: 2.5rem;
	 margin-bottom: 1.5rem;

}

.cta-about p     {


  font-size: 1.2rem;
   max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.btn-cta-about {
    transition: all 0.3s;
  text-decoration: none;
   color: white;
  padding   :       1rem 2.5rem;
    display : inline-block;
    font-weight: 700;
    background: #f59e0b;
  font-size: 1.1rem;
    border-radius: 6px;
}

.btn-cta-about:hover    {
   background: #d97706;
  transform: scale(1.05);
}

.thankyou-main
	{
    min-height  : 70vh;
	 display: flex;
   align-items: center;
   justify-content: center;
   padding: 4rem 2rem;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.thankyou-box {
  background  : white;
    padding: 3rem;
    border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
   max-width: 700px;
   text-align    : center;
}

.success-icon {
  margin-bottom: 2rem;
}

.checkmark-circle		{

	  border-radius     :     50%;
  background: #10b981;
   position: relative;
  margin: 0 auto;
	 height: 80px;
   width: 80px;
}

.checkmark-stem {
   position: absolute;
          width: 6px;
	height: 25px;
        background: white;
   left: 38px;
   top  :  22px;
  transform: rotate(45deg);
	
}


.checkmark-kick {

       position: absolute;
    width    :     6px;
    height: 12px;
  background: white;
   left: 28px;
  top: 38px;
  transform: rotate(-45deg);}

.thankyou-box h1 {
 font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.main-message     {
  font-size: 1.1rem;
  color  : #4a5568;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.next-steps {

	    background: #f7fafc;
   padding: 2rem;
   border-radius: 8px;
       margin-bottom :       2rem;
               text-align   :       left;

}

.next-steps h3

{
	color: #1a202c;
  margin-bottom   :        1rem;
   text-align   :     center;
  font-size: 1.4rem;

}

.steps-list {
  list-style: none;
  padding: 0;
}

.steps-list li {
         padding: 0.8rem 0;
   color: #4a5568;
  position: relative;
   padding-left: 2rem;

}

.steps-list li:before {
  content: '✓';
 position: absolute;
   left: 0;
    color: #10b981;
  font-weight: bold;
  font-size: 1.2rem;
}

.action-buttons	{
   display  :       flex;
    gap: 1rem;
  justify-content: center;
	flex-wrap    : wrap;
}

.btn-primary-ty,
.btn-secondary-ty {
  padding: 0.9rem 2rem;
    text-decoration: none;
   border-radius: 6px;
  font-weight: 600;
   transition: all 0.3s;
  display: inline-block;
}

.btn-primary-ty {
    background: #f59e0b;
   color: white;
}  

.btn-primary-ty:hover {
  background: #d97706; 

}

.btn-secondary-ty {
  background: transparent;
       color: #2d3748;
   border: 2px solid #2d3748;
}

.btn-secondary-ty:hover {
      background: #2d3748;
    color :       white;
	}

.additional-info-ty {

	   padding: 4rem 2rem;
    background: white;
	
}

.info-grid-ty {
    max-width: 1200px;
      margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
} 

.info-box-ty {
	    background: #f7fafc;
    padding: 2rem;
   border-radius: 8px;
   border-left  :      4px solid #f59e0b;
	}

.info-box-ty h3 {
  color: #1a202c;
    font-size: 1.4rem;
   margin-bottom: 0.8rem;
}

.info-box-ty p {
   color: #4a5568;
   line-height: 1.7;
}@media (max-width: 768px) {
    .hero-text-zone h1 {
        font-size: 2rem;
    }

    .story-container,
    .approach-wrapper,
    .why-choose-us {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .philosophy-grid,
    .values-display {
        grid-template-columns: 1fr;
    }

    .thankyou-box {
        padding: 2rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn-primary-ty,
    .btn-secondary-ty {
        width: 100%;
    }
}