* {
  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: #fafafa;
}

.primary-nav
{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 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: 1280px;
  margin: 0 auto;
  padding :      0 2rem;
  display: flex;
    justify-content: space-between;
  align-items: center; 
	
     }

.brand-section
	{
    display     :       flex;
  align-items: center;
}

.site-logo {
	      height: 42px;
    width: auto;

}

.nav-toggle {


    display: none;
   background: none;
	border: none;
  cursor: pointer;
  flex-direction: column;
   gap: 5px;
}

.burger-line {
   transition: 0.3s;
    background:     #fff;
  height: 3px;
    width: 28px;
}

.nav-links {
  display: flex;
   gap: 2.5rem;
}

.nav-links a {
   color   :        white;
    text-decoration     :  none;
          font-weight: 500;
    transition    :        all 0.3s ease;
   font-size: 1.05rem;
}

.nav-links a:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

.hero-block  
  {
               max-width: 1280px;
    margin: 4rem auto;
    padding: 0 2rem;
   display: grid;
    grid-template-columns: 1fr 1fr;
	 gap: 4rem;
  align-items :       center;
}

.hero-content h1 {
    font-size: 3rem; 
	    color: #1a202c; 
	    margin-bottom: 1.5rem; 
	    line-height: 1.2; 

}



.hero-subtitle {
	    font-size:   1.2rem;
 color: #4a5568;
  margin-bottom     :      2rem;
}

.hero-actions {
	   display: flex;
   gap: 1rem;
	}

.primary-btn
	{
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
   display  : inline-block;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);}

.primary-btn:hover  {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}  

.hero-visual img {
    width: 100%;
   border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.intro-segment,
.services-display,
.approach-section,
.visual-showcase,
.contact-zone {
  padding: 5rem 0;
}

.segment-container {
      max-width: 1280px;
               margin: 0 auto;
    padding     :      0 2rem;

}

h2 {
   font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
   text-align: center;
}

.intro-segment p {
   max-width: 800px;
  font-size :      1.1rem;
   margin: 0 auto 3rem;
                    color: #4a5568;
  text-align   :        center;
}

.benefits-grid {


    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  margin-top: 3rem;}

.benefit-card {
	      background: white;
  padding: 2rem;
   border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
   transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);

}

.benefit-card h3

{

   margin-bottom :        1rem;
   color:        #667eea;
	font-size: 1.5rem;
}

.service-layout {
  display: flex;
  flex-direction: column;
   gap: 3rem;
   margin-top: 3rem;
}

.service-item


{
    display: grid;
    grid-template-columns: 1fr 1.5fr;
  gap :       2rem;
  background: white;
      padding: 2rem;
   border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  align-items: center;
}

.service-item:nth-child(even) {
	 grid-template-columns: 1.5fr 1fr;

}

.service-item:nth-child(even) img {
   order: 2;
}

.service-item img


{
    width: 100%;
      border-radius: 8px;
	
}

.service-details h3 {
  color: #667eea;
	margin-bottom: 1rem;
    font-size: 1.8rem;
}

.cta-section {

  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 5rem 2rem;
   text-align: center;


}

.cta-content h2 {
    color:   white;
	margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(255,255,255,0.95);
    max-width: 700px;
    margin: 0 auto 2rem;
   font-size: 1.15rem;
}

.cta-button {
    background: white;
   color: #667eea;
    padding: 1rem 2.5rem;
   text-decoration: none;
      border-radius: 8px;
   font-weight: 600;
    display: inline-block;
 transition: all 0.3s ease;
}



.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(255,255,255,0.3);
}

.methodology-steps{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
               margin-top: 3rem;
}

.step-box {
  background: white;
               padding: 2rem;
   border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
   position: relative;
}

.step-number {
  font-size    :    3rem;
	font-weight: bold;
  color: rgba(102, 126, 234, 0.2);
               position: absolute;
   top: 1rem;
  right:       1rem;
}

