* {
  margin: 0;
  padding: 0;
                    box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height   :       1.6;
   color: #2c3e50;
  background-color     :     #ffffff;
}

.main-navigation {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
    position: fixed;
   top: 0;
	width   :   100%;
     z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  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;
}

.company-logo {
  height    :    45px;
 width: auto;
}

.navigation-links {
   display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
   color     :        #34495e;
    font-weight: 500;
    font-size: 1rem;
	 transition: color 0.3s ease;
   position: relative;
}

.nav-link:hover,
.nav-link.active {
   	 color: #e74c3c;}

.nav-link::after {
  content: '';
  position: absolute;
   width: 0;
   height: 2px;
  bottom: -5px;
   left: 0;
   background-color  :  #e74c3c;
    transition :     width 0.3s ease;
}  

.nav-link:hover::after,
.nav-link.active::after


{
    width: 100%;
	
}

.mobile-menu-toggle {
  display: none;
               flex-direction: column;
	 background     : none;
   border: none;
  cursor: pointer;
   padding: 0.5rem;
}


.burger-line{
   width: 25px;
  height: 3px;
    background-color: #34495e;
  margin: 3px 0;
  transition: 0.3s;
  border-radius   :  2px;
}

.hero-section
{
     margin-top: 80px;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  min-height    :     70vh;
  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;
}

.main-headline {
   font-size :  3.2rem;
       font-weight: 700;
   line-height: 1.2;
    margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-description {
   line-height: 1.8;
   opacity: 0.9;
   font-size: 1.2rem;
   margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
   gap: 1rem;
  flex-wrap: wrap;
}

.primary-button,
.secondary-button {
   display: inline-block;
  padding: 1rem 2rem;
	text-decoration: none;
     border-radius: 8px;
  font-weight: 600;
   font-size: 1.1rem;
   transition: all 0.3s ease;
  text-align: center;
}

.primary-button {
  background-color :       #e74c3c;
	 color: white;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

.primary-button:hover {
    background-color: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.6);
}

.secondary-button {
   background-color: transparent;
    color  :white;
   border: 2px solid white;
}

.secondary-button:hover

{
	background-color: white;
  color: #667eea;
}

.hero-main-image {
  width: 100%;
  height:   auto;
   border-radius  : 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
     }

.services-overview {
                    padding: 5rem 2rem;
	background-color: #f8f9fa;
}

.section-container {

	  max-width: 1200px;
  margin: 0 auto;
     }

.section-title {
	  text-align: center;
   font-size: 2.5rem;
   color:       #2c3e50;
   margin-bottom     :   3rem;
   position: relative;

}

.section-title::after {
  content: '';
	 position: absolute;
   bottom: -10px;
    left: 50%;
  transform: translateX(-50%);
  width: 80px;
         height: 4px;
    background-color:  #e74c3c;
	border-radius    :  2px;
}

.services-grid {
   display: grid;

  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));

   gap: 2rem;
}

.service-card {
	 background    :white;
  border-radius :        15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);

}

.service-image {
  width: 100%;
  height: 250px;
   object-fit: cover;
}

.service-card h3  {
  font-size: 1.5rem;
    color: #2c3e50;
	margin: 1.5rem 1.5rem 1rem;
}



.service-card p {
  color: #7f8c8d;
    margin: 0 1.5rem 2rem;
  line-height: 1.7;
}

.cta-section {
   padding: 5rem 2rem;
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
	color: white;
	
}

.cta-content {
   max-width  :    1200px;
  margin: 0 auto;
  display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 3rem;
      align-items: center;
    margin-bottom: 3rem;
}

.cta-text h2 {

	font-size: 2.5rem;
	   margin-bottom :       1.5rem;

}

.cta-text p {
    font-size: 1.1rem;
   margin-bottom: 2rem;
   opacity: 0.9;
}

.benefits-list
	{
  list-style: none;

	    margin-left: 0;
}

.benefits-list li {
   padding: 0.5rem 0;
  position: relative;
  padding-left     :   2rem;
}

.benefits-list li::before {
  content: '✓';
	position: absolute;
    left: 0;
  top: 0.5rem;
                    color  :     #2ecc71;
          font-weight: bold;
  font-size: 1.2rem;
}

.cta-main-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-button-center {

	    text-align: center;




}

