* {
  margin: 0;
   padding: 0;
   box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
   line-height: 1.6;
  color:       #333;
}


.container {
  max-width: 1200px;
	margin: 0 auto;
  padding: 0 20px;
}

.main-navigation {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
   position: fixed;
  width: 100%;
 top: 0;
    z-index     :       1000;
    padding: 1rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    max-width :        1200px;
    margin: 0 auto;
  padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items   :     center; 

}

.nav-logo {
    height: 40px;
                    width: auto; 

}

.nav-links {
    display     :  flex;
    list-style: none;
         gap: 2rem;
}

.nav-links a {
  text-decoration: none;
	 color: #333;
  font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #007bff;
}

.burger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
    gap: 4px;
}  

.burger-menu span

{
    width: 25px;
	   height: 3px;
		background: #333;
	   transition: all 0.3s ease;
}

.hero-section {
   display: flex;
   align-items: center;
   min-height: 100vh;
  padding: 120px 20px 80px;
  max-width: 1200px;
    margin: 0 auto;
        gap: 60px;
}

.hero-content {
   flex: 1;
}

.hero-content h1 {
   font-size: 3.2rem;
   font-weight: bold;
   margin-bottom: 1.5rem;
   color: #2c3e50;
  line-height: 1.2;
}

.hero-content p
{
                    font-size: 1.2rem;
   margin-bottom: 2rem;
  color: #666;
}

