* {

  margin   :0;
 padding: 0;
    box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
   line-height: 1.6;
   color: #333;
}

.main-navigation {
    background: #fff;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  position: fixed;
    top: 0;
    left  :0;
   right: 0;
	z-index: 1000;
}

.nav-wrapper {
     max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
      align-items: center;
   padding   :  0 2rem;
  height: 70px;
     }

.site-logo {
    height: 45px;
    width: auto;
}

.nav-links {

  display: flex;
  list-style: none;
   gap: 2.5rem;
     }

.nav-links a {
    text-decoration: none;
  transition: color 0.3s;
    font-weight: 500;
	color: #2c3e50;
	font-size    :16px;}

.nav-links a:hover {
  color: #3498db;
}

.mobile-toggle {
               display: none;
   flex-direction: column;
    cursor: pointer;
  gap  :    4px;
}

.mobile-toggle span {
  width: 25px;

    height: 3px;

  background: #2c3e50;

    transition: 0.3s;
}

.hero-banner {
   margin-top   :      70px;
	 min-height: 600px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
 align-items: center;
  color: white;
}

.hero-content {
     max-width: 1200px;
    margin: 0 auto;
  padding: 0 2rem;
    display: grid;
	 grid-template-columns: 1fr 1fr;
  gap: 4rem;
 align-items: center;
}

.hero-text h1 {
  font-size: 3.2em;
  margin-bottom: 1.5rem;
   line-height: 1.2;
} 

.hero-text p {
  font-size: 1.3em; 
	   margin-bottom: 2.5rem; 
	    opacity: 0.9;

}  

.hero-buttons {


    display: flex;
    gap: 1.5rem;}

.primary-btn, .secondary-btn {
   padding: 15px 30px;
    border-radius: 8px;
  text-decoration:none;
   font-weight: 600;
   transition: all 0.3s;
	display: inline-block;
}

.primary-btn
{
   background: #e74c3c;
   color: white;
               border: 2px solid #e74c3c;
}

.primary-btn:hover {
   background: #c0392b;
  transform: translateY(-2px);
}

.secondary-btn


{
  background: transparent;
   		color: white;
      border: 2px solid white;
}

.secondary-btn:hover {
    background: white;
         color: #667eea;
}

