* {

		 margin: 0;
  padding: 0;
  box-sizing    :border-box;
     }

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
       line-height: 1.6;
   color: #333;
	background-color: #ffffff;
}

.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-wrapper {
    max-width: 1200px;
  margin: 0 auto;
    display: flex;
          justify-content: space-between;
	 align-items: center;
    padding: 1rem 2rem;
}

.brand-section .company-logo {
                    height: 45px;
    width    :    auto;
}

.navigation-links {
   display: flex;

  list-style: none;

  gap: 2rem;
}

.navigation-links li a {
  text-decoration: none;
	color: #2c3e50;
   font-weight: 500;
   transition: color 0.3s ease;
  position: relative;
}

.navigation-links li a:hover {
   color: #3498db;
}

.navigation-links li a::after {
  content: '';
   position: absolute;
    width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
    background-color   :  #3498db;
   transition: width 0.3s ease;
}

.navigation-links li a:hover::after {
	width: 100%;
}

.burger-menu {
    display: none;
   flex-direction: column;
    cursor: pointer;
   gap: 4px;
}

.burger-menu span {
   width: 25px;
  height: 3px;
    background-color: #2c3e50;
	transition: 0.3s;

}

.burger-menu.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-menu.active span:nth-child(2) {
   opacity: 0;
}

.burger-menu.active span:nth-child(3) {
	  transform: rotate(45deg) translate(-5px, -6px);
     }

.hero-section {
	 padding: 120px 20px 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color     :    white;
    min-height: 90vh;
               display: flex;
  align-items: center;
}

.hero-content {
               max-width: 1200px;
   margin: 0 auto;
    display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
                    align-items     :        center;
}

.text-container h1 {
    font-size: 3.2rem;
    font-weight: 700;
  margin-bottom: 1.5rem;
    line-height: 1.2;
}

.text-container p {
  font-size: 1.2rem;
   margin-bottom: 2rem;
	 opacity: 0.9;
    line-height :  1.7;
}  

.cta-buttons 
 {
    display: flex; 
  gap: 1rem; 
   flex-wrap: wrap;
} 