.step-box h3 {
       color: #667eea;
    margin-bottom: 1rem;
                    font-size: 1.4rem;
}


.visual-showcase {
  background: #f7fafc;
}

.visual-showcase .segment-container {
   display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
    align-items :   center;
}

.showcase-img {
  width: 100%;
    border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.showcase-text h2 {
 text-align   : left;
    margin-bottom: 1.5rem;
	
}

.showcase-text p {
   color: #4a5568;
  margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.contact-zone   {
    background:  white;
}

.contact-layout {
    display :       grid;
   grid-template-columns: 2fr 1fr;
    gap: 3rem;
  margin-top: 3rem;
}

.main-contact-form {
	display: flex;
    flex-direction :     column;
  gap: 1.5rem;
}


.form-group {
  display: flex;

	   flex-direction: column;
}

.form-group label {


   margin-bottom:      0.5rem;
   font-weight  :       600;
   color: #2d3748;}

.form-group input,
.form-group select,
.form-group textarea   {
   padding: 0.9rem;
  border     :   2px solid #e2e8f0;
    border-radius    :  6px;
  font-size: 1rem;
   transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
                    border-color: #667eea;
    outline: none;
}

.submit-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
		color: white;
  padding :1rem 2rem;
	border: none;
					border-radius:       6px;
   font-size: 1.1rem;
   font-weight: 600;
  cursor : pointer;
  transition: all 0.3s ease;


}

.submit-btn:hover {
  transform: translateY(-2px);

  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
	
}

.contact-info-panel  {


   background: #f7fafc;
  padding: 2rem;
   border-radius: 10px;
	}

.contact-info-panel h3 {
   color: #667eea;

                    margin-bottom: 1.5rem;
}

.info-item {
   margin-bottom     :       1.5rem;
}

.info-item strong	{
  margin-bottom: 0.5rem;

	  color   :   #2d3748;

	  display    :   block;
}

.info-item p

{
       color: #4a5568;
   line-height:   1.6;}

.main-footer {
  background: #1a202c;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
	 max-width: 1280px;
  margin: 0 auto;
   padding   :  0 2rem;
      display: grid;
   grid-template-columns   :        2fr 1fr 1fr 1.5fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
    height: 40px;
    width    :   auto;
    margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-branding p {

   color: #a0aec0; 
	  font-size: 0.95rem; 
	    line-height: 1.6;
	}

.footer-nav h4,
.footer-legal h4,
.footer-contact h4 {
  margin-bottom: 1rem;
	color: #667eea;
}

.footer-nav a,
.footer-legal a {
    display: block;
   	margin-bottom: 0.5rem;
   	text-decoration: none;
    transition: color 0.3s ease;
   	 color: #a0aec0; 

}

.footer-nav a:hover,
.footer-legal a:hover

{
   color: white;
}  

.footer-contact p {
   color: #a0aec0;
      margin-bottom: 0.5rem;
}

.footer-bottom {
      max-width    :        1280px;
   margin   :   0 auto;
   padding: 1.5rem 2rem 0;
   border-top: 1px solid #2d3748;
    text-align: center;}

.footer-bottom p {
        font-size: 0.9rem;
         color   :        #718096;
}@media (max-width: 968px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        padding: 1rem 0;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-links.active {
        max-height: 300px;
    }

    .nav-links a {
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .hero-block {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .service-item,
    .service-item:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .service-item:nth-child(even) img {
        order: 0;
    }

    .visual-showcase .segment-container {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 2rem;
    }

    .benefits-grid,
    .methodology-steps {
        grid-template-columns: 1fr;
    }
}.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;
    }
}.about-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 6rem 2rem 4rem;
  text-align     :center;
  color: white; 
	
}

.about-hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
}

.about-lead {
   font-size: 1.3rem;
       max-width: 800px;
       margin: 0 auto;
    opacity: 0.95; 
	
}

.our-story {
    padding: 5rem 0;
   background    :  white;
}

.story-layout {
   display: grid;

	       grid-template-columns: 1.2fr 1fr;

	    gap: 4rem;

	  align-items: center;
}

.story-text h2 {
    text-align: left;
       margin-bottom: 2rem;

}

.story-text p {
      margin-bottom: 1.5rem;

    color: #4a5568;

    font-size  :  1.05rem;

  line-height :1.8;
	}

.story-image img  
  {
	   width: 100%;
	 border-radius     :      12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.our-approach-section {
   background: #f7fafc;
    padding: 5rem 0;
}

.approach-intro{
  text-align: center;
     max-width: 750px;
	margin: 0 auto 3rem;
  font-size: 1.1rem;
    color: #4a5568;
}

.approach-grid {
          display: grid;
  grid-template-columns: repeat(2, 1fr);
   gap  :   2rem;
  margin-top: 3rem;
}

.approach-item {
   background: white;
   padding: 2.5rem;
    border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.approach-item h3 {
	color: #667eea;
    margin-bottom: 1rem;
	 font-size: 1.5rem;
}

.approach-item p {
     color: #4a5568;
  line-height: 1.7;
}

.expertise-display {

  padding: 5rem 0;
   background: white;
}

.expertise-blocks {
   margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.expertise-block {
        display: grid;
  grid-template-columns: 1fr 1.5fr;
	gap: 3rem;
   align-items: center;
}

.expertise-block:nth-child(2) {
    grid-template-columns: 1.5fr 1fr;
}

.expertise-block:nth-child(2) .expertise-visual {
   order: 2;
	
}

.expertise-visual img {
    width: 100%;
   border-radius  :       10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.expertise-content h3 {
               color: #667eea;
    font-size: 1.8rem;
  margin-bottom: 1rem;
}



.expertise-content p {
  color: #4a5568;
   font-size: 1.05rem;
	line-height: 1.7;
}

.values-section {
	background     :       #f7fafc;
   padding: 5rem 0;
}

.values-showcase {

	    display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		gap: 2rem;
	  margin-top: 3rem;
}

.value-card {
    background: white;
          padding   :  2rem;
   border-radius: 10px;
  box-shadow: 0 5px 18px rgba(0,0,0,0.08);
	border-top: 4px solid #667eea;
}

.value-card h4 {
                    color: #1a202c;
    font-size: 1.4rem;
   margin-bottom: 1rem;
}

.value-card p{
    color: #4a5568;
    line-height: 1.6;
}  

.process-timeline {

	   padding: 5rem 0;
  background: white; 

	}  

.timeline-container
{

  max-width: 900px;
  margin: 3rem auto 0;
  position:relative;


}

.timeline-step {
   display: grid;
    grid-template-columns: 80px 1fr;
  gap: 2rem;
	margin-bottom: 3rem;
   position: relative;
}

.timeline-step:not(:last-child)::before    {
  content: '';
    position: absolute;
    left   :    39px;
    top: 80px;
   width: 2px;
  height: calc(100% + 1rem);
    background: #e2e8f0;
}

.timeline-marker {

                    width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
    align-items:  center;
  justify-content :   center;
    color: white;
    font-size  :        2rem;
	 font-weight: bold;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.timeline-content h3 {
        color: #667eea;
    font-size: 1.6rem;
         margin-bottom: 0.8rem;
}

.timeline-content p {
	    color: #4a5568;
    line-height: 1.7;

}

.cta-about {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 padding: 5rem 2rem;
   text-align: center;
} 

.cta-about h2 {
  color: white;
    margin-bottom: 1rem;
}

.cta-about p		{
  color: rgba(255,255,255,0.95);
   font-size: 1.2rem;
	max-width: 650px;
   margin: 0 auto 2rem;
}

.cta-btn-about  {
  background: white;
   color : #667eea;
        padding: 1rem 2.5rem;
   text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
   display: inline-block;
   transition: all 0.3s ease;
    font-size: 1.1rem;
}

.cta-btn-about:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(255,255,255,0.3);
}

.thankyou-container {
	 min-height: 70vh;
               display: flex;
    align-items: center;
    justify-content   :       center;
  padding: 4rem 2rem;
    background: #f7fafc;
}

.thankyou-box {
    max-width: 750px;
    background: white;
	padding: 4rem 3rem;
    border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
   text-align: center;
}

.success-icon {
  margin-bottom: 2rem; 

}

.thankyou-box h1 {
  color: #1a202c;
       font-size: 2.5rem;
      margin-bottom :   1rem;

}

.thankyou-message {
  color    :       #4a5568;
    font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.next-steps     {
   text-align: left;
  margin: 3rem 0;
  background: #f7fafc;
   border-radius: 10px;
   padding: 2rem;
}

.next-steps h2 {
    color: #667eea;
  font-size: 1.8rem;
   margin-bottom: 1.5rem;
  text-align: center;
	
} 

.steps-list {
   display: flex;
    flex-direction: column;
   gap: 1.5rem;
}

.step-item {

  display: grid;
    grid-template-columns: 50px 1fr;
    gap: 1rem;
   align-items: start;}

.step-num    {
    -webkit-border-radius    :50%;
         width: 50px;
    -moz-border-radius: 50%;
  height   :  50px;
    background: #667eea;
   color: white;
	 border-radius: 50%;
    display: flex;
   align-items: center;
    justify-content: center;
       font-weight: bold;
    font-size: 1.3rem;
}

.step-item p {
 color: #4a5568;
   line-height: 1.6;
  margin-top: 0.5rem; 
	
}

.thankyou-actions {
  display: flex;
  gap: 1rem;
    justify-content: center;
	margin: 2rem 0;
   flex-wrap: wrap;
}

.btn-primary-ty {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   padding: 1rem 2rem;
   text-decoration: none;
 border-radius: 8px;
          font-weight: 600;
  transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary-ty:hover    {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.btn-secondary-ty 
 {

               background: white; 
  color: #667eea; 
    padding: 1rem 2rem; 
  text-decoration: none; 
   border-radius: 8px; 
    font-weight: 600; 
   border: 2px solid #667eea; 
    transition: all 0.3s ease; 
    display: inline-block;}

.btn-secondary-ty:hover	{
     background: #667eea;
    color: white;
}

.contact-reminder {


  margin-top: 3rem;
   padding-top    :  2rem;
  border-top: 2px solid #e2e8f0;

}

.contact-reminder h3 {
    color: #1a202c;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.contact-reminder p {
       color: #4a5568;
  margin-bottom: 1rem;
}

.phone-link {
   font-weight:     bold;
  transition: color 0.3s ease;
                    color: #667eea;
   text-decoration: none;
  font-size: 1.5rem;
}

.phone-link:hover {
   color: #764ba2;
}@media (max-width: 968px) {
    .about-hero-content h1 {
        font-size: 2.2rem;
    }

    .about-lead {
        font-size: 1.1rem;
    }

    .story-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .approach-grid {
        grid-template-columns: 1fr;
    }

    .expertise-block,
    .expertise-block:nth-child(2) {
        grid-template-columns: 1fr;
    }

    .expertise-block:nth-child(2) .expertise-visual {
        order: 0;
    }

    .values-showcase {
        grid-template-columns: 1fr;
    }

    .timeline-step {
        grid-template-columns: 60px 1fr;
        gap: 1.5rem;
    }

    .timeline-marker {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .timeline-step:not(:last-child)::before {
        left: 29px;
        top: 60px;
    }

    .thankyou-box {
        padding: 3rem 2rem;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .btn-primary-ty,
    .btn-secondary-ty {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .about-hero-content h1 {
        font-size: 1.8rem;
    }

    .thankyou-box h1 {
        font-size: 2rem;
    }

    .step-item {
        grid-template-columns: 40px 1fr;
    }

    .step-num {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}