* {
   margin: 0;
    padding: 0;
      box-sizing    :   border-box;
}

body {
  font-family: 'Arial', sans-serif;
    line-height:  1.6;
   color: #333;
	 overflow-x: hidden; 

}

.container		{


  max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
     } 

.main-navigation {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
   top: 0;
  width: 100%;
   z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
    display   :        flex;
    justify-content: space-between;
    align-items: center;
   max-width: 1200px;
  margin: 0 auto;
     padding    :        1rem 20px;
}

.logo-section {
    display: flex;
   align-items: center;
   gap: 12px;
}

.site-logo {
    height: 40px;
    width: auto;
}

.company-name {
    font-size  : 1.5rem;
    font-weight: bold;
      color: #2c3e50;
}

.nav-links {
    display  :      flex;
    list-style: none;
  gap: 2rem;
}

.nav-links a {
    color: #333;
    transition: color 0.3s ease;
  padding: 0.5rem 0;
  text-decoration  :   none;
	 font-weight: 500;
}

.nav-links a:hover {
    color: #667eea;
}

.burger-menu {
  display: none;
  flex-direction: column;
   cursor: pointer;
  gap: 4px; 
	
}

.burger-menu span {
    width: 25px;
  height: 3px;
    -o-transition: 0.3s;
  -moz-transition: 0.3s;
   -webkit-transition:     0.3s;
  background: #333;
  transition    :    0.3s;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px); 

}

.burger-menu.active span:nth-child(2) {
     opacity: 0;

}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
	padding    :  140px 0 80px;
   min-height: 100vh;
    display: flex;
       align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 50px;
    align-items: center;
	max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
}

.hero-text h1{
   font-size: 3.5rem;
	font-weight: 700;
   line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-text p {
  margin-bottom: 2rem;
  opacity: 0.9;
  font-size    : 1.2rem;
   line-height :    1.6;
}

.hero-buttons {
  gap: 1rem;
  display: flex;
  flex-wrap: wrap;
}

.cta-button {
       display: inline-block;
  padding     : 12px 24px;
   text-decoration: none;
  font-weight: 600;
    border-radius: 8px;
    transition :all 0.3s ease;
  text-align: center;
}

.cta-button.primary {
    background: #28a745;
	color: white;
}

.cta-button.primary:hover {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  background: #218838;
  transform: translateY(-2px);
}

.cta-button.secondary {
	background: transparent;
   color: white;
   border:       2px solid white;
}  

.cta-button.secondary:hover {
  background: white;
   color: #667eea;
}

.cta-button.large   {
   padding  :   15px 30px;
  font-size: 1.1rem;
}

.hero-image img {
  width: 100%;
    border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);


}

.features-section {
  padding: 80px 0;
   background: #f8f9fa;


}

.features-section h2 {
               text-align  :  center;
   font-size:      2.5rem;
    margin-bottom: 3rem;
  color   :  #2c3e50;
}

.features-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap    :  30px;

}

.feature-card {
  background: white;
    padding: 2rem;
  border-radius: 12px;
   text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition     :     transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}  

.feature-card h3 {
       font-size: 1.5rem;
   color: #667eea;
   margin-bottom: 1rem;
}

.feature-card p {
	color:       #666;
  line-height: 1.6;
}

.services-section {
	background: white;
    padding: 80px 0;
}

.services-section h2		{
     font-size   :     2.5rem;
   margin-bottom: 3rem;
   color: #2c3e50;
  text-align: center;
}

.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
} 

.service-item {
   background: #f8f9fa;
  border-radius    :       15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
   transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-8px);


}

.service-item img {
    width: 100%;
   height: 200px;
               object-fit: cover;
}

.service-item h3 {


  padding: 1.5rem 1.5rem 1rem;
   font-size: 1.4rem;
  color: #2c3e50;
     }

.service-item p {
  padding: 0 1.5rem;
    color: #666;
    line-height: 1.6;
    margin-bottom   :     1rem;
}

.service-price {
  padding: 0 1.5rem 1.5rem;
    font-size: 1.2rem;
    font-weight: bold;
  color: #28a745;
}

.cta-section {
    padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
    text-align: center;
}  

.cta-content h2 {


  font-size: 2.5rem;
   margin-bottom :        1rem;

}

.cta-content p {
       font-size: 1.2rem;
   margin-bottom: 2rem;
    max-width: 600px;
   margin-left: auto;
	margin-right: auto;
    opacity: 0.9;

}

.testimonials-section {
	    padding: 80px 0;
    background: #f8f9fa;


}

.testimonials-section h2     {
	  text-align: center;
    font-size: 2.5rem;
  margin-bottom: 3rem;
    color: #2c3e50;

}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
    background: white;
  padding: 2rem;
         border-radius    :      12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
	border-left: 4px solid #667eea;
}

.testimonial-card p {
  font-style: italic;
  color: #555;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.testimonial-author {
       color: #667eea;
    font-weight: 600;
     }

.stats-section {
       padding: 80px 0;
	background: #2c3e50;
    color: white;

}

.stats-grid {
        display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	 gap: 30px;
    text-align   :center;
}