.primary-btn, .secondary-btn  
  {
  padding: 15px 30px;
  text-decoration: none;
    border-radius: 50px;
   font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.primary-btn {
   background: #fff;
  color: #667eea;
}

.primary-btn:hover {


  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
	}

.secondary-btn {
    background: transparent;
    color: white;
  border  :      2px solid white;
}

.secondary-btn:hover {
    background: white;
    color: #667eea; 
	
}

.hero-image img{
    width: 100%;
    height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.services-overview {
   padding: 100px 0;
  background-color: #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(350px, 1fr));
	gap: 2.5rem;
  margin-top: 2rem;


}

.service-card {

	   background: white;
   border-radius: 15px;
   overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	transition:     transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
	}

.service-card.animate-in {
  opacity: 1;
  transform: translateY(0);


}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-card img {
   width: 100%;
   height:    250px;
	object-fit    :        cover;
}

.service-card h3 {
   padding: 1.5rem 1.5rem 0.5rem;
   font-size: 1.4rem;
               color: #2c3e50;
}

.service-card p {
  padding: 0 1.5rem 1.5rem;
   color    :     #666;
    line-height: 1.6;
}

.cta-section {
    padding: 100px 20px;
  background: linear-gradient(45deg, #2c3e50 0%, #3498db 100%);
    color     :  white;
    display: flex;
	align-items: center;
  min-height: 70vh;
     }

.cta-content {
    max-width   :        1200px;
   margin: 0 auto;
   display     :     grid;
    grid-template-columns: 1fr 1fr;
   gap:     4rem;
  align-items: center;
  width: 100%; 
	
}

.cta-content h2 {
   font-size: 2.8rem;
	 margin-bottom: 1.5rem;
  line-height: 1.3;
}  

.cta-content p		{
  font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button{
   background: #e74c3c;
          color: white;
    padding: 18px 35px;
    text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
    font-size: 1.1rem;
   transition     :        all 0.3s ease;
  display: inline-block;
	
}

.cta-button:hover    {
   background    :    #c0392b;
     transform: translateY(-3px);
     box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.cta-image img {
  width     :       100%;
    border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.why-choose-us {
  padding: 100px 0;
      background: white;
}

.why-choose-us h2 {
        text-align: center;
   font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.features-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-item   {
   	text-align :   center; 
	   padding: 2rem; 
	       border-radius: 10px; 
	  transition: transform 0.3s ease; 
	  opacity: 0; 
	  transform: translateY(20px);
	}

.feature-item.animate-in {
   opacity: 1;
  transform: translateY(0);
}

.feature-item:hover {
  transform: translateY(-5px); 
	
}

.feature-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
    color: #2c3e50;
}

.feature-item p  {
  line-height: 1.6; 
  color: #666;
}

.contact-section {
  padding: 100px 0;
   background: #f8f9fa;
}

.contact-section h2 {
  text-align: center;
	font-size: 2.5rem;
  margin-bottom: 3rem;
  color    :    #2c3e50;
}



.contact-wrapper {
	 display: grid;
  grid-template-columns: 2fr 1fr;
  gap:       4rem;
    max-width: 1200px;
        margin  :   0 auto;
}

.contact-form {
        background: white;
   padding: 3rem;
               border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);

}

.form-group {
    margin-bottom  : 1.5rem;
}

.form-row {
  display: grid;
   grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.form-group label {
	     display:      block;
  margin-bottom: 0.5rem;
       font-weight: 600;
   color: #2c3e50;
     }



.form-group input,
.form-group select,
.form-group textarea {
      width: 100%;
    padding: 12px 15px;
     border : 2px solid #e0e0e0;
   border-radius: 8px;
     font-size: 1rem;
   transition: border-color 0.3s ease;
	}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3498db;


}

.submit-btn {
       background: #3498db;
	color: white;
  padding: 15px 30px;
  border: none;
 border-radius: 50px;
	 font-size: 1.1rem;
  font-weight: 600;
   cursor:        pointer;
   transition     :       all 0.3s ease;
    width: 100%;
     }

.submit-btn:hover
	{
         background: #2980b9;
  transform: translateY(-2px);
}

.contact-info {
   background: white;
    padding: 2rem;
         border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height    :    fit-content;
}

.contact-info h3 {
    margin-bottom: 2rem;
    color: #2c3e50;
  font-size: 1.5rem;
}

.info-item {

	    margin-bottom: 1.5rem;
     }

.info-item strong {
   display: block;

	   margin-bottom: 0.5rem;

	   color: #2c3e50;
}

.info-item p   {
    color: #666;
   line-height: 1.6;
}

.site-footer {
  background: #2c3e50;
   color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
   max-width: 1200px;
  margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
               gap: 2rem;
    padding: 0 2rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
	 font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
   margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
   transition: color 0.3s ease;
}

.footer-section ul li a:hover {
	 color: white;
}

.footer-logo

{


   height: 40px;
  width     :    auto;
   margin-bottom: 1rem;
  filter: brightness(0) invert(1);


}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-bottom {
   color:        #bdc3c7;
 text-align  :     center;
   padding: 1rem 2rem 0;
  margin-top: 2rem;
  border-top   :        1px solid #34495e;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .navigation-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
    }
    
    .navigation-links.active {
        right: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .text-container h1 {
        font-size: 2.5rem;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-wrapper {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .text-container h1 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 100px 15px 60px;
    }
    
    .services-overview,
    .why-choose-us,
    .contact-section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 15px;
    }
}.about-hero {
   padding: 120px 20px 80px;
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
  color: white;
   min-height: 80vh;
    display: flex;
   align-items: center;
}

.about-hero-content {
  max-width: 1200px;
  margin: 0 auto;
   display: grid;
    grid-template-columns: 1fr 1fr;
    gap     :     4rem;
       align-items: center; 
	
}

.about-hero-content h1 {
   font-size: 2.8rem;
  font-weight: 700;
    margin-bottom: 1.5rem;
	line-height: 1.2;
}

.about-hero-content p {
   font-size: 1.1rem;
    opacity: 0.9;
  line-height: 1.7;
}

.about-hero-image img {
    width: 100%;
   height   :       auto;
   border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.our-story
{

	  padding: 100px 0;
   background: white;
	}

.story-content {
   display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
       align-items: center;
}

.story-text h2 {
   font-size: 2.5rem;
  margin-bottom: 2rem;
  color :      #2c3e50;
	}


.story-text p  {
               margin-bottom: 1.5rem;
  color: #666;
  line-height   :       1.7;
   font-size: 1.1rem;
}

.story-image img {
    width: 100%;
    border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.our-approach     {

  padding: 100px 0;
    background: #f8f9fa;


}

.our-approach h2 {
    margin-bottom: 3rem;
	text-align: center;
	 font-size: 2.5rem;
	 color: #2c3e50;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
   max-width    :     1200px;
   margin: 0 auto;
}



.approach-item {
    background: white;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    text-align: center;
  transition: transform 0.3s ease;
   position: relative;
	}

.approach-item:hover {
  transform: translateY(-8px);
}

.approach-number {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     color: white;
    width: 60px;
  height: 60px;
    border-radius: 50%;
	display: flex;
	 align-items: center;
  justify-content: center;
   font-size: 1.5rem;
   font-weight: bold;
               margin: 0 auto 1.5rem;
}

.approach-item h3 {
    font-size: 1.4rem;
   margin-bottom: 1rem;
	 color: #2c3e50;
}

.approach-item p

{
	 color: #666;
    line-height: 1.6;
}

.expertise-areas {

	   padding: 100px 0;
   background: white;
	}

.expertise-areas h2 {
   text-align:   center; 
   font-size: 2.5rem; 
    margin-bottom: 3rem; 
     color: #2c3e50;
}

.expertise-content {
  display   :    grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
  align-items :        center;
}


.expertise-list		{
   display: grid;
    gap: 2rem;
}

.expertise-category h3 {
	   font-size    :  1.5rem;
   margin-bottom: 1rem;
  color: #3498db;
}


.expertise-category ul {
       list-style: none;
   padding-left: 0;


}

.expertise-category ul li {

  padding: 0.5rem 0;
    border-left :     3px solid #3498db;
   padding-left: 1rem;
   margin-bottom : 0.5rem;
    color: #666;
  transition: all 0.3s ease;
	

}

.expertise-category ul li:hover {

 background-color: #f8f9fa;
  color: #2c3e50;


}

.expertise-image img {
   width: 100%;
    border-radius    :       12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.values-section   {

     padding: 100px 0;
	background: #f8f9fa;
}

.values-section h2 {
	 text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
  color: #2c3e50;
	
}


.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
}

.value-card {
  background: white;
  padding: 2.5rem 2rem;
   border-radius     :    15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
	transition: all 0.3s ease;
    border-top: 4px solid #3498db;
}

.value-card:hover {


  transform: translateY(-5px);
	  box-shadow: 0 15px 35px rgba(0,0,0,0.12);

}

.value-card h3		{

  font-size: 1.4rem;
   margin-bottom: 1rem;
    color: #2c3e50;
     }

.value-card p {
   color: #666;
    line-height: 1.6;
}

.why-personal {

    padding: 100px 0;
    background: white;

}

.why-content {
   display: grid;

	   grid-template-columns: 1fr 1fr;

	   gap: 4rem;

	    align-items: center;
}

.why-text h2 {
   font-size: 2.5rem;
  margin-bottom: 2rem;
    color: #2c3e50;
}

.reason-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
   border-bottom    :1px solid #eee; 

}

.reason-item:last-child
{
   border-bottom: none;
}

.reason-item h4		{
	font-size    :      1.2rem;

  margin-bottom: 0.5rem;

  color: #3498db;
}

.reason-item p {
  line-height: 1.6;
	color: #666;
}

.why-image img {
    width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.thankyou-hero 
 {
    padding : 120px 20px 80px;
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
  color: white;
  min-height: 90vh;
    display: flex;
    align-items: center;
}

.thankyou-container {
	  max-width: 1200px;
    margin: 0 auto;
         display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 4rem;
    align-items  : center;
     }

.success-content    {
    text-align:  center;
}

.success-icon {
  margin-bottom: 2rem;
}

.checkmark  {

	   width: 80px;
   height: 80px;
   border-radius: 50%;
   display: block;
    stroke-width: 2;
   stroke   :      #fff;
    stroke-miterlimit:       10;
   margin: 0 auto;
    position: relative;
	}

.checkmark-circle {
  width: 80px;
    height: 80px;
   border: 3px solid #fff;
  border-radius: 50%;
                    position: absolute;
	top: 0;
      left: 0;
   animation  :    checkmark-circle 0.6s ease-in-out;
}

.checkmark-stem {
  width: 3px;
   height: 20px;
	 background: #fff;
    position: absolute;
					left: 30px;
   top: 35px;
  transform: rotate(45deg);
  animation: checkmark-stem 0.6s ease-in-out 0.3s both;
}

.checkmark-kick {
   width: 3px;
   height: 12px;
  background: #fff;
   position: absolute;
	 left: 25px;
	top: 45px;
  transform: rotate(-45deg);
   animation   :        checkmark-kick 0.6s ease-in-out 0.5s both;
} @keyframes checkmark-circle {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes checkmark-stem {
    0% { height: 0; }
    100% { height: 20px; }
}

@keyframes checkmark-kick {
    0% { height: 0; }
    100% { height: 12px; }
}.success-content h1 {
    font-weight: 700;

	    margin-bottom: 1.5rem;

	    font-size: 2.8rem;
}

.main-message {


  line-height: 1.7;
  margin-bottom: 3rem;
   opacity: 0.9;
   font-size: 1.2rem;
     }

.next-steps {
  text-align: left;
    margin-bottom: 3rem;
}

.next-steps h3 {
   font-size  : 1.8rem;
  margin-bottom    :   2rem;
   text-align: center;
}

.steps-list {
   display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
   display:     flex;
   align-items: flex-start;
   gap: 1rem;
  background: rgba(255,255,255,0.1);
  padding: 1.5rem;
	border-radius: 10px;
  backdrop-filter: blur(10px);
}

.step-number {
    background: #fff;
    color: #27ae60;
  width: 35px;
  height :     35px;
    border-radius: 50%;
 display  :  flex;
	align-items: center;
  justify-content: center;
  font-weight: bold;
	flex-shrink: 0;
}

.step-content h4 {
  font-size: 1.1rem;
   margin-bottom    :     0.5rem;
}

.step-content p {
   opacity: 0.9;
  line-height: 1.5;
   font-size: 0.95rem;
}

.additional-info {
    display   :  grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
    margin-bottom: 3rem;
}

.info-card     {
  background: rgba(255,255,255,0.1);
    padding: 1.5rem;
	 border-radius: 10px;
  backdrop-filter: blur(10px);
}

.info-card h4 {
      font-size: 1.1rem; 
	  margin-bottom: 0.8rem;
}

.info-card p {
    opacity: 0.9;
     line-height :  1.5;
   font-size: 0.9rem;
}

.action-buttons {
  display: flex;
    gap: 1rem;
    justify-content: center;
  flex-wrap: wrap;
}

.primary-action, .secondary-action {
   padding: 15px 30px;
	text-decoration: none;
	border-radius: 50px;
 font-weight: 600;
   transition: all 0.3s ease;
    display: inline-block;
}

.primary-action {
    background: #fff;
  color: #27ae60;
}

.primary-action:hover{
  transform: translateY(-2px);

  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.secondary-action {
  background: transparent;
	 color: white;
    border: 2px solid white;
}

.secondary-action:hover {
	  background: white;
    color: #27ae60;}

.thankyou-image img


{
  width: 100%;
   border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.while-you-wait {
        padding: 80px 0;
   background: #f8f9fa;
}

.while-you-wait h2 {
  text-align: center;
  font-size: 2.2rem;
   margin-bottom  :     3rem;
	color: #2c3e50;
}

.tips-grid {
	   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.tip-card {
   background: white;
    padding: 2rem;
	 border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.tip-card:hover {
  transform: translateY(-5px);
}

.tip-card h3 {

	   font-size: 1.3rem;
  margin-bottom: 1rem;
    color: #2c3e50;


}

.tip-card p {
  color: #666;
   line-height: 1.6;
}@media (max-width: 768px) {
    .about-hero-content,
    .story-content,
    .expertise-content,
    .why-content,
    .thankyou-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-hero-content h1,
    .success-content h1 {
        font-size: 2.2rem;
    }
    
    .approach-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .additional-info {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .steps-list {
        gap: 1rem;
    }
    
    .step-item {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .about-hero,
    .thankyou-hero {
        padding: 100px 15px 60px;
    }
    
    .our-story,
    .our-approach,
    .expertise-areas,
    .values-section,
    .why-personal,
    .while-you-wait {
        padding: 60px 0;
    }
    
    .approach-item,
    .value-card,
    .tip-card {
        padding: 1.5rem;
    }
}.cookies-section, .privacy-section {
         padding: 120px 20px 80px;
    max-width: 800px;
      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 {
   font-size: 1.8rem;
    color: #2c3e50;
	 margin: 2rem 0 1rem;
}

.cookies-section p, .privacy-section p {

	       font-size: 1.1rem;
    color: #666;
   line-height: 1.7;
  margin-bottom: 1rem; 
	
}@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;
    }
}