* {
    margin  :    0;
   padding: 0px;
   box-sizing: border-box;
}

body {

  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
   color: #2c3e50;
    background-color: #fdfdfd;

}

.main-navigation {
   background: #fff;
     box-shadow: 0 2px 15px rgba(0,0,0,0.1);
   	position: fixed;
      width: 100%;
       top: 0;
      z-index: 1000;
     padding: 12px 0;
}

.nav-container {
  max-width: 1200px;
   margin: 0 auto;
  display: flex;
       justify-content :   space-between;
				 align-items: center;
   padding: 0 20px;
}  

.brand-section {
    display: flex;
    align-items: center;
    gap: 12px;
}  

.company-logo   {
  height: 45px; 
  width: auto;
}

.brand-name {
	   font-size: 22px;
	 font-weight: 700;
   color: #2c5aa0;
}

.nav-links {
   display: flex;
  gap:35px;
}

.nav-item {
   text-decoration: none;
    color: #34495e;
	 font-weight: 500;
    transition: color 0.3s ease;
  padding: 8px 16px;
  border-radius: 5px;


}

.nav-item:hover, .nav-item.active {


    color: #2c5aa0;
      background-color: #f8f9fa;



}

.mobile-toggle {
   display: none;
          flex-direction    :        column;
  cursor: pointer;
    gap: 4px;
}

.hamburger-line {
	width: 25px;
  height: 3px;
    background-color: #2c5aa0;
  transition     :       0.3s; 

}

.hero-section {
  margin-top: 80px;
  min-height: 85vh;
   display: flex;
   align-items: center;
    padding: 60px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color     :    white;
}

.hero-content {


                    max-width: 1200px;
  margin: 0 auto;
   display   :grid;
    grid-template-columns: 1fr 1fr;
  gap: 50px;
    align-items: center;}