.stat-item   {
    padding: 1rem;
}

.stat-number {
   color: #28a745;
   font-weight: bold;
	font-size: 3rem;
   margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
   opacity: 0.9;
}

.contact-section {
    padding: 80px 0;
	background   : white;
}

.contact-section h2 {
   text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
   color: #2c3e50;
}

.contact-content {
     display: grid;
  grid-template-columns     :  1fr 1fr;
   gap: 50px;
    align-items: start; 
	
}

.contact-info h3 {
  font-size: 1.8rem;
   color    :    #667eea;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
   margin-bottom :1rem;
  align-items: center;
}

.contact-label


{
    font-weight: 600;
    color: #2c3e50;
	min-width: 80px;
    margin-right: 1rem;
}

.contact-image {
	  width   : 100%;
   border-radius: 12px;
   margin-top: 2rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1); 
	}

.contact-form {
    background: #f8f9fa;
        padding: 2rem;
  border-radius: 15px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
   display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
	 font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
   transition: border-color 0.3s ease;
    border     :    2px solid #e9ecef;
    border-radius  :  8px;
	width: 100%;
   padding: 12px;
   font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus		{
    outline: none; 
   border-color: #667eea;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc3545;
}

.submit-button {
  background: #28a745;
   color: white;
                    padding: 12px 30px;
   border: none;
   border-radius     :   8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
	width: 100%;
}

.submit-button:hover {
    background: #218838;
}

.main-footer {
       background: #2c3e50;
    color: white;
   padding :        60px 0 30px;
	}

.footer-content {
	 display  :     grid;
    grid-template-columns: 1fr 1fr;
   gap: 40px;
   margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
	    align-items: center;
	  gap: 12px;
	   margin-bottom: 1rem;
	
}



.footer-logo img {
  height: 35px; 
	
}

.footer-company-name {
    font-size: 1.3rem;
               font-weight: bold;
}

.footer-info {
  gap: 30px;
   grid-template-columns   : 1fr 1fr;
  display: grid;
}

.footer-address p {
 margin-bottom     :       0.5rem;
  line-height: 1.5; 

}

.footer-links ul {

   list-style: none;
}



.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: white;
     text-decoration: none;
   transition: color 0.3s ease;
}

.footer-links a:hover {
	    color: #667eea;
     }  

.footer-bottom

{
   border-top: 1px solid #495057;
    padding-top: 2rem;
    text-align: center;
   color: #adb5bd;
}

.fade-in {
   animation: fadeIn 0.6s ease-in;
}@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 1rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding-top: 2rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-buttons .cta-button {
        width: 100%;
        margin: 0.5rem 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-info {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .company-name {
        display: none;
    }

    body.menu-open {
        overflow: hidden;
    }
}.page-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   text-align: center;
    padding: 120px 0 80px;
}

.page-header h1 
 {


  font-size: 3.2rem;
    margin-bottom: 1rem;
   font-weight: 700;
	}


.header-subtitle {
     font-size: 1.3rem;
  opacity: 0.9;
    max-width: 600px;
   margin: 0 auto;
     }

.story-section {
    padding  :  80px 0;
    background: #f8f9fa;
}

.story-content {
  display: grid;
   grid-template-columns: 1fr 1fr;
  gap  :       60px;
  align-items: center;
}

.story-text h2 {
      font-size: 2.5rem;

	   margin-bottom  :       2rem;

	   color: #2c3e50;
}

.story-text p {
   font-size   :        1.1rem;
   line-height: 1.8;
    margin-bottom: 1.5rem;
   color: #555;
}

.story-image img {
	width: 100%;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1); 

}

.mission-section {
      padding: 80px 0;
    background: white;
}

.mission-grid {


  display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 50px;
	}

.mission-item h3 {
       font-size: 2rem;
    color: #667eea;
    margin-bottom: 1.5rem;
}

.mission-item p  
  {
	 font-size:        1.1rem;
   line-height: 1.7;
   color: #666;
}

.team-section {

	         padding: 80px 0;
    background   :#f8f9fa;
}

.team-section h2		{
   text-align: center;
   margin-bottom: 3rem;
    font-size: 2.8rem;
	 color: #2c3e50;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 40px;


}

.team-member {
   background: white;
    padding: 2rem;
    border-radius: 15px;
   text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
   transition: transform 0.3s ease;
}

.team-member:hover		{
  transform: translateY(-5px); 

}

.member-photo {
  margin-bottom: 1.5rem;
}

