*
{
   box-sizing: border-box;
   margin: 0;
   padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

                    line-height: 1.6;

  color  :     #333;

   background-color: #ffffff;
}


.main-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 1rem 0;
   position: fixed;
    width   :  100%;
   top: 0;
	z-index: 1000;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.header-container {

  justify-content: space-between;
          max-width: 1200px;
	 padding: 0 2rem;
   margin: 0 auto;
   display: flex;
   align-items: center;


}

.company-logo {
   height: 45px; 
    width: auto;
}

.primary-navigation ul


{
   display: flex;
   list-style: none;
    gap: 2rem;
}

.nav-item {


   color: white;
   text-decoration: none;
   font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-item:hover, .nav-item.active {
  background-color: rgba(255,255,255,0.2);
	color: #fff;
}

.mobile-menu-btn	{

               display: none;
   flex-direction: column;
   cursor: pointer;
  gap: 4px;

}

.burger-line {
  width: 25px;
    height: 3px;
    background-color: white;
  transition: all 0.3s ease;
}

.hero-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);

	    padding: 120px 2rem 80px;

	  min-height: 70vh;
}

.hero-content {
    max-width: 1200px;
                    margin: 0 auto;
    display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 4rem;
  align-items: center;
}

.hero-text h1 
 {

	     font-size     :      3.2rem;

	  color: #2c3e50;

	  margin-bottom: 1.5rem;

	    font-weight: 700;

	   line-height: 1.2;

} 

.hero-text p {
      font-size: 1.3rem;
    color: #5a6c7d;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
}

.primary-btn, .secondary-btn {
  display: inline-block;
 padding: 1rem 2rem;
   text-decoration: none;
               border-radius: 30px;
   font-weight: 600;
	 transition     :     all 0.3s ease;
    font-size: 1.1rem;

}

.primary-btn {

  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
     }

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.secondary-btn {
  background : transparent;
  color: #667eea;
	border: 2px solid #667eea;
}

.secondary-btn:hover {
                    background: #667eea;
  color: white;
}