.cta-primary-button {
   display: inline-block;
  background-color : #e74c3c;
   color: white;
  padding: 1.2rem 3rem;
    text-decoration    : none;
    border-radius: 50px;
  font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);

}

.cta-primary-button:hover {
	background-color: #c0392b;

	  transform: translateY(-3px);

	  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.6);
}

.testimonials-section {

		padding: 5rem 2rem;
    background-color: white;

}

.testimonials-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.testimonial-card {
  background: #f8f9fa;

    padding: 2rem;

    border-radius:    15px;

    border-left: 5px solid #e74c3c;
}

.testimonial-card p {
   font-style:italic;
    margin-bottom: 1.5rem;
   color: #555;
  font-size: 1.1rem;
}

.testimonial-author     {
   display: flex;
  flex-direction: column;
}

.testimonial-author strong {
   color: #2c3e50;
  margin-bottom: 0.25rem;
}

.testimonial-author span {
     color: #7f8c8d;
  font-size: 0.9rem;


}

.contact-section {
   padding: 5rem 2rem;
  background: linear-gradient(45deg, #667eea, #764ba2);
 color: white;
}

.contact-content {
        max-width: 1200px;
   display: grid;
  gap: 4rem;
  grid-template-columns   :       1fr 1fr;
     margin: 0 auto;
}

.contact-info h2 {
  font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
	          font-size: 1.1rem;
  margin-bottom:   2rem;
   opacity: 0.9;

}

.contact-details {
  gap: 1.5rem;
               flex-direction    :        column;
   display: flex;
}

.contact-item h4 {
   color: #fff;
     margin-bottom: 0.5rem;
     font-size: 1.1rem;
}

.contact-item p {
  opacity: 0.8;
  margin: 0;
}

.contact-form-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
               border-radius: 15px;
   padding: 2rem;
}

.contact-form {
  display: flex;
    flex-direction    :       column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 1rem;
}

.form-group {
        display: flex;
  flex-direction: column; 
	
}

.form-group label {
  margin-bottom: 0.5rem;
	 font-weight    :  500;
   color  :white;

}

.form-group input,
.form-group select,
.form-group textarea {


  padding: 0.8rem;
    border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
	color: #2c3e50;
  font-size: 1rem;
  transition: all 0.3s ease;
	}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
	background: white;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.3);
}

.form-submit-button{
  background-color: #e74c3c;
  color: white;
   padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
                    font-weight: 600;
   font-size: 1.1rem;
    cursor :  pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}


.form-submit-button:hover {
  transform: translateY(-2px);
  background-color: #c0392b;
}

.main-footer    {
	background-color: #1a252f;
        color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content   {

	   max-width: 1200px;
    margin     :0 auto;
    display: grid;
   grid-template-columns: 2fr 1fr 1fr 1fr;
   gap: 2rem;
     }  

.footer-logo {
   height:        40px;
  width: auto;
  filter: brightness(0) invert(1);
	margin-bottom: 1rem;
}

.footer-description {
  color: #bdc3c7;
   line-height: 1.6;
  font-size: 0.95rem;
}

.footer-column h4 {
    color: white;
  font-size: 1.1rem;
					margin-bottom: 1rem;
}

.footer-column ul {
	list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
  color: #bdc3c7;
  text-decoration: none;
	transition: color 0.3s ease;
}

.footer-column ul li a:hover {


    color: #e74c3c;
     }

.footer-bottom{
    max-width: 1200px;
  margin: 0 auto;
   border-top: 1px solid #34495e;
  padding-top: 2rem;
  margin-top: 2rem;
   text-align: center;
    color: #7f8c8d;
}@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .navigation-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .navigation-links.active {
        transform: translateX(0);
    }

    .mobile-menu-toggle.active .burger-line:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .mobile-menu-toggle.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active .burger-line:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .main-headline {
        font-size: 2.2rem;
    }

    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-wrapper {
        padding: 1rem;
    }

    .hero-section {
        padding: 2rem 1rem;
    }

    .main-headline {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
        max-width: 300px;
    }
}.about-hero-section {
  margin-top: 80px;
    padding: 4rem 2rem;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  min-height     :      60vh;
  display: flex;
   align-items: center;
}

.about-hero-content {
    max-width: 1200px;
   margin: 0 auto;
	display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 3rem;
    align-items: center;
}