.member-photo img {
               width: 100%;
   height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.team-member h3 {
   font-size: 1.5rem;
   color: #2c3e50;
    margin-bottom: 0.5rem;
}

.member-role {
    color     :      #667eea;
        font-weight: 600;
    margin-bottom: 1rem !important;
}

.team-member p {
  color: #666; 
    line-height: 1.6;
}

.approach-section {
	    padding: 80px 0; 
   background: white;
     } 

.approach-section h2 {
   text-align: center;
  font-size: 2.8rem;
    margin-bottom     :3rem;
     color: #2c3e50;
}

.approach-content


{

		 display: grid;
  grid-template-columns    :    1fr 1fr;
   gap: 50px;
  align-items: start;}

.approach-text h3 {
   font-size: 1.8rem;
   color:        #667eea;
   margin: 2rem 0 1rem 0;
}

.approach-text h3:first-child {
          margin-top     :        0;
}

.approach-text p {
    font-size: 1.1rem;
   line-height: 1.7;
  color: #666;
   margin-bottom: 1.5rem;

}

.approach-image img {
  width: 100%;
	 border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.values-section {
     padding: 80px 0;
    background: #f8f9fa;
}

.values-section h2 {
  color: #2c3e50;
    text-align: center;
   margin-bottom: 3rem;
    font-size: 2.8rem;
}

.values-grid {
   display  :     grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-item {
       background: white;
       padding: 2rem;
   	border-radius: 12px;
      text-align :     center;
     box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.value-item h3    {
    font-size: 1.5rem;
	color: #667eea;
	 margin-bottom: 1rem;
}

.value-item p {
  color: #666;
 line-height: 1.6;
}

.cta-about	{
   padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color    :   white;
   text-align: center; 
	
}

.cta-about h2 {
   font-size: 2.5rem;
   margin-bottom: 1rem;
}

.cta-about p {
    font-size: 1.2rem;
   margin-bottom  :       2rem;
  opacity: 0.9;
}

.thankyou-section {

  padding: 100px 0;
   background: #f8f9fa;
	}

.thankyou-content {
    text-align: center;
    max-width: 800px;
  margin: 0 auto;
}

.thankyou-icon {
	margin-bottom: 2rem;
}

.success-circle {
  width: 80px;
    height: 80px;
    background: #28a745;
  border-radius: 50%;
	display: flex;
   align-items: center;
   justify-content: center;
	margin: 0 auto;
}

.checkmark {
  width: 30px;
    height: 30px;
   border: solid white;
    border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.thankyou-section h1 {
   font-size: 3rem; 
    color: #2c3e50; 
  margin-bottom: 1rem;
}

.thankyou-subtitle {
  font-size: 1.3rem;
    color: #666;
   margin-bottom:    3rem; 

}

.thankyou-details {
  background: white;
    padding: 3rem;
    border-radius: 15px;
    margin: 3rem 0;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
	
} 

.thankyou-details h2 {
    font-size: 2.2rem;
        color: #2c3e50;
 margin-bottom: 2rem;
}

.steps-grid   {


    display   :        grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
   margin-top: 2rem;


}

.step-item {
    text-align: center;
    padding: 1.5rem;
}

.step-number

{
   width: 50px;
   height:        50px;
    background: #667eea;
  color: white;
    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.3rem;
    color: #2c3e50;
  margin-bottom: 1rem;
     }

.step-item p {
	color :     #666;
   line-height: 1.6;
}



.thankyou-info {
      display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap     :    20px;
    margin: 3rem 0;
     }

.info-card {
    background: white;
 padding: 2rem;
	 border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
     }

.info-card h3 {
    font-size :        1.2rem;
    color: #667eea;
   margin-bottom    :     1rem;
}

.info-card p {
     color: #666;
   line-height: 1.6;
	}

.thankyou-testimonial {
   background: white;
          padding: 2rem;
        border-radius: 12px;
    margin: 3rem 0;
	 border-left     :  4px solid #667eea;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.thankyou-testimonial blockquote		{
    font-size: 1.1rem;
  color: #555;
   margin-bottom: 1rem;
   font-style: italic;


}

.thankyou-testimonial cite	{
  font-weight: 600;

    color: #667eea;
}

.thankyou-actions {
   margin: 3rem 0;
}

.thankyou-actions .cta-button {


    margin: 0 10px;}

.additional-resources {
  background: white;
	padding     : 2rem;
   border-radius: 12px;
  margin: 3rem 0;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    text-align: left;
}

.additional-resources h3	{
	font-size : 1.5rem;
         color    :        #2c3e50;
   margin-bottom: 1rem;
	
}

.preparation-list {
	list-style :      none;
                    padding: 0;
}

.preparation-list li {
	   padding: 0.5rem 0;
    border-bottom    :      1px solid #eee;
   color: #666;


}

.preparation-list li:before {
   color: #28a745;
  margin-right  :10px;
 font-weight: bold;
  content: "✓ "; 
	
}

.thankyou-image {
    margin-top: 3rem;
}

.thankyou-image img {
      width: 100%;
      max-width: 600px;
     border-radius:        12px;
     box-shadow: 0 10px 30px rgba(0,0,0,0.1);

}@media (max-width: 768px) {
    .story-content,
    .approach-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .thankyou-section h1 {
        font-size: 2.2rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-actions .cta-button {
        display: block;
        margin: 10px 0;
        width: 100%;
    }
}.cookie-section,
.privacy-section {
  padding: 80px 0;
  background: white;
}

.cookie-section h2,
.privacy-section h2 {
  text-align: center;
	 font-size: 2.5rem;
   margin-bottom: 3rem;
    color :   #2c3e50;
}