.main-headline {
    font-size: 3.2rem;
    font-weight: 800;
	line-height: 1.2;
    margin-bottom: 25px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-description {
         font-size: 1.3rem;
    margin-bottom: 35px;
   opacity: 0.95;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
   gap: 20px;
  flex-wrap: wrap;
}

.primary-cta, .secondary-cta {
   padding: 15px 30px;
    border-radius: 8px;
  text-decoration: none;
         font-weight   :       600;
   transition: all 0.3s ease;
  display: inline-block;
}

.primary-cta {
    background-color: #ff6b6b;
   color   :    white;
  box-shadow: 0 4px 15px rgba(255,107,107,0.4);
}

.primary-cta:hover {
  background-color   :       #ee5a5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,107,107,0.6);
}

.secondary-cta {
  border: 2px solid white;
   background-color: transparent;
  color: white;
}

.secondary-cta:hover		{
   background-color: white;
    color: #2c5aa0;
}

.hero-visual {
  position  : relative;
}

.hero-image {
	width: 100%;
     height: auto;
   border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.services-overview
{
  padding    :  100px 20px;
   background-color: #f8f9fa;
}

.content-wrapper {
  max-width: 1200px;
  margin:   0 auto;
}

.section-title {
   text-align: center;
  font-size: 2.8rem;
   color: #2c3e50;
    margin-bottom     : 60px;
   font-weight: 700; 

}

.services-grid {

	   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.service-card {
    background: white;
    padding: 35px;
	 border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-image {
    width: 100%;
   height     :       200px;
  object-fit: cover;
   border-radius: 8px;
    margin-bottom: 25px;


}

.service-card h3 {
    font-size: 1.5rem;
       color: #2c5aa0;
    margin-bottom: 15px;
  font-weight: 600;
}

.service-card p {
       color: #666;
   line-height: 1.7;
}

.value-proposition {
    padding: 100px 20px;
   background: white;
}

.value-content {

	  display: grid;
        grid-template-columns: 1fr 1fr;
    gap: 60px;
   align-items:   center;}


.value-content h2 {
   font-size: 2.5rem;
  color: #2c3e50;
	 margin-bottom: 25px;
  font-weight: 700;
}

.value-content p {
  font-size: 1.1rem;
   margin-bottom: 30px;
  color: #666;
    line-height: 1.8;
	
}

.benefits-list {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  padding-left: 25px;
        position: relative;
    padding: 12px 0;
  font-weight    : 500;
 color: #2c3e50;
}

.benefits-list li:before {
  content: "✓";
    position: absolute;
    left: 0;
    color: #ff6b6b;
   font-weight  :       bold;
    font-size: 1.2em;
}

.feature-img {
    width: 100%;
   height: auto;
   border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.cta-section {
  background: linear-gradient(135deg, #2c5aa0 0%, #667eea 100%); 
	  color: white; 
	   padding: 80px 20px; 
	    text-align: center;
}

.cta-container h2 {
   font-size  :        2.5rem;
    margin-bottom: 20px;
					font-weight: 700;
}

.cta-container p {
  font-size :      1.2rem;
    margin-bottom: 35px;
	opacity: 0.9;
}

.cta-button {
  background-color: #ff6b6b;
  color: white;
    padding: 18px 40px;
  border-radius: 8px;
	text-decoration: none;
    font-weight :   600;
    font-size: 1.1rem;
   transition: all 0.3s ease;
   display   :        inline-block;
  box-shadow: 0 4px 15px rgba(255,107,107,0.4);
}

.cta-button:hover {
    background-color: #ee5a5a;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255,107,107,0.6);
}

.contact-section		{
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.contact-container    {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-container h2 {
	text-align: center;
    font-size: 2.8rem;
   color: #2c3e50;
   margin-bottom: 60px;
   font-weight: 700;
}

.contact-wrapper {
    display: grid;
  grid-template-columns: 1fr 2fr;
	gap: 50px;
   align-items: start;
}

.contact-info h3 {
   font-size: 1.8rem;
                    color: #2c5aa0;
   margin-bottom: 30px;
   font-weight: 600;
}

.info-item {
	   margin-bottom: 20px;
   font-size: 1.1rem;
    color: #666;
  line-height: 1.6;

}

.contact-form {
  background: white;
  padding: 40px;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}



.form-group {
  margin-bottom: 25px;
}

.form-input, .form-select, .form-textarea{

		font-size: 1rem;
  font-family: inherit;
  transition   :       border-color 0.3s ease;
	border-radius: 8px;
    padding: 15px;
   border: 2px solid #e1e8ed;
    width: 100%;
}

.form-input:focus, .form-select:focus, .form-textarea:focus
	{
	outline: none;
    border-color: #2c5aa0;
  box-shadow: 0 0 0 3px rgba(44,90,160,0.1);
}

.form-textarea 
 {
  resize: vertical;

   min-height: 120px;
}

.submit-btn {
    background-color: #2c5aa0; 
    color: white; 
         padding: 15px 35px; 
  border: none; 
    border-radius: 8px; 
   font-size: 1.1rem; 
   font-weight: 600; 
  cursor: pointer; 
      transition   :    all 0.3s ease; 
  width: 100%;
}

.submit-btn:hover {
   background-color: #1e3d6f;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(44,90,160,0.3);
}  

.site-footer


{
   background-color: #2c3e50;
    color: white;
    padding: 60px 20px 20px;
}


.footer-content  
  {
	max-width: 1200px;
   margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-logo {
   height: 50px;
  width:      auto;
  filter: brightness(0) invert(1);
               margin-bottom   :      20px;
}

.footer-description {
    color: #bdc3c7;
   line-height: 1.6;
  margin-bottom: 20px;
}


.footer-section h4 {
  color: white;
    margin-bottom: 20px;
   font-size   :       1.2rem;
   font-weight: 600;
}

.footer-links {
  list-style    :        none;
	
}

.footer-links li {
	   margin-bottom: 10px;


}

.footer-links a {
  color: #bdc3c7;
  text-decoration: none;
          transition :    color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}


.footer-bottom {
       border-top: 1px solid #34495e;
 margin-top: 40px;
	padding-top: 20px;
    text-align: center;
	color: #bdc3c7;
}@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .main-headline {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .value-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-buttons {
        justify-content: center;
    }

    .section-title {
        font-size: 2.2rem;
    }
}.about-hero {
    margin-top: 80px;
  background: linear-gradient(135deg, #2c5aa0 0%, #667eea 100%);
    color: white;
   padding  :  100px 20px;
	text-align: center; 
	
}

.about-hero-content h1 {
	   font-size: 3rem;
    font-weight  :       800;
   margin-bottom: 25px;
  max-width  :   800px;
  margin-left   : auto;
	margin-right: auto;}

.about-hero-content p {
   font-size: 1.3rem;
    max-width: 700px;
  margin:      0 auto;
   opacity: 0.9;
   line-height: 1.7;
}

.mission-section {
  padding: 100px 20px;
 background: white;
}

.mission-content {
  display: grid;
   grid-template-columns: 1fr 1fr;
     gap: 60px;
        align-items: center;
}

.mission-text h2 {
   font-size: 2.5rem;
  color: #2c3e50;
    margin-bottom: 30px;
   font-weight: 700;
}

.mission-text p {

	  font-size: 1.1rem;
    color: #666;
   line-height: 1.8;
	 margin-bottom: 25px;
	

}

.mission-img {
    width: 100%;
   height: auto;
    border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.story-section {
  background-color: #f8f9fa;
    padding   :  100px 20px;
}

.story-timeline {
  max-width: 800px;
  margin: 0 auto;
	position     :      relative; 

}

.story-timeline::before {
  content: '';
   position:       absolute;
    left: 30px;
   top: 0;
   bottom: 0;
   width: 2px;
    background: #2c5aa0;
	
}

.timeline-item {
    display: flex;
   margin-bottom: 50px;
   position: relative;
}

.timeline-year {

   background  :      #2c5aa0;
   color: white;
    width: 60px;
  height: 60px;
   border-radius: 50%;
    display :flex;
                    align-items: center;
   justify-content: center;
    font-weight: bold;
    font-size    : 0.9rem;
  flex-shrink: 0;
  position: relative;
   z-index: 2;
	}

.timeline-content {
  margin-left: 40px;
  background: white;
  padding: 25px 30px;
 border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    flex    :      1;
}

.timeline-content h3 {
   color: #2c5aa0;
  font-size: 1.4rem;
    margin-bottom: 10px;
  font-weight: 600;
}

.timeline-content p {
  color: #666;
    line-height: 1.6;
}

.approach-section {
   	 padding: 100px 20px;
  background: white;
	}

.approach-grid {
    display    :    grid;
	 grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.approach-text h2 {
   font-size: 2.5rem;
  color: #2c3e50;
    margin-bottom: 25px;
   font-weight: 700;
}

.approach-text > p {
    margin-bottom: 40px;
      color: #666;
     line-height   :    1.8;
      font-size: 1.1rem;
	}

.principles-list   {

    display: flex;
    flex-direction: column;
    gap: 25px;}

.principle-item h4 {
    color: #2c5aa0;
   font-size: 1.2rem;
  margin-bottom: 8px;
   font-weight: 600; 

}

.principle-item p {
        color: #666;
  line-height: 1.6;
    font-size: 0.95rem;

}

.approach-img {
  width   :     100%;
  height: auto;
    border-radius  :  12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.team-section {


   padding: 100px 20px;
  background-color:  #f8f9fa;
    text-align: center;
     }

.team-intro {
       font-size: 1.2rem;
    color: #666;
   max-width: 600px;
   margin    : 0 auto 60px;
   line-height: 1.7;
}

.team-stats {
      display  :     grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
	 max-width: 800px;
   margin: 0 auto; 
	}

.stat-item {
    background: white;
   padding: 40px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.stat-number {
   font-size: 3rem;
	 font-weight: 800;
   color: #2c5aa0;
   margin-bottom: 10px;
}

.stat-label     {
   color: #666;
   font-weight: 500;
  font-size: 1.1rem;
}

.methodology-section  
  {
    padding: 100px 20px;
   background: white;
     }

.methodology-steps {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap     :     40px;
		 margin-top: 60px;
	
}

.step-card {
  background :   #f8f9fa;
    padding: 35px;
    border-radius: 15px;
   text-align: center;
   position: relative;
   transition: transform 0.3s ease;
}

.step-card:hover 
 {
  transform: translateY(-5px);
}

.step-number {
         background: #ff6b6b;
   color: white;
  width: 50px;
    height:   50px;
   border-radius: 50%;
  display: flex;
                    align-items: center;
	justify-content: center;
  font-weight: bold;
    font-size: 1.2rem;
   margin  :    0 auto 20px;
}  

.step-card h3 {
	color: #2c3e50;
	 font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.step-card p {
  color: #666;
      line-height: 1.6;
                  margin-bottom  :        25px;
}

.step-img {
   width: 100%;
   height: 180px;
                    object-fit: cover;
   border-radius: 8px;
}

.cta-about {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
    color: white;
    padding: 80px 20px;
   text-align: center;
}

.cta-about h2 {
	font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-about p
{
    font-size: 1.2rem;
    margin-bottom: 35px;
  opacity: 0.9;
}

.thankyou-main {
    margin-top: 80px;
  min-height: calc(100vh - 80px);
  display: flex;
                    align-items: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.thankyou-container {
    max-width: 800px;
  margin: 0 auto;
    text-align: center;
   background: white;
    padding: 60px 40px;
   border-radius   :  20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.success-icon {
  margin-bottom: 30px;
}

.checkmark-circle {
    width: 80px;
  height: 80px;
   -moz-border-radius   :50%;
  background: #28a745;
   border-radius    :     50%;
	margin: 0 auto;
    display: flex;
    align-items: center;
  justify-content: center;
  position: relative;
}

.checkmark {
        width: 30px;
  height: 15px;
   border: 3px solid white;
  border-top: none;
   border-right: none;
  transform: rotate(-45deg);
   margin-top :      -5px;
}

.thankyou-title {
	  font-size: 2.8rem;
  color   :       #2c3e50;
  margin-bottom: 20px;
  font-weight: 700;

}

.thankyou-message     {
    font-size: 1.2rem;
  color: #666;
	margin-bottom: 50px;
  line-height: 1.7;
}

.next-steps  {
  margin-bottom: 50px;
}

.next-steps h3 {
   font-size: 1.8rem;

	  color: #2c5aa0;

	    margin-bottom: 30px;

	  font-weight: 600;
}

.steps-list {
	  display: flex;
  flex-direction: column;
    gap: 20px;
    max-width: 500px;
  margin: 0 auto;

}

.step-item {
  gap: 20px;
    align-items: center;
      display: flex;
  text-align: left;}

.step-icon {

	 font-weight: bold;
   height: 35px;
  flex-shrink: 0;
    background: #2c5aa0;
    width: 35px;
  align-items: center;
  border-radius: 50%;
  display: flex;
   justify-content: center;
  color: white;
     }

.step-item p {

	  margin :    0;
  line-height :    1.6;
    color: #666;}

.additional-info {
  border-top: 1px solid #e9ecef;
  padding-top: 40px;
    margin-bottom: 40px;
}

.additional-info h3 {
  font-size   :  1.6rem;
    color: #2c3e50;
      margin-bottom: 15px;
    font-weight: 600;


}

.additional-info p{

	  color: #666;
   margin-bottom: 25px;
	line-height     :       1.6;}

.action-buttons {
                    display: flex;
   gap: 20px;
  justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
       padding: 12px 25px;
   border-radius: 8px;
   text-decoration: none;
  font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
  background-color: #2c5aa0;
               color  :     white;
}

.btn-primary:hover {

	   background-color: #1e3d6f;
  transform: translateY(-2px);


}

.btn-secondary {
  background-color    :        transparent;
   color: #2c5aa0;
    border: 2px solid #2c5aa0;
}

.btn-secondary:hover {
    background-color: #2c5aa0;
   color: white;
}

.contact-reminder {
   background: #f8f9fa; 
	  padding   :    25px; 
	    border-radius: 10px; 
	   border-left: 4px solid #ff6b6b;
}

.contact-reminder h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-reminder p {


   color :  #666;
    margin-bottom  :       10px;
}

.phone-link {
    color: #2c5aa0;
  text-decoration: none;
    font-weight: 600;
   font-size: 1.1rem;
}

.phone-link:hover {
  color: #1e3d6f;
}

.thankyou-visual {

	    display: none;
}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.2rem;
    }

    .about-hero-content p {
        font-size: 1.1rem;
    }

    .mission-content,
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-timeline::before {
        left: 15px;
    }

    .timeline-year {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .timeline-content {
        margin-left: 25px;
        padding: 20px;
    }

    .team-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .methodology-steps {
        grid-template-columns: 1fr;
    }

    .thankyou-container {
        padding: 40px 25px;
    }

    .thankyou-title {
        font-size: 2.2rem;
    }

    .steps-list {
        max-width: 100%;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 200px;
    }
}.cookies-section,
.privacy-section {
	padding: 100px 20px;
  background: white;
}

.cookies-content,
.privacy-content {
    max-width: 1200px;
   margin: 0 auto;
}

.cookies-content h2,
.privacy-content h2


{
    font-size: 2.5rem;
    color     :    #2c3e50;
   margin-bottom: 25px;
               font-weight: 700;
}

.cookies-content p,
.privacy-content p {
         font-size: 1.1rem; 
   color: #666; 
   line-height: 1.8; 
	margin-bottom: 20px;
}@media (max-width: 768px) {
    .cookies-content h2,
    .privacy-content h2 {
        font-size: 2.2rem;
    }

    .cookies-content p,
    .privacy-content p {
        font-size: 1rem;
    }
}