* {
    margin: 0;
  padding: 0;
   box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
   line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

.container {
   max-width: 1200px;
   margin: 0 auto;
  padding: 0 20px;
}

.main-navigation {
    background: #ffffff;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  position: fixed;
    width: 100%;
  top: 0;
 z-index: 1000;
}

.nav-container {
	margin: 0 auto;
    max-width: 1200px;
    padding: 15px 20px;
  align-items: center;
  justify-content: space-between;
  display: flex;
}

.nav-logo {
     height: 45px;
   width   :  auto;
}

.nav-links {
   display: flex;

  gap: 35px;
}

.nav-links a {
    text-decoration: none;
   color: #2c3e50;
  font-weight: 600;
   font-size: 16px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #e74c3c;
}

.mobile-menu-toggle {
  display: none;
   flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.mobile-menu-toggle span {
    width  : 25px;
               height  :       3px;
               background-color: #2c3e50;
  transition: 0.3s;
}

.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	padding: 120px 20px 80px;
   color: white;
}

.hero-content {
  max-width: 1200px;
   margin: 0 auto;
    display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 60px;
   align-items   :   center;
}

.hero-text h1 {


   font-size: 3.2em;
    font-weight:        700;
      margin-bottom: 25px;
   line-height: 1.2;


	}

.hero-text p {
       font-size: 1.3em;
   margin-bottom: 35px;
   opacity     :    0.9;
}

.hero-buttons {
  display: flex;
   gap: 20px;
}

.cta-button {
	display: inline-block;
    font-weight: 600;
   text-decoration    :     none;
   border-radius: 8px;
   transition: all 0.3s ease;
   text-align  :     center;
   padding :  15px 30px;
}

.cta-button.primary {
 background-color: #e74c3c;
    color: white;
}

.cta-button.primary:hover    {
	  transform: translateY(-2px);
    background-color: #c0392b;


}

.cta-button.secondary {
	background-color: transparent;
	 color: white;
    border :    2px solid white;
}

.cta-button.secondary:hover {
   background-color: white;
    color: #667eea;
}  

.hero-image img {
   width: 100%;

	  height: 400px;

	  object-fit: cover;

	   border-radius     :     15px;

	  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.services-overview {
   	 padding: 100px 20px;
   background-color: #ffffff;}

.services-overview h2 {
   text-align: center;
	font-size: 2.8em;
   margin-bottom: 60px;
   color: #2c3e50;
}

.services-grid {


	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-card {
    background: white;
    border-radius :   12px;
   overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
   transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card img {
        width: 100%;
   height:    220px;
  object-fit: cover;
}

.service-card h3 {
   padding: 25px 25px 15px;
   font-size: 1.5em;
               color     :       #2c3e50;
}

.service-card p {
    padding: 0 25px 25px;
   color: #666;
   line-height     :    1.7;
}

.transformation-story {
       padding: 100px 20px;
    background: #f8f9fa;
     }

.story-content {
  display: grid;
  grid-template-columns   :       1fr 1fr;
   gap: 80px;
  align-items: center;
}  

.story-text h2{
    font-size: 2.5em;
    margin-bottom: 25px;
    color: #2c3e50;
}

.story-text > p {
     font-size: 1.2em;
     margin-bottom: 40px;
  color: #555;
}

.process-steps  {
   display: flex;
    flex-direction :    column;
   gap: 25px;
}

.step h4 {
  color: #e74c3c;
   font-size    :     1.3em;
    margin-bottom     :     8px;
}

.step p {


   color: #666;
   line-height    :1.6;

}

.story-image img {
  width: 100%;
  height: 450px;
    object-fit: cover;
   border-radius: 15px;
}

.cta-section {
  background: linear-gradient(45deg, #e74c3c, #c0392b);
  padding: 80px 20px;
  text-align    :       center;
   color: white;
}

.cta-content h2 {
    font-size: 2.8em;
  margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.3em;
  margin-bottom: 35px;
   opacity: 0.9;
}

.cta-button.large {
          background-color: white;
    padding   :     20px 40px;
  font-size: 1.2em;
	 border-radius: 50px;
    color: #e74c3c;
}

.cta-button.large:hover  {
   background-color: #f8f9fa;
  transform: translateY(-3px);
}

.contact-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.contact-section h2 {
  text-align: center;
   font-size     :   2.8em;
   margin-bottom: 60px;
	color: #2c3e50;
}

.contact-wrapper {
  display: grid;
                    grid-template-columns: 1fr 2fr;
    gap: 60px;
  max-width: 1000px;
  margin:        0 auto;
}


.contact-info h3 {
  font-size: 1.5em;
   margin-bottom: 30px;
  color: #2c3e50;
}

.contact-item
{
   margin-bottom:  25px;
}

.contact-item strong {
  color: #e74c3c;
    display: block;
    margin-bottom  :       5px;
}

.contact-form {
	 background: #f8f9fa;
        padding  :     40px;
	border-radius: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
	 gap: 20px;
  margin-bottom    :        20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
    font-size: 16px;
   transition: border-color 0.3s ease;


}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
       border-color: #e74c3c;
} 

.contact-form textarea {
   margin-bottom: 25px; 
  height : 120px; 
   resize: vertical;
}

.submit-button     {

   background: #e74c3c;
   color: white;
    padding: 15px 40px;
   border: none;
  border-radius: 8px;
   font-size :   1.1em;
		 font-weight:   600;
  cursor: pointer;
    transition    :  background-color 0.3s ease;
    width: 100%;
     }

.submit-button:hover    {
      background-color: #c0392b;
}  

.main-footer {
    background: #2c3e50;
   color: white;
    padding: 60px 20px 20px;

}

.footer-container {
   max-width     :       1200px;
               margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
} 

.footer-logo {
  height: 50px;
    width: auto;
  filter: brightness(0) invert(1);
   margin-bottom: 15px;
}

.footer-section h4 {
   margin-bottom: 20px;
                    color: #e74c3c;
  font-size: 1.2em;
}

.footer-section ul {
    list-style: none;
}


.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
   color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #34495e;
  color: #bdc3c7;
}@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 2.5em;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2em;
    }
    
    .services-overview h2,
    .contact-section h2,
    .cta-content h2 {
        font-size: 2.2em;
    }
    
    .contact-form {
        padding: 25px;
    }
}.about-hero		{
  background: linear-gradient(120deg, #2c3e50 0%, #4a6741 100%);
  padding   :       120px 20px 80px;
    color: white;
	}

.about-hero-content {
    max-width: 1200px;

    margin: 0 auto;

	display: grid;

    grid-template-columns: 1.2fr 1fr;

       gap: 70px;

  align-items: center;
}

.about-hero-text h1 {
    font-size: 3.5em;
          font-weight: 800;
               margin-bottom: 30px;
		 line-height: 1.1;
}

.about-hero-text p {
       font-size :   1.4em;
   line-height: 1.7;
  opacity: 0.95;




}

.about-hero-image img {
    width :     100%;

	   height: 450px;

	   object-fit: cover;

	  border-radius: 20px;

	  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.company-story {

	    padding: 120px 20px;
       background: #ffffff;
	}

.story-timeline {
  max-width: 1000px;
	  margin: 0 auto;
}

.timeline-item {
   display: grid;
	grid-template-columns: 120px 1fr;
    gap: 50px;
	 margin-bottom: 80px;
    position: relative;
	
}


.timeline-item:not(:last-child)::after {
  content: '';
    position: absolute;
        left: 60px;
   top: 80px;
    width: 2px;
   height: 100px;
  background: linear-gradient(to bottom, #e74c3c, transparent);
}

.timeline-year {
   z-index: 2;
   position: relative;
   border-radius: 50%;
  font-size: 2.2em;
        text-align: center;
  display: flex;
  justify-content: center;
  color: #e74c3c;
  align-items:   center;
   height: 120px;
  background: #f8f9fa;
    width: 120px;
    font-weight: 900;


}


.timeline-content  
  {


  background: white;
        border-radius: 15px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08); 
	
}

.timeline-content h3 {
	font-size: 1.8em;
	color: #2c3e50;
   margin-bottom   :15px; 
	
}

.timeline-content p {
                    font-size: 1.1em; 
    color: #666; 
    line-height   :    1.8; 
   margin-bottom: 25px; 


}

.timeline-content img {
    width: 100%;
  height: 200px;
   -webkit-border-radius: 12px;
  object-fit: cover;
  border-radius: 12px;
} 

.values-section {
    padding: 120px 20px;
   background     :   #f1f2f6;
}

.values-section h2 {
  text-align: center;
       font-size: 3em;
    margin-bottom: 70px;
   color: #2c3e50;

}

.values-grid {
	 display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 50px;
       max-width: 1000px;
       margin: 0 auto;
}

.value-card
	{
   text-align: center;
  background: white;
    padding: 50px 30px;
    border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
     transition    :      transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px);
}

.value-icon {
	margin-bottom: 30px;
}

.icon-shape {
   width     :    80px;
    height: 80px;
   margin   :   0 auto;
   transition: all 0.3s ease;
}

.icon-shape.triangle {
	  width: 0;
   height: 0;
      border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 70px solid #e74c3c;

}

.icon-shape.circle {
  -webkit-border-radius: 50%;
    -moz-border-radius     :   50%;
  border-radius: 50%;
 background: #3498db;
} 

.icon-shape.square {
    background : #f39c12;
  border-radius: 15px;
}

.value-card h3 {
  font-size: 1.6em;
  color: #2c3e50;
    margin-bottom: 20px;
}

.value-card p {
  color: #666;
  line-height: 1.7;
   font-size: 1.05em;
} 

.methodology-section {
    padding: 120px 20px;
    background: white;
}

.methodology-content{
  max-width: 1200px;
    margin: 0 auto;
  display:  grid;
  grid-template-columns: 1.5fr 1fr;
   gap: 80px;
          align-items: start;
}

.method-text h2 {
    font-size: 2.8em;
  color: #2c3e50;
  margin-bottom: 25px;
}  

.method-text > p {
    font-size: 1.2em;
  color  :       #555;
   line-height: 1.8;
   margin-bottom: 50px;
}

.method-principles {
  display: flex;
  flex-direction: column;
       gap: 35px;
}

.principle h4 {
  color: #e74c3c;
      font-size: 1.3em;
    margin-bottom: 10px;
}

.principle p {
  color: #666;
   line-height: 1.6;
}

.method-stats {

                    background: #f8f9fa;
   padding: 50px 30px;
  border-radius :    20px;
    text-align: center;
     }

.stat-item {
  margin-bottom: 40px;
	}

.stat-item:last-child {

   margin-bottom    :     0;
	} 

.stat-number	{
    font-size: 3.5em;
    font-weight: 900;
   color    :        #e74c3c;
  line-height: 1;
}

.stat-label {
   font-size: 1.1em;
  color: #666;
    margin-top: 10px;
}

.location-section {
   padding: 120px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.location-content {
  max-width: 1200px;
  margin :0 auto;
   display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.location-info h2 {
   font-size: 2.8em; 
		margin-bottom: 25px;
}

.location-info p {
    font-size: 1.2em;
   line-height: 1.8;
  margin-bottom: 40px;
	opacity  :        0.9;
} 

.location-details {
    display: flex;
   flex-direction: column;
    gap   :20px;
}

.detail-item {
   display: flex;
  flex-direction: column;
    gap: 5px;
}

.detail-item strong 
 {
  color: #f39c12;
    font-size: 1.1em;
}

.feature-grid {
  display: grid;
    grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.feature-item {
  background: rgba(255,255,255,0.1);
  padding: 30px 25px;
   border-radius: 15px;
  backdrop-filter: blur(10px);
	
}

.feature-item h4 {
    font-size: 1.3em;
	margin-bottom: 15px;
   color: #f39c12;
}

.feature-item p {
    line-height: 1.6;
    opacity     :      0.9;
}

.thankyou-hero {
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
	 min-height: 100vh;
  padding  :       120px 20px 80px;
   display:  flex;
	align-items     :       center;
}

.thankyou-container 
 {
   max-width: 1000px;
   margin: 0 auto;
   width: 100%;


}

.success-message {
  background: white;
	border-radius: 25px;
    padding: 60px 50px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.success-icon {
  margin-bottom: 40px;
}

.checkmark-circle {
	   width: 120px;
    height: 120px;
    border-radius: 50%;
   background: #27ae60;
    margin: 0 auto;
  display: flex;
    align-items:  center;
    justify-content: center;
    position : relative;
  animation: checkmark-bounce 0.6s ease-in-out;

}


.checkmark
	{
	width: 50px;
	height: 25px;
					border-left: 5px solid white;
    border-bottom: 5px solid white;
  transform: rotate(-45deg);
}@keyframes checkmark-bounce {
    0%, 20% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}.success-message h1
	{
  font-size: 3.2em;
	 color: #2c3e50;
  margin-bottom :     25px;
    font-weight: 700;
}

.main-message {
   font-size: 1.3em;
  color: #555;
    line-height: 1.7;
    margin-bottom: 60px;
}

.next-steps {

	                    margin-bottom: 60px;
    text-align :   left;

}

.next-steps h2 {
  text-align:       center;
   margin-bottom: 50px;
	font-size: 2.5em;
    color: #2c3e50;
}

.steps-timeline {
   display: flex;
    flex-direction: column;
          gap: 40px;
} 

.step-item {

	   display: grid;
    grid-template-columns     :  60px 1fr;
   gap: 30px;
    align-items: start;
}

.step-number {
  width     :      60px;
                    height: 60px;
   background: #e74c3c;
	color: white;
   border-radius    :    50%;
	 display: flex;
  align-items: center;
    justify-content: center;
    font-size: 1.5em;
  font-weight    :     700;
}

.step-content h3 {
      color: #2c3e50;
    font-size: 1.4em;
    margin-bottom: 10px;
}

.step-content p {
	color: #666;
  line-height: 1.6;
}

.while-you-wait {
   margin-bottom     :     60px;
}

.while-you-wait h2 {
    font-size: 2.5em;
   color: #2c3e50;
   margin-bottom: 40px;
    text-align: center;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.tip-card {
   background: #f8f9fa;
   padding: 30px 25px;
   border-radius: 15px;
         text-align: center;
}

.tip-card h3 {
  color: #e74c3c;
	font-size  :      1.3em;
  margin-bottom: 15px;
}

.tip-card p{
    color: #666;
	line-height: 1.6;
}

.contact-reminder {
 background: #f1f2f6;
    border-radius: 20px;
   padding: 40px;
   margin-bottom: 50px;
	 display: grid;
  grid-template-columns     :    1.5fr 1fr;
    gap: 40px;
  align-items: center;

}

.reminder-content h3  {
                    color: #2c3e50;
   font-size: 1.6em;
      margin-bottom: 15px;
}

.reminder-content p {
  color: #666;
   line-height: 1.6;
  margin-bottom: 20px;
}

.phone-contact {
  font-size: 1.8em;
    color: #e74c3c;
  font-weight: 700;
   margin-bottom: 15px;
}

.office-info {
   color: #888;
   font-style   :    italic;
}

.reminder-image img {
   width: 100%; 
	         height: 200px; 
						object-fit    :     cover; 
	  border-radius: 15px;
}

.action-buttons {
	   display : flex;
   gap: 20px;
   justify-content: center;


}

.btn-primary, .btn-secondary {
  font-weight: 600;
    transition: all 0.3s ease;
   text-decoration: none;
   border-radius: 50px;
  font-size: 1.1em;
	padding   :     15px 35px;
}

.btn-primary {
    background:    #e74c3c;
  color :white;
}

.btn-primary:hover		{
    background: #c0392b;
  transform: translateY(-2px);
}

.btn-secondary {
         background: transparent;
  color :   #e74c3c;
  border     :     2px solid #e74c3c;
}

.btn-secondary:hover {
    background: #e74c3c;
   color: white;
} @media (max-width: 768px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-hero-text h1 {
        font-size: 2.8em;
    }
    
    .timeline-item {
        grid-template-columns: 80px 1fr;
        gap: 25px;
        margin-bottom: 60px;
    }
    
    .timeline-item:not(:last-child)::after {
        left: 40px;
        height: 80px;
    }
    
    .timeline-year {
        width: 80px;
        height: 80px;
        font-size: 1.6em;
    }
    
    .timeline-content {
        padding: 25px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .methodology-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .success-message {
        padding: 40px 30px;
    }
    
    .success-message h1 {
        font-size: 2.5em;
    }
    
    .steps-timeline {
        gap: 30px;
    }
    
    .step-item {
        grid-template-columns: 50px 1fr;
        gap: 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2em;
    }
    
    .contact-reminder {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .about-hero-text h1 {
        font-size: 2.2em;
    }
    
    .values-section h2,
    .next-steps h2,
    .while-you-wait h2 {
        font-size: 2.2em;
    }
    
    .success-message h1 {
        font-size: 2em;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .value-card {
        padding: 35px 20px;
    }
}.cookies-section,
.privacy-section {
    padding: 100px 20px;
  background-color: #ffffff;
}

.cookies-section h1,
.privacy-section h1 {
        text-align: center;
    font-size: 2.8em;
   margin-bottom: 40px;
    color: #2c3e50;
}

.cookies-section h2,
.privacy-section h2 {
    font-size: 1.8em;
  margin: 30px 0 20px;
    color  : #2c3e50; 
	
}

.cookies-section p,
.privacy-section p {
    line-height: 1.7;
   color: #666;
	font-size: 1.1em;
   margin-bottom:20px;
}

.cookies-section ul,
.privacy-section ul {

  list-style: disc;
   margin-left: 30px;
      margin-bottom: 20px;}

.cookies-section ul li,
.privacy-section ul li {
    font-size: 1.1em;

		color: #666;

	   line-height: 1.7;

	   margin-bottom: 10px;
}@media (max-width: 768px) {
    .cookies-section h1,
    .privacy-section h1 {
        font-size: 2.2em;
    }

    .cookies-section h2,
    .privacy-section h2 {
        font-size: 1.5em;
    }
}

@media (max-width: 480px) {
    .cookies-section h1,
    .privacy-section h1 {
        font-size: 2em;
    }

    .cookies-section h2,
    .privacy-section h2 {
        font-size: 1.3em;
    }
}