.hero-buttons {
  display: flex;
   gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary, .btn-cta, .btn-submit {

   padding :   12px 30px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
   font-weight: 600;
    font-size: 1rem;
  transition: all 0.3s ease;
    cursor     :       pointer;
    display: inline-block;


}



.btn-primary {
  background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.btn-secondary {
   background: transparent;
  color: #007bff;
    border: 2px solid #007bff;
}

.btn-secondary:hover {
  background: #007bff;
  color: white;
     }

.hero-image {
    flex: 1;
}

.hero-image img {
  width: 100%;
    height: auto;
   border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);


}

.services-overview {
	padding:80px 0;
    background: #f8f9fa;
}

.services-overview h2 {
   text-align   :      center;
   font-size: 2.5rem;
   margin-bottom    :     3rem;
  color: #2c3e50;
}

.services-grid

{

   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
			gap: 2rem;}

.service-card {
   background   : white;
  padding    :2rem;
    border-radius     :  15px;
  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(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
   height :200px;
    object-fit: cover;
   border-radius: 10px;
   margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
	margin-bottom: 1rem;
  color: #2c3e50;
}

.service-card p {
      color   :    #666;
  line-height: 1.8;
}

.about-preview {

  padding: 80px 0;

}

.about-content {
    display: flex;
   align-items     :  center;
   gap: 60px;
}

.about-text


{
  flex: 1;
}

.about-text h2 {
                       font-size: 2.5rem;
        margin-bottom: 1.5rem;
   color: #2c3e50;


}

.about-text p {
     font-size: 1.1rem;
    margin-bottom: 2rem;
   color: #666;
    line-height: 1.8;

	}

.benefits-list {
    list-style: none;
}

.benefits-list li  
  {
    padding: 0.5rem 0;
	padding-left    :1.5rem;
    position: relative;
    color: #333;
}

.benefits-list li:before{
	  content: "✓";
   position: absolute;
	left: 0;
    color:#007bff;
   font-weight: bold;


}

.about-image {
   flex: 1;
}

.about-image img {
   width: 100%;
  height: auto;
                    border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}


.cta-section    {
   padding: 80px 0;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  text-align :       center;

}

.cta-content h2 {
    font-size     :     2.8rem;
  margin-bottom: 1rem;
}

.cta-content p {
    opacity   :0.9;
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

.btn-cta {
   background: white;
	 color: #007bff;
   font-size:     1.1rem;
  padding: 15px 35px;
}  

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.contact-section {
	padding: 80px 0;
	    background: #f8f9fa;
}

.contact-section h2 {
   text-align: center;
  font-size: 2.5rem;
    color: #2c3e50;
  margin-bottom: 3rem;
}

.contact-wrapper {
    display: grid;
  grid-template-columns: 1fr 2fr;
    gap: 4rem;
   align-items: start;
}

.contact-info h3 {
  margin-bottom: 2rem;
    font-size: 1.5rem;
   color     :     #2c3e50;
}

.contact-item {
   margin-bottom: 1.5rem;
}

.contact-item strong {

	   display    :   block;
  margin-bottom: 0.5rem;
   color   :        #007bff;


}

.contact-form {
  background: white;
    padding: 2.5rem;
    border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
     margin-bottom: 1.5rem;
}

.form-group label	{
    margin-bottom: 0.5rem;
                    font-weight: 600;
  display: block;
	color: #333;

}

.form-group input,
.form-group select,
.form-group textarea {
   width: 100%;
   padding: 12px 15px;
    border     :  2px solid #e1e5e9;
    border-radius: 8px;
                    font-size: 1rem;
       transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
 outline: none;
    border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.btn-submit {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color  :   white;
    width: 100%;
    font-size: 1.1rem;
  padding: 15px;
}

.btn-submit:hover {
  transform: translateY(-2px);

  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.main-footer {
    background: #2c3e50;

  color   :white;

  padding     :       60px 0 20px;
}

.footer-content {
    display: grid;
  grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem; 
	
}

.footer-logo {
    height: 60px;
   width: auto;
  filter: brightness(0) invert(1);
}

.footer-links {
   	display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 2rem;


}

.footer-column h4 {
    margin-bottom: 1rem;
  color: #007bff;
}

.footer-column ul {
     list-style: none;
}

.footer-column ul li {

  margin-bottom :     0.5rem; 


}

.footer-column ul li a {
 color: #bbb;
   text-decoration  :        none;
	transition: color 0.3s ease;
}

.footer-column ul li a:hover {
	color     :white;
}

.footer-column p {
    color  :        #bbb;
   line-height: 1.6;
}

.footer-bottom {
   text-align: center;
   padding-top: 2rem;
  border-top    :       1px solid #34495e;
  color: #bbb;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hero-section {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
        padding: 100px 20px 60px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-content {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .services-overview h2,
    .about-text h2,
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-cta {
        width: 100%;
        text-align: center;
    }
}.about-hero {
  padding   :        120px 0 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  text-align: center;
}

.about-hero-content h1 {
    font-size: 3rem;
   color: #2c3e50;
    margin-bottom    :1.5rem;
    font-weight: bold;
}

.about-hero-content p 
 {
    font-size: 1.3rem;
  color: #666;
    max-width: 800px;
  margin: 0 auto;
    line-height: 1.7;
	
}

.mission-section {
	      padding: 80px 0;

}

.mission-content {
	 display: flex;
	 align-items: center;
  gap: 60px;
}

.mission-text {
    flex: 1;
}

.mission-text h2 {
                    font-size  :     2.5rem;
   color: #2c3e50;
  margin-bottom: 1.5rem;
}


.mission-text p {
   font-size: 1.1rem;
   color: #666;
 margin-bottom: 1.5rem;
   line-height: 1.8;
}

.mission-image {
    flex: 1;
}

.mission-image img {
  width: 100%;
	height :      auto;
   border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
} 

.approach-section {
    padding  :   80px 0;
  background: #f8f9fa;
}

.approach-section h2 {
	text-align: center;
  margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #2c3e50;
}

.approach-grid {

	    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
	}

.approach-card {

    background: white;
    padding: 2.5rem 2rem;
   border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
   text-align :     center;
    transition: transform 0.3s ease;

}

.approach-card:hover 
 {
	  transform: translateY(-10px);

}

.approach-number {
               display: inline-block;
	    width: 60px;
	   height: 60px;
	  background: linear-gradient(135deg, #007bff, #0056b3);
	   color: white;
		border-radius: 50%;
	  line-height: 60px;
	   font-size: 1.5rem;
	  font-weight: bold;
	     margin-bottom: 1.5rem;
} 

.approach-card h3 {
    font-size: 1.4rem;
   color: #2c3e50;
	 margin-bottom: 1rem;
}

.approach-card p {
	color: #666;
    line-height: 1.7;
}

.values-section {
        padding: 80px 0;
}

.values-content {
   display: flex;
  align-items: center;
     gap: 60px;
}

.values-image {

   flex  :      1;
     }

.values-image img {
    width: 100%;
    height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.values-text {
  flex : 1;

}

.values-text h2 {


  font-size: 2.5rem;
    color: #2c3e50;
	 margin-bottom: 2rem;

}

.value-item {
         margin-bottom: 2rem;
}

.value-item h4  {
	 font-size: 1.3rem;
    color   :    #007bff;
   margin-bottom: 0.5rem;
}

.value-item p {
  color     : #666;
	 line-height: 1.7;
}

.experience-section {
  padding    :      80px 0;
        background: #2c3e50;
    color: white;
   text-align: center;


}

.experience-section h2
	{
    font-size: 2.5rem;
  margin-bottom: 3rem;
}

.stats-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap  : 2rem;
}

.stat-card {
    padding: 2rem;
}

.stat-number {
  font-size :   3rem;
    font-weight: bold;
	color: #007bff;
       margin-bottom: 0.5rem;
}

.stat-label {

    font-size: 1.1rem;
    opacity:     0.9;}

.expertise-section {
  padding: 80px 0;
}

.expertise-content {
  display: flex;
  align-items: center;
	 gap: 60px;
}

.expertise-text {
    -ms-flex  :  1;
      -webkit-flex: 1;
  flex: 1;
}

.expertise-text h2 {
   font-size: 2.5rem;
  color: #2c3e50;
    margin-bottom: 1.5rem;
}

.expertise-text > p {
      font-size: 1.1rem;
   color: #666;
  margin-bottom: 2rem;
  line-height: 1.8;


}

.expertise-areas {
    display: flex;
	 flex-direction: column;
    gap: 1.5rem;


}

.expertise-area h4 {
               font-size: 1.2rem;
   color: #007bff;
		 margin-bottom   :     0.5rem;
}

.expertise-area p {
    color: #666;
   	 line-height    :      1.7;
}

.expertise-image    {
  flex: 1;
}

.expertise-image img {
      width: 100%;
      height: auto;
 border-radius    :     15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.why-choose-section {
  padding: 80px 0;
  background  :       #f8f9fa;
}

.why-choose-section h2 {
               text-align   :       center;
    font-size  :       2.5rem;
        color: #2c3e50;
  margin-bottom: 3rem;
}



.why-choose-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.why-choose-card {
  background: white;
   padding: 2rem;
   border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
   transition    :   transform 0.3s ease;
}

.why-choose-card:hover

{
	  transform: translateY(-5px);
}

.why-choose-card h3 {
   color    :#2c3e50;
   margin-bottom: 1rem;
   font-size: 1.4rem;
}

.why-choose-card p {
	 color: #666;
    line-height  : 1.7;
}

.final-image-section {
   padding: 80px 0;


}

.final-image-content {


    position: relative;
    text-align: center;


}

.final-image-content img {
  object-fit: cover;
   height:    400px;
   border-radius: 15px;
	width: 100%;
}

.final-text {
   	 position: absolute;
         top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.95);
  padding: 3rem;
    border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  max-width: 500px;
}

.final-text h2  
  {
   font-size: 2rem;
		 color: #2c3e50;
  margin-bottom: 1rem;
}

.final-text p {
   color: #666;
   margin-bottom: 2rem;
    line-height: 1.7;
}

.thankyou-hero {
             padding: 120px 0 80px;
  background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
	 text-align: center;


}

.thankyou-content {
    max-width: 600px;
    margin   : 0 auto;
}

.success-icon {
  margin-bottom: 2rem;
}

.checkmark-circle {
   width: 80px;
  height: 80px;
  background: #28a745;
   border-radius: 50%;
    margin: 0 auto;
  position: relative;
   animation: scaleIn 0.6s ease-out;
}

.checkmark {
  position: absolute;
   top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
     width: 40px;
          height: 20px;
         border-left: 4px solid white;
    border-bottom: 4px solid white;
  transform: translate(-50%, -60%) rotate(-45deg);
  animation: checkmarkDraw 0.4s ease-out 0.3s both;
}@keyframes scaleIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

@keyframes checkmarkDraw {
    0% { width: 0; height: 0; }
    100% { width: 40px; height: 20px; }
}.thankyou-content h1 {


    font-size: 3rem;
  color:      #28a745;
   margin-bottom     :  1rem;
	 font-weight: bold;



}

.thankyou-subtitle {
                    font-size: 1.3rem;
  color: #666;
  margin-bottom: 2rem;


}



.confirmation-details {

	    padding: 80px 0;


}

.confirmation-grid {
    display: flex;
   align-items: center;
    gap: 60px;
}

.confirmation-card {


  flex: 1;
   background: white;
   padding: 3rem;
	 border-radius :     15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);


}

.confirmation-card h3 {
  font-size: 1.8rem;
   color: #2c3e50;
  margin-bottom: 1.5rem;
}

.next-steps {
    list-style: none;

}

.next-steps li {
	 padding   : 0.8rem 0;
  padding-left: 2rem;
   position: relative;
   color: #333;
               border-bottom    :    1px solid #f0f0f0;
}

.next-steps li:before {
  content: counter(step-counter);
    counter-increment: step-counter;
		position: absolute;
  left: 0;
  top: 0.8rem;
  background: #007bff;
   color: white;
    width: 24px;
  height: 24px;
    border-radius: 50%;
	text-align: center;
   line-height: 24px;
    font-size   :  0.8rem;
    font-weight: bold;
}

.next-steps

{
  counter-reset: step-counter;



}

.confirmation-image {
	  flex: 1;
     }

.confirmation-image img {
	width    :100%;
   height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);


}

.while-waiting {
          padding    : 80px 0;
                    background: #f8f9fa;
}

.while-waiting h2 {
   text-align: center;
   font-size: 2.5rem;
  color: #2c3e50;
   margin-bottom: 3rem;
}

.waiting-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;



}

.waiting-card {
  background: white;
    padding: 2rem;
	border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	text-align: center;
	transition: transform 0.3s ease;
}

.waiting-card:hover {
  transform: translateY(-10px);
}

.waiting-card img {
   width :       100%;
   height: 200px;
    object-fit: cover;
   border-radius   : 10px;
    margin-bottom   :   1.5rem;
}

.waiting-card h3 {
   font-size   :1.4rem;
    color: #2c3e50;
  margin-bottom: 1rem;
}

.waiting-card p {
	color: #666;
    margin-bottom: 1.5rem;
  line-height: 1.7;
}

.quick-tips {
   padding:  80px 0;
}

.tips-content {
   display: flex; 
	    align-items: center; 
	  gap: 60px;
}

.tips-text    {
   flex: 1;
}

.tips-text h2 {
    font-size: 2.5rem;
  color: #2c3e50;
      margin-bottom: 1.5rem;
}

.tips-text > p {
    font-size: 1.1rem;
  color  :#666;
    margin-bottom: 2rem;
  line-height: 1.8;
}

.tip-item {
   display: flex;
  align-items  :   flex-start;
  gap: 1rem;
  margin-bottom: 2rem; 
	
}

.tip-number  
  {
  background: #007bff;
    color: white;
    width: 40px;
  height: 40px;
	border-radius: 50%;
	display: flex;
   align-items: center;
	 justify-content: center;
	 font-weight: bold;
   flex-shrink: 0;
}

.tip-text h4 {
      font-size: 1.2rem;
  color: #2c3e50;
   margin-bottom: 0.5rem;
     }

.tip-text p {
	 color: #666;
    line-height: 1.7;
}

.tips-image {
    flex     : 1;
}

.tips-image img {
    width: 100%;
   height: auto;
   border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.emergency-contact {
    padding: 80px 0;
    background: #f8f9fa;
 text-align: center;


}

.emergency-content h2 {
	font-size:       2.5rem;
   color     :  #2c3e50;
   margin-bottom: 1.5rem;
}

.emergency-content p
{
  font-size: 1.1rem;

    color: #666;

    margin-bottom: 2rem;

  max-width: 600px;

    margin-left: auto;

  margin-right: auto;

   line-height :  1.8;
}


.emergency-info {
	   display: flex;
  justify-content: center;
    gap: 3rem;
    flex-wrap: wrap; 
	
	}

.emergency-item {
	display: flex;
    flex-direction: column;
   gap: 0.5rem;

}


.emergency-item strong {
  color: #007bff;
  font-size: 1.1rem;
}

.emergency-item span {
    color: #333;
	 font-size: 1.1rem;
}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .mission-content,
    .values-content,
    .expertise-content,
    .confirmation-grid,
    .tips-content {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    
    .approach-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .final-text {
        position: static;
        transform: none;
        margin-top: 2rem;
        padding: 2rem;
    }
    
    .final-image-content img {
        height: 300px;
    }
    
    .thankyou-content h1 {
        font-size: 2.2rem;
    }
    
    .emergency-info {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .waiting-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1,
    .thankyou-content h1 {
        font-size: 1.8rem;
    }
    
    .mission-text h2,
    .values-text h2,
    .expertise-text h2,
    .approach-section h2,
    .experience-section h2,
    .why-choose-section h2,
    .while-waiting h2,
    .tips-text h2,
    .emergency-content h2 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .final-text {
        padding: 1.5rem;
    }
}.cookies-section, .privacy-section {
  padding: 120px 20px 80px;
	max-width: 1200px;
  margin: 0 auto;
}

.cookies-section h1, .privacy-section h1


{
  font-size: 2.5rem;
   color: #2c3e50;
  margin-bottom: 1.5rem;
   text-align: center;
}

.cookies-section h2, .privacy-section h2 {
  color: #2c3e50;
   font-size: 1.8rem;
  margin-bottom :  1rem;
   margin-top: 2rem;
}

.cookies-section p, .privacy-section p {
   color: #666;
  margin-bottom: 1.5rem;
    font-size: 1.1rem;
  line-height: 1.8;
}

.cookies-section ul, .privacy-section ul {
       margin-bottom: 1.5rem;
}@media (max-width: 768px) {
    .cookies-section, .privacy-section {
        padding: 100px 15px 60px;
    }

    .cookies-section h1, .privacy-section h1 {
        font-size: 2rem;
    }

    .cookies-section h2, .privacy-section h2 {
        font-size: 1.5rem;
    }
}