.hero-image img		{
    width: 100%;
    border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.features-overview {

	    padding: 80px 0;
    background: #f8f9fa;
}

.container    {
		 max-width: 1200px;
   margin : 0 auto;
    padding: 0 2rem;
	}


.features-overview h2 {

   text-align   :  center;
  font-size: 2.5em;
     margin-bottom: 3rem;
    color: #2c3e50;}

.features-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2.5rem;
}

.feature-card
{
  background: white;
  padding: 2.5rem;
    border-radius  :      12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
                    transition: transform 0.3s;
     }

.feature-card:hover {


  transform: translateY(-5px);

}

.feature-card h3 {

		font-size: 1.5em;
	  margin-bottom: 1rem;
	     color: #2c3e50;
	


}

.services-section {
  padding: 80px 0;
}

.services-section h2 {
	text-align: center;
   font-size: 2.5em;
	margin-bottom: 3rem;
    color: #2c3e50;
}  

.services-layout {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 3rem;


}

.service-item {
   display: flex;
    gap: 2rem;
   align-items: flex-start;
   background: white;
    padding: 2rem;
     border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-item img {
  width: 200px; 
   height: 150px; 
    object-fit: cover; 
    border-radius: 10px; 
	flex-shrink: 0;
}

.service-details h3 {
   font-size  :       1.4em;
   margin-bottom: 1rem;
    color: #2c3e50; 
	
}

.service-details p {
   margin-bottom: 1.5rem;
    color: #666;
}

.service-details ul {
  list-style: none;
     }

.service-details li {
	  padding: 0.3rem 0;
    position: relative;
   padding-left     :  1.5rem;
		color: #555;

     }

.service-details li::before {
  content: "✓";
   position: absolute;
   left :        0;
   color: #27ae60;
    font-weight: bold;
}

.cta-section {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color :        white;
    padding: 80px 0;
   text-align: center;
}

.cta-content h2 {
   font-size    :   2.5em; 
  margin-bottom: 1.5rem;
}

.cta-content p {
    font-size :       1.2em;
  margin-bottom: 2.5rem;
  max-width: 600px;
    margin-left: auto;
	 margin-right: auto;
}

.cta-button {
  background   : #e74c3c;
  color: white;
  padding: 18px 40px;
    border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: all 0.3s;
}

.cta-button:hover {
  background: #c0392b;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(231, 76, 60, 0.4); 

}

.testimonials {


       padding: 80px 0;
    background :      #f8f9fa;}

.testimonials h2 {
	 text-align: center;
      font-size: 2.5em;
       margin-bottom:  3rem;
     color :        #2c3e50;


}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 2rem; 

}

.testimonial-card {
	background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1.5rem;
    font-size: 1.1em;
               line-height: 1.7;
	
}

.testimonial-author strong {
    color  :   #2c3e50;
    font-size: 1.1em;
}

.testimonial-author span {
    color: #7f8c8d;
   font-size: 0.9em;
}

.contact-section {
   padding: 80px 0;
   background: white;
}

.contact-section h2 {
   text-align: center;
    font-size: 2.5em;
   margin-bottom: 3rem;
	color: #2c3e50;
}

.contact-wrapper {
                    display: grid;
	    grid-template-columns: 1fr 1fr;
	      gap: 4rem;
	    align-items :    start;
}

.contact-info h3 {
	 font-size    :  1.8em;
   margin-bottom: 1.5rem;
    color: #2c3e50;
}



.contact-info p {
    margin-bottom: 2rem;
    color: #666;
   font-size: 1.1em;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap   :      1.5rem;
}

.contact-item strong {
   display: block;
  color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-form {
   -moz-border-radius: 15px;
    background: #f8f9fa;
  padding: 2.5rem;
    border-radius: 15px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
   width: 100%;
    padding: 15px;
  border: 2px solid #e0e0e0;
   border-radius: 8px;
   font-size: 16px;
     transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus     {
  outline: none;
  border-color: #3498db;
}

.submit-btn {
    width: 100%;
  background: #3498db;
    color: white;
       padding: 18px;
    border :        none;
   border-radius: 8px;
   font-size: 1.1em;
          font-weight   :   600;
    cursor: pointer;
   transition: background 0.3s;
}

.submit-btn:hover {
   background: #2980b9;
}

.site-footer
{
  background: #2c3e50;
   color: white;
    padding: 60px 0 20px;
}

.footer-content {
   max-width: 1200px;
    margin     :        0 auto;
    padding: 0 2rem;
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-logo {
     height: 50px;
	 width: auto;
	margin-bottom: 1rem;
  filter: brightness(0) invert(1);}  

.footer-section h4 {
  margin-bottom  :     1rem;
   font-size: 1.2em;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
	 color: #bdc3c7;
                    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover
	{
   color: white;
}

.footer-bottom {
	border-top: 1px solid #34495e;
   margin-top: 2rem;
         padding-top: 1.5rem;
	text-align: center;
  color: #95a5a6;
}@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        transform: translateY(-100vh);
        transition: transform 0.3s;
        gap: 1rem;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.2em;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .services-layout {
        grid-template-columns: 1fr;
    }

    .service-item {
        flex-direction: column;
        text-align: center;
    }

    .service-item img {
        width: 100%;
        max-width: 300px;
        height: 200px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8em;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}.about-hero	{
          margin-top: 70px;
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
  padding  :     120px 0 80px;
   text-align: center;
     color: white;
     }

.about-hero-content h1 {
      font-size     :      3.5em;
  margin-bottom: 1rem;
    font-weight: 700;}

.hero-subtitle {
    font-size: 1.4em; 
	  opacity: 0.9; 
	   max-width: 600px; 
	    margin  :       0 auto;
}

.company-story {
         padding: 100px 0;
    background: #f8f9fa;
}

.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap :      4rem;
    align-items: center;
} 

.story-text h2 {
    font-size: 2.8em;

  margin-bottom: 2rem;

   color: #2c3e50;
}

.story-text p {


               font-size: 1.1em;
    color: #555;
  line-height: 1.8;
	margin-bottom: 1.5rem;
}

.story-image img {
    width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
	}

.mission-vision {
    padding: 80px 0;
   background: white;
}

.mission-grid {
    display: grid;
	grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mission-card, .vision-card {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
  padding: 3rem;
  border-radius: 20px;
   text-align:  center;
}

.mission-card h3, .vision-card h3 {
   font-size: 1.8em;
   margin-bottom: 1.5rem;
}

.mission-card p, .vision-card p {
   font-size: 1.1em;
    line-height: 1.7;
  opacity  :   0.95;
}



.team-approach 
 {
   padding  :      100px 0;
   background: #f8f9fa;
	
}

.team-approach h2 {
	text-align: center;
    font-size: 2.8em;
               color: #2c3e50;
     margin-bottom    :     4rem;
}

.approach-content  {
    flex-direction: column;
   display: flex;
  gap: 5rem;
}

.approach-item {
    display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
	align-items: center;
}

.approach-item.reverse {
    grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.approach-item.reverse > * {
    direction  : ltr;
}

.approach-item img {

	  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.approach-details h3 {
  font-size: 1.8em;
	margin-bottom     : 1.5rem;
 color: #2c3e50;
}

.approach-details p {
  font-size: 1.1em;
    color: #555;
    margin-bottom:  1.5rem;
  line-height: 1.8;
}

.stats-section {
    padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
       color: white;
   text-align: center;
}

.stats-section h2 {
   font-size: 2.8em;
  margin-bottom: 3rem;
}

.stats-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
  background: rgba(255,255,255,0.1);
  padding: 2.5rem 1.5rem;
               border-radius: 15px;
  backdrop-filter: blur(10px);
}

.stat-number {
  font-size: 3.5em;
  font-weight: 700;
  margin-bottom  :      0.5rem;
	 color: #fff;
}

.stat-label {
    font-size: 1.1em;
  opacity: 0.9;
}

.values-section  {
  padding: 100px 0;
   background: white; 
	
}

.values-section h2 {
   text-align: center;
	 font-size: 2.8em;
    margin-bottom: 3rem;
   color: #2c3e50; 

}

.values-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2.5rem;
}

.value-card
	{
  border-radius: 15px;
    text-align: center;
  background: #f8f9fa;
  transition: transform 0.3s;
   border-left: 5px solid #3498db;
   padding: 2.5rem;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-card h4 {
  color: #2c3e50;
   font-size: 1.5em;
  margin-bottom:      1rem;
}

.value-card p {
   line-height: 1.7;
   color :#666;
}

.certification-section {
   padding: 100px 0;
 background: #f8f9fa;
}

.certification-content     {
   display: grid;
  grid-template-columns     : 1fr 1fr;
	gap: 4rem;
	align-items:       center;

}

.cert-text h2 {
   font-size: 2.8em;
    margin-bottom: 2rem;
     color:      #2c3e50;
}

.cert-text p    {
   font-size: 1.1em;
   line-height   :   1.8;
   margin-bottom: 1.5rem;
  color: #555;
}

.cert-image img {
    width: 100%;
   border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.thankyou-hero    {
	 margin-top: 70px;
	  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
	    padding :        120px 0 80px;
	  text-align: center;
	    color: white;
	  min-height: 500px;
	         display  :flex;
		 align-items: center;
	  justify-content: center;
}

.thankyou-content {
    max-width: 600px;
    margin: 0 auto;
   padding: 0 2rem;
}

.success-icon {
   margin-bottom: 2rem;
}

.checkmark {
    width: 80px;
  height: 80px;
   border-radius: 50%;
  background: rgba(255,255,255,0.2);
    margin  :0 auto;
    position: relative;
  backdrop-filter: blur(10px);
}

.checkmark::after 
 {

  content: "✓";
   position: absolute;
   top: 50%;
    left: 50%;
  transform: translate(-50%, -50%);
    font-size: 2.5em;
   color: white;
  font-weight: bold;

}

.thankyou-content h1 {
   font-size: 3.2em;
   margin-bottom: 1rem;
  font-weight: 700;
}

.thankyou-subtitle {
    font-size: 1.3em;
   opacity: 0.9;
}

.thankyou-details{


   padding: 100px 0;
    background: #f8f9fa;
     }

.details-grid {
    display     :    grid;
   grid-template-columns: 2fr 1fr;
  gap: 4rem;
}

.next-steps h2 {
  font-size: 2.5em;
 margin-bottom: 2.5rem;
   color: #2c3e50;
}

.steps-list {
    display: flex;
   flex-direction: column;
    gap: 2.5rem;
}

.step-item {
    display: flex;
   gap: 2rem;
    align-items: flex-start; 

}

.step-number  
  {
    width: 50px;
   height: 50px;
  background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
   border-radius: 50%;
    display: flex;
    align-items: center;
   justify-content     :   center;
       font-weight: bold;
   font-size: 1.2em;
    flex-shrink: 0;
}


.step-content h3
{
    margin-bottom: 0.8rem;
      font-size: 1.4em;
   	 color: #2c3e50;
}

.step-content p {
	line-height: 1.7;
                    color: #666;
}

.contact-reminder h2	{
     font-size: 2em;
    margin-bottom: 1.5rem;
   color: #2c3e50;
}  

.contact-info-card {
         background: white;
  padding: 2rem;
    border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
     }

.contact-info-card .contact-item {
    margin-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
         padding-bottom: 1.5rem;
	
}

.contact-info-card .contact-item:last-child		{
   border-bottom: none;
	 margin-bottom  :       0;
   padding-bottom: 0;
}

.contact-info-card strong {
  display: block;
    color: #2c3e50;
   margin-bottom: 0.5rem;
    font-weight:   600;
}

.contact-info-card span {
  color: #666;
  line-height:       1.5;
}

.while-you-wait {
   padding     :     80px 0;
        background: white;
}

.while-you-wait h2 {
   text-align: center;
  font-size: 2.5em;
  margin-bottom  :       3rem;
    color: #2c3e50;
}

.wait-content


{
   display :        flex;
    flex-direction: column;
    gap: 3rem;
}

.wait-item {
  display: grid;
  grid-template-columns:   300px 1fr;
    gap     :      2.5rem;
    align-items: center;
   background: #f8f9fa;
  padding: 2.5rem;
   border-radius: 15px; 

}  

.wait-item img {
   width: 100%;
          border-radius: 10px;
	
}

.wait-details h3


{
    font-size: 1.5em;
    margin-bottom: 1rem;
       color: #2c3e50;
}

.wait-details p
{
                    line-height: 1.7;
  color: #666;
     }

.wait-details a {
         color: #3498db;
   text-decoration: none;
   font-weight: 600;
}

.wait-details a:hover {

	  text-decoration: underline;


	}

.urgency-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
   color :        white;
   text-align: center;
}  

.urgency-content h2 {
    font-size :    2.5em;
    margin-bottom: 1.5rem;
}

.urgency-content p {
	    font-size: 1.2em;
      margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left     :    auto;
   margin-right: auto;
  opacity: 0.95;}

.urgent-call-btn {
  background: rgba(255,255,255,0.2);
  color: white;
      padding: 18px 35px;
    border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2em;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.3); 
	
}

.urgent-call-btn:hover {
	  background: rgba(255,255,255,0.3);
  transform: translateY(-2px); 
	

}

.return-options {
		 padding: 60px 0;
    background: #f8f9fa;
   text-align: center;
}

.return-options h2 {


   font-size :   2.2em;
   margin-bottom: 2rem;
  color: #2c3e50;}

.return-buttons {
    display: flex;
    gap: 1.5rem;
   justify-content: center;
}

.return-btn  
  {


        border-radius: 8px;
  transition: all 0.3s;
         display :       inline-block;
	font-weight: 600;
   padding: 15px 30px;
     text-decoration: none;


}

.return-btn.primary

{
	 background    :       #3498db;
    color: white;
  border: 2px solid #3498db;
	}

.return-btn.primary:hover {
   background: #2980b9;
                    border-color: #2980b9;
}

.return-btn.secondary {
    background: transparent;
  color: #3498db;
    border: 2px solid #3498db;
}

.return-btn.secondary:hover   {
       background: #3498db;
         color: white;

}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5em;
    }
    
    .story-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .approach-item,
    .approach-item.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .certification-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .thankyou-content h1 {
        font-size: 2.3em;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .wait-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .return-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .stat-number {
        font-size: 2.5em;
    }
    
    .steps-list {
        gap: 2rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}.cookies-section, .privacy-section {
  padding: 80px 0;
    background: #f8f9fa;
}

.cookies-section h2, .privacy-section h2 {
   text-align: center;
   font-size : 2.5em;
   margin-bottom: 2rem;
   color: #2c3e50;
	}

.cookies-section h3, .privacy-section h3 {
   font-size: 1.6em;
   margin: 1.5rem 0 1rem;
         color: #2c3e50;
}

.cookies-section p, .privacy-section p {
    margin-bottom    :  1.5rem;
  color: #666;
    font-size: 1.1em;
    line-height: 1.7;
}

.cookies-section ul, .privacy-section ul {

    list-style: none;
   margin-bottom  :       1.5rem;

}

.cookies-section li, .privacy-section li {
  padding: 0.5rem 0;
    position: relative;
	padding-left: 1.5rem;
       color: #555;


}

.cookies-section li::before, .privacy-section li::before {
  content: "✓";
    position: absolute;
   left: 0;
    color    :  #27ae60;
         font-weight: bold;
}