.hero-visual img {
  width: 100%;
    height: auto;
   border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.services-overview {
	padding: 80px 2rem;
   background-color: #f8f9fc;
}

.content-wrapper {
  max-width: 1200px;
   margin: 0 auto;
}

.services-overview h2 {
  text-align  :center;
  font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-weight: 700;
}

.services-grid {
    display   :      grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.service-card {
   background :    white;
   border-radius: 15px;
   padding: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px 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 {
    color:    #2c3e50;
    font-size: 1.4rem;
   margin-bottom: 1rem;
  font-weight: 600;
}

.service-card p {
  color: #5a6c7d;
    line-height  :   1.6;
	font-size: 1rem;
}

.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 2rem;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size   :  2.8rem;
          margin-bottom: 1.5rem;
  font-weight: 700;

}

.cta-content p {
   font-size: 1.3rem;
    margin-bottom   :    2.5rem;
    max-width    :        700px;
    margin-left: auto;
   margin-right: auto;
  line-height: 1.7;
}

.cta-button {
      background: white; 
    color: #667eea; 
 padding: 1.2rem 2.5rem; 
   border-radius  :        30px; 
    text-decoration:     none; 
   font-weight: 600; 
	 font-size: 1.2rem; 
  transition: all 0.3s ease; 
  box-shadow: 0 4px 15px rgba(255,255,255,0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,255,255,0.4);
}

.methodology-section {


    padding: 80px 2rem;
   background-color: white;


}

.method-content {
	 display: grid;
  grid-template-columns:     1fr 1fr;
   gap: 4rem;
   align-items: center;
}

.method-text h2 {
      font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
     }

.method-text p {
    color: #5a6c7d;
	margin-bottom: 2rem;
   font-size: 1.1rem;
    line-height: 1.7;
}

.method-features   {
  list-style: none;
}

.method-features li {
    padding: 0.8rem 0;
  color: #5a6c7d;
   font-size: 1.05rem;
    position: relative;
	 padding-left: 1.5rem;
}

.method-features li::before {
  content: "▶";
   position   :        absolute;
   left: 0;
  color: #667eea;
   font-weight: bold;
}

.method-visual img {
  width: 100%;
    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding   :        80px 2rem;
} 

.contact-wrapper {
  max-width  :     800px;
 margin  :0 auto;
  text-align: center;
}

.contact-section h2 {
    font-size: 2.5rem;
   color: #2c3e50;
    margin-bottom: 1rem;
   font-weight: 700; 

}

.contact-section p {
	    font-size: 1.2rem;
   color: #5a6c7d;
   margin-bottom: 3rem;
    line-height     :  1.6;


}

.contact-form {
  background: white;
	padding: 3rem;
   border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  text-align: left;
}

.form-row {
      display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 1.5rem;
  margin-bottom :       1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {


  display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
   font-weight: 600;
	}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
   padding: 1rem;
  border: 2px solid #e1e8ed;
	 border-radius    :       10px;
        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: #667eea;
}

.submit-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	 color: white;
    padding: 1.2rem 2.5rem;
   border: none;
    border-radius: 30px;
   font-size: 1.1rem;
   font-weight: 600;
    cursor: pointer;
	transition   :        all 0.3s ease;
   width: 100%;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.submit-btn:hover {


  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
	
     }

.site-footer {
   background-color: #2c3e50;
    color: white;
   padding: 3rem 2rem 1rem;
}

.footer-content {
   max-width: 1200px;
    margin: 0 auto;
   display: grid;
  grid-template-columns: 1fr 2fr;
   gap: 3rem;
          margin-bottom: 2rem;
}

.footer-logo {
        height: 60px;
	 width: auto;
  filter: brightness(0) invert(1);
}

.footer-info {
  display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.company-details h4,
.footer-navigation h4 {
    margin-bottom: 1rem;
   font-size: 1.2rem;
    color: #ecf0f1;
	
}

.address, .phone {
  color: #bdc3c7;
   margin-bottom: 0.5rem;
}

.footer-links
	{

    list-style: none;
	}

.footer-links li {


    margin-bottom: 0.5rem;


}

.footer-links a {
      color: #bdc3c7;
       transition: color 0.3s ease;
	text-decoration: none;


}

.footer-links a:hover	{
  color: white;
	}

.footer-bottom {
  border-top: 1px solid #34495e;
   padding-top :  1rem;
  text-align: center;
   color: #bdc3c7;
}@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .primary-navigation {
        display: none;
    }
    
    .primary-navigation.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        padding: 1rem;
    }
    
    .primary-navigation.active ul {
        flex-direction: column;
        gap: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .method-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 1rem;
    }
    
    .hero-section {
        padding: 100px 1rem 60px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
}.about-hero 
 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 120px 2rem 80px;
    color: white;
   text-align: center;
}

.about-hero-content h1 {
  font-size: 3rem;
   margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-hero-content p {
         font-size     : 1.3rem;
    max-width: 800px;
   margin  :     0 auto;
    line-height: 1.7;
    opacity: 0.95;
}

.story-section {
         padding: 80px 2rem;
   background-color: white;

}

.story-grid {
  display: grid;
      grid-template-columns: 1.2fr 1fr;
       gap: 4rem;
   	align-items: center;
}

.story-text h2     {
  font-size: 2.5rem;
    color: #2c3e50;
  margin-bottom: 2rem;
  font-weight: 700;
}

.story-text p {
    font-size: 1.1rem;
  color: #5a6c7d;
  margin-bottom: 1.8rem;
  line-height: 1.7;
}

.achievement-stats {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
 gap: 2rem;
    margin-top: 3rem;
  padding-top: 2rem;
  border-top :  2px solid #e1e8ed;
}

.stat-item {
   text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
  color: #667eea;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-item p {
	color: #5a6c7d;
       font-size: 1rem;
         font-weight: 600;
}

.story-visual img {
 width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.expertise-section {
    padding: 80px 2rem;
  background: linear-gradient(135deg, #f8f9fc 0%, #e9ecef 100%);
}

.expertise-section h2  {
	margin-bottom: 3rem;
  font-size: 2.5rem;
  color: #2c3e50;
   text-align: center;
    font-weight: 700;
} 

.expertise-grid {
  display: grid;
   grid-template-columns: 1fr;
    gap    :  3rem;
}

.expertise-card {
   background: white;
   border-radius: 20px;
   overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  display: grid;
   grid-template-columns: 300px 1fr;
    transition: transform 0.3s ease; 

}

.expertise-card:hover {
  transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
}

.expertise-card:nth-child(even) {
    grid-template-columns: 1fr 300px;
}

.expertise-card:nth-child(even) img		{
    order: 2;
}

.expertise-card:nth-child(even) .expertise-content
{
   order: 1;
}

.expertise-card img {
   width: 100%;
  height: 250px;
   object-fit: cover;
}

.expertise-content {

	   padding: 2.5rem;
  display: flex;
    flex-direction: column;
    justify-content: center;
     }

.expertise-content h3 {
  font-size: 1.5rem;
    color: #2c3e50;
  margin-bottom: 1.2rem;
  font-weight: 600;
}  

.expertise-content p {
    color: #5a6c7d;
	line-height: 1.6;
   font-size: 1.05rem;
}

.values-section    {

   padding: 80px 2rem;
  background-color: white;
}

.values-container {
    max-width: 1200px;
   margin: 0 auto;
}

.values-section h2 {
	text-align   :   center;
    font-size: 2.5rem;
   color: #2c3e50;
   margin-bottom: 3rem;
    font-weight: 700;
}

.values-list {
   display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.value-item {
   padding: 2rem;
    border-left: 4px solid #667eea;
  background: linear-gradient(135deg, #f8f9fc 0%, rgba(102, 126, 234, 0.05) 100%);
}

.value-item h3 {
  font-size: 1.4rem;
    color: #2c3e50;
  margin-bottom: 1rem;
    font-weight: 600;
}

.value-item p {
   color: #5a6c7d;
   line-height: 1.6;
  font-size: 1.05rem;
}

.commitment-section {
 padding: 80px 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color    :     white;


}



.commitment-content {
	max-width: 1000px;
   margin: 0 auto;
    text-align: center;
}

.commitment-content h2 {
   font-size: 2.5rem;
    margin-bottom: 2rem;
	 font-weight: 700;
}

.commitment-content p {
   line-height: 1.7;
	   font-size: 1.2rem;
		margin-bottom: 2rem;
	      opacity: 0.95;
}

.commitment-image {
  margin-top: 3rem;
}

.commitment-image img {
  max-width: 600px;
   width   :100%;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.thankyou-hero {
  padding: 120px 2rem 80px;
  background: linear-gradient(135deg, #f8f9fc 0%, #e9ecef 100%);
  min-height: 80vh;
} 

.thankyou-container {
  max-width :       1200px;
	margin: 0 auto;
   display     :  grid;
  grid-template-columns: 1.2fr 1fr;
                    gap: 4rem;
  align-items: start;
}

.thankyou-content h1    {
   font-size :  3rem;
     color    :       #2c3e50;
  margin-bottom: 1.5rem;
   font-weight: 700;
}

.lead-text {
   font-size: 1.3rem;
   color: #5a6c7d;
   margin-bottom: 3rem;
       line-height: 1.6;
}

.confirmation-details    {
  background: white;
     padding: 3rem;
       border-radius: 20px;
     box-shadow: 0 8px 25px rgba(0,0,0,0.1);
     margin-bottom: 3rem;
}

.confirmation-icon     {
    text-align: center;
  margin-bottom: 2rem;


}

.checkmark-circle {
   width   :     80px;
   height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 50%;
    display: inline-flex;
   align-items: center;
	justify-content: center;
      position: relative;
}

.checkmark {
   width: 25px; 
   height: 15px; 
  border: 3px solid white; 
    border-top: none; 
  border-right: none; 
  transform: rotate(-45deg);
}

.next-steps h2 {
  font-size: 1.8rem;
    color: #2c3e50;
  margin-bottom: 2rem;
   font-weight: 600;
}

.steps-list
	{
  display: flex;
    flex-direction: column;
   gap: 1.5rem;

}

.step-item {
  display: flex;
	align-items: flex-start;
   gap :     1rem;
}

.step-number {
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 30px;
  height:   30px;
  border-radius    :     50%;
    display: flex;
    align-items: center;
   justify-content: center;
  font-weight :       600;
	 flex-shrink: 0;

}

.step-item p {
          color   :   #5a6c7d;
  line-height: 1.6;
        margin: 0;
}

.additional-resources {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  padding     :   2rem;
   border-radius: 15px;
   margin-bottom: 2rem;


}  

.additional-resources h3 {
                    color: #2c3e50;
   margin-bottom: 1rem;
   font-size: 1.3rem;


}

.resource-list {
	list-style: none;
   padding-left: 0;
}

.resource-list li {
   color: #5a6c7d;
    margin-bottom     :   0.8rem;
    padding-left   :  1.5rem;
  position: relative;
}

.resource-list li::before {
  content: "•";
   color: #667eea;
         position: absolute;
   left: 0;
    font-weight: bold;
}

.resource-list a {
   color: #667eea;
    text-decoration: none;
	font-weight: 600;
}

.resource-list a:hover {
  text-decoration: underline;
	
}

.contact-reminder {
     background: white;
    padding: 2rem;
	border-radius: 15px;
  border: 2px solid #e1e8ed;
    text-align: center;
   margin-bottom: 3rem;
	}

.contact-reminder h3 {
  margin-bottom: 1rem; 
   color: #2c3e50; 
  font-size: 1.3rem;
}

.phone-highlight {
  font-size: 1.5rem;
  color: #667eea;
   font-weight: 700;
   margin:      1rem 0;
}

.availability {
   color: #5a6c7d;
       font-size: 0.95rem;
   font-style: italic;
}

.thank-you-actions {
    display    :  flex;
  gap: 1.5rem;
    justify-content: center;
}

.thankyou-visual img {
	 width: 100%;
    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .achievement-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .expertise-card {
        grid-template-columns: 1fr !important;
    }
    
    .expertise-card:nth-child(even) img,
    .expertise-card img {
        order: 0;
        height: 200px;
    }
    
    .expertise-card:nth-child(even) .expertise-content,
    .expertise-content {
        order: 0;
        padding: 2rem;
    }
    
    .values-list {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .thankyou-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .thankyou-content h1 {
        font-size: 2.5rem;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .confirmation-details {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .story-text h2 {
        font-size: 2rem;
    }
    
    .expertise-section h2,
    .values-section h2 {
        font-size: 2rem;
    }
    
    .commitment-content h2 {
        font-size: 2rem;
    }
    
    .thankyou-content h1 {
        font-size: 2rem;
    }
    
    .confirmation-details {
        padding: 1.5rem;
    }
}.cookies-section,
.privacy-section {
    padding: 80px 2rem;
  background-color: white;
}

.cookies-section h2,
.privacy-section h2 {
   text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
   margin-bottom: 2rem;
   font-weight: 700;
     }

.cookies-section .method-text,
.privacy-section .method-text {
   max-width: 800px;
  margin: 0 auto;

}