.about-main-title {
   font-size: 2.8rem;
        font-weight  :        700;
	line-height: 1.3;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.about-hero-description {
  font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.about-main-image {
    width: 100%;
  height: auto;
   border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.our-story-section {
      padding: 5rem 2rem;
   background-color     :   white;
}

.story-content {
   display    : grid;
   grid-template-columns   :       1fr 1fr;
    gap: 3rem;
    align-items: center;
	
}


.story-text h2


{
   font-size: 2.3rem;
  color: #2c3e50;
  margin-bottom: 2rem;
}

.story-text p {
      font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
   margin-bottom: 1.5rem;
}

.story-main-image {
				 width: 100%;
	height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.mission-values-section {
    padding: 5rem 2rem;
  background: linear-gradient(45deg, #f8f9fa, #e9ecef);
}

.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;
   text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition :    transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-icon-placeholder {
    width: 60px;
    height: 60px;
  background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.value-card h3 {
    font-size: 1.4rem; 
	  color  :      #2c3e50; 
	   margin-bottom :      1rem;
}

.value-card p {
   		color: #666;
  line-height: 1.6;

}

.team-expertise-section {

    padding: 5rem 2rem; 
    background-color: white;
     }  

.expertise-content {
   display: grid;
  grid-template-columns   :1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.expertise-main-image {
	width: 100%;
    height   : auto;
         border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.expertise-text h2 {
	font-size: 2.3rem;
   color: #2c3e50;
  margin-bottom: 2rem;
}

.expertise-stats {
     margin-bottom: 2rem;
		 display:   grid;
  grid-template-columns: repeat(2, 1fr);
               gap: 2rem;
     }

.stat-item {
   text-align: center;
    padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 10px;
}

.stat-number {
	 font-size: 2.5rem;
     font-weight:   700;
   color: #e74c3c;
    margin-bottom: 0.5rem;
}

.stat-description {
    color     :#666;
    font-size: 0.9rem;
     line-height: 1.4;
}

.expertise-text p {
    font-size     :    1.05rem;
  line-height: 1.7;
  color: #555;
}

.approach-methodology-section
	{
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.methodology-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.method-step {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
    padding: 2rem;
   border-radius: 15px;
    text-align:  center; 
	
}

.step-number {
    display    :    inline-block;
   width: 50px;
    height: 50px;
   background-color: #e74c3c;
   color: white;
   border-radius: 50%;
        line-height: 50px;
    font-size: 1.2rem;
  font-weight: 700;
  margin-bottom     : 1.5rem;
}

.method-step h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.method-step p {
    opacity   :        0.9;
    line-height: 1.6;
}

.why-choose-us-section {
       padding: 5rem 2rem;
   background-color: white;
}

.why-choose-content {
   grid-template-columns: 1fr 1fr;
  display: grid;
    gap: 3rem;
    align-items: center;
}

.why-choose-text h2 {
      font-size: 2.3rem;
   color: #2c3e50;
    margin-bottom: 2rem;
}

.advantages-list {
  list-style:       none;
  padding-left: 0;
}

.advantages-list li {
  padding: 0.7rem 0;
    padding-left: 2rem;
   position: relative;
    color: #555;
  font-size     :       1.05rem;
   line-height: 1.5;
}

.advantages-list li::before {
  content: '✓';
  position: absolute;
    left: 0;
   top: 0.7rem;
	color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
}

.why-choose-main-image {
   width: 100%;
	    height:  auto;
	         border-radius: 12px;
	  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.thankyou-main-section {
    margin-top: 80px;
   padding: 4rem 2rem;
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
  color: white;
   min-height: 70vh;
}

.thankyou-container {
    max-width: 1200px;
   margin: 0 auto;
}

.thankyou-content {
   display: grid;
      grid-template-columns: 1fr 1fr;
  gap: 4rem;
	align-items: start;
}

.success-icon-placeholder {
   width: 80px;
   height: 80px;
  background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
   margin: 0 0 2rem 0;
   position: relative;
}

.success-icon-placeholder::after {
  content: '✓';
  position   :absolute;
    top: 50%;
    left: 50%;
  transform: translate(-50%, -50%);
	font-size: 2.5rem;
    font-weight: bold;
    color: white;
}

.thankyou-title  {
   font-size: 3rem;
   font-weight: 700;
   margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.thankyou-description {
	 font-size: 1.2rem;
  line-height     : 1.7;
  margin-bottom: 3rem;
	opacity: 0.95;
}

.next-steps-block {
    margin-bottom: 3rem;
}

.next-steps-block h2 {
                    font-size :        1.8rem;
    margin-bottom: 2rem;
}

.steps-timeline {
                    display: flex;
    flex-direction:    column;
	gap: 2rem;
}

.timeline-item {
    display: grid;
  grid-template-columns: auto 1fr;
   gap: 1.5rem;
    align-items: start;
}


.timeline-marker {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
   display: flex;
    align-items: center;
    justify-content: center;
  font-weight: 700;
    font-size: 1.1rem;
}  

.timeline-content h3  {


        font-size: 1.3rem;
  margin-bottom: 0.5rem;
     }

.timeline-content p
{
    opacity: 0.9;
     line-height: 1.6;
     font-size   :       1rem;
}

.contact-reminder {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding     :        2rem;
  border-radius  :      12px;
   margin-bottom: 3rem;
}

.contact-reminder h3 {
  font-size: 1.4rem;
     margin-bottom: 1rem;
}

.contact-reminder p {
  margin-bottom: 1rem;
  opacity: 0.9;
}

.emergency-contact p{
    margin-bottom: 0.5rem;
  font-size: 1rem;
}

.thankyou-buttons {

	    display: flex;
      gap: 1rem;
	 flex-wrap: wrap;
}

.thankyou-main-image     {
   width: 100%;
   height: auto;
	 border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
   margin-bottom: 2rem;
}

.additional-resources {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
	border-radius: 12px;
}

.additional-resources h3
{

  font-size: 1.4rem;
	 margin-bottom: 1.5rem;
     }

.preparation-list  {
    list-style: none; 
    padding-left: 0; 
	
}

.preparation-list li

{
   padding    :      0.5rem 0;
  padding-left: 1.5rem;
   position: relative;
    opacity: 0.9;
}

.preparation-list li::before {
  content: '→';
    position: absolute;
  left : 0;
      top: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: bold;
	
}

.related-content-section {
    padding: 5rem 2rem;
   background-color: #f8f9fa;
}

.related-cards-grid  {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.related-card {
    background: white;
    border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.related-card:hover {
  transform: translateY(-5px);
}

.related-card-image {
     width: 100%;
	height: 200px;
    object-fit: cover;
	}

.related-card-content {
  padding: 2rem;
}

.related-card-content h3   {


    font-size: 1.3rem;
    color    :      #2c3e50;
   margin-bottom: 1rem;
	}

.related-card-content p {


 color: #666;
  line-height     :    1.6;
    margin-bottom: 1.5rem;
	}

.related-card-link {
   font-weight :       600;
    color: #e74c3c;
    transition: color 0.3s ease;
  text-decoration: none;
}

.related-card-link:hover  {
    color: #c0392b;
}@media (max-width: 768px) {
    .about-hero-content,
    .story-content,
    .expertise-content,
    .why-choose-content,
    .thankyou-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-main-title,
    .thankyou-title {
        font-size: 2.2rem;
    }

    .expertise-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .methodology-grid {
        grid-template-columns: 1fr;
    }

    .steps-timeline {
        gap: 1.5rem;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .thankyou-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
        max-width: 300px;
    }

    .related-cards-grid {
        grid-template-columns: 1fr;
    }
}.cookies-section,
.privacy-section		{
    padding: 5rem 2rem;
	background-color: #f8f9fa;

}

.cookies-content,
.privacy-content {
 max-width     :    1200px;
    margin: 0 auto;
        color: #2c3e50;
}

.cookies-content h2,
.privacy-content h2 {
   font-size: 1.8rem;

	  color: #2c3e50;

		 margin: 2rem 0 1rem;
}

.cookies-content p,
.privacy-content p {
  font-size: 1.1rem;
	 margin-bottom: 1.5rem;
  line-height:       1.7;
    color: #555;
}@media (max-width: 768px) {
    .cookies-section,
    .privacy-section {
        padding: 3rem 1rem;
    }

    .cookies-content h2,
    .privacy-content h2 {
        font-size: 1.5rem;
    }

    .cookies-content p,
    .privacy-content p {
        font-size: 1rem;
    }
}