* {
   margin: 0;
    padding: 0;
	box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
   line-height    :1.6;
   color: #333;
   background-color     :     #ffffff;
}

.main-header {
       position: fixed;
      top: 0;
   width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
	z-index: 1000;
  transition :    all 0.3s ease;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.main-header.scrolled   {
  background: rgba(255, 255, 255, 0.98); 
	  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navigation-wrapper {
  padding: 0 20px;
}

.nav-container {
   display  :       flex;
    justify-content: space-between;
    align-items    : center;
    max-width: 1200px;
  margin: 0 auto;
    height: 70px;
}

.site-logo  {
     height: 45px;
	 width: auto;

}

.menu-items {
    display: flex;
   gap: 30px;
}

.nav-link{
      text-decoration: none;
      color: #333;
    font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: #2c5aa0;
}

.nav-link.active::after {
  content: '';
   position :       absolute;
    bottom    :   -5px;
   left: 0;
   width: 100%;
  height: 2px;
    background     :     #2c5aa0;
}

.burger-menu {


	display: none;
   flex-direction  :      column;
  cursor: pointer;
  padding:   10px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
  background: #333;
	margin: 3px 0;
    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);
}

.content-area {
   margin-top: 70px;
}

.hero-banner {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
   display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center; 

}

.main-title {
  font-size: 3.2rem;
  font-weight :       bold;
  color: #2c3e50;
   margin-bottom: 24px;
   line-height: 1.2;
}

.hero-description {
	font-size: 1.3rem;
	color: #5d6d7e;
   margin-bottom: 35px;
  line-height     :        1.7;
}

.action-buttons {
   display: flex;
   gap   :     20px;
}

.primary-btn, .secondary-btn


{

	    padding  :        16px 32px;
   text-decoration: none;
               border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
  display: inline-block;
}

.primary-btn {
        background: #3498db;
    color: white;
}

.primary-btn:hover


{
		 background: #2980b9;
  transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
} 

.secondary-btn {
  background    :     transparent;
	 color: #3498db;
    border: 2px solid #3498db;
}

.secondary-btn:hover {
   background: #3498db;
  color: white; 
	
}

.hero-image {
   width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}  

.services-overview {
  padding: 100px 20px;
    background  : #ffffff;
}

.section-container {
    max-width: 1200px;
 margin: 0 auto;
     }

.section-title {
	font-size:   2.8rem;
   text-align: center;
     margin-bottom: 60px;
  color: #2c3e50;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
                       background: #f8f9fa;
  padding: 35px 25px;
   border-radius: 15px;
    text-align: center;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
     }

.service-card:hover  {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-img{
    width: 100%;
	 height: 200px;
	 object-fit     :cover;
                    border-radius: 10px;
 margin-bottom: 25px;
}

.service-card h3 {
  margin-bottom: 15px;
  color   :      #2c3e50;
   font-size :    1.6rem;
}

.service-card p {
	color: #5d6d7e;
  line-height  :  1.6;
}

.collaboration-coaching {

    padding: 100px 20px;
        background: #ecf0f1;
     }

.content-wrapper {
               grid-template-columns: 1fr 1fr;
   align-items: center;
  max-width: 1200px;
   gap: 60px;
  margin: 0 auto;
   display: grid;
}

.collab-image {
	  width: 100%;
     height    :      auto;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);

}

.text-content h2 
 {

	    font-size: 2.5rem;
	margin-bottom: 25px;
    color: #2c3e50;
     }

.text-content p   {
	 font-size: 1.2rem;
   color: #5d6d7e;
    margin-bottom: 30px;
   line-height: 1.7;
}

.benefits-list {
  display: flex;
    flex-direction: column;
  gap: 15px;
}  

.benefit-item {
    padding: 12px 0;
  border-left:      4px solid #3498db;
  padding-left: 20px;
  font-weight: 500;
   color: #2c3e50;
}

.cta-section {
   padding: 80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
   color: white;
}

.cta-container {
    max-width: 800px;
  margin:        0 auto;
} 

.cta-title {
  font-size: 2.8rem;
   margin-bottom  :    20px;
}

.cta-text {
    font-size: 1.3rem;
     margin-bottom: 35px;
  opacity: 0.9;
}

.cta-button {
    display: inline-block;

    padding: 18px 40px;

   background: white;

   color: #667eea;

  text-decoration: none;

    border-radius: 50px;

    font-weight: 600;

   font-size: 1.1rem;

                    transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.contact-section {
    padding: 100px 20px;
					background: #f8f9fa;
}

.contact-container {
   max-width: 1000px;
  margin: 0 auto;
}

.contact-title {
	font-size: 2.5rem;
  text-align: center;
    margin-bottom: 60px;
   color: #2c3e50;
}

.contact-content


{
   display: grid;
  grid-template-columns: 1fr 2fr;
               gap: 60px;
	
}

.contact-info h3 {
    font-size   :      1.8rem;
  margin-bottom: 30px;
   color: #2c3e50;
}

.info-item {
   margin-bottom: 25px;
}

.info-item strong {
				 color: #3498db;
  display  :      block;
    margin-bottom: 8px;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
	margin-bottom     :       25px;
}

.form-group label{
 display   :       block;
  margin-bottom :        8px;
    color: #2c3e50;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
   padding: 12px 15px;
	 border: 2px solid #e0e6ed;
   border-radius: 8px;
   font-size :        16px;
   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 {
       width  :        100%;
	padding: 15px;
  background: #3498db;
    color: white;
  border: none;
  border-radius: 8px;
    font-size: 1.1rem;
  font-weight: 600;
	cursor     :      pointer;
    transition: background 0.3s ease;}

.submit-btn:hover {

	         background: #2980b9;


}

.site-footer {
   background: #2c3e50;
  color: white;
   padding  :      60px 20px 0;
}

.footer-content

{
   max-width :        1200px;
  margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-logo {
   height: 40px;
   width: auto;
  filter: brightness(0) invert(1);
   margin-bottom: 20px;
}

.footer-description {
	  color: #bdc3c7;
  line-height: 1.6;

}

.footer-section h4 {
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.footer-links {
       display: flex;
   flex-direction: column;
  gap: 10px;
}

.footer-links a
{
   color: #bdc3c7;
    text-decoration: none;
	transition: color 0.3s ease; 

}

.footer-links a:hover {
    color: white;
}

.footer-bottom		{
  text-align: center;
  padding:  30px 0;
   margin-top: 40px;
         border-top: 1px solid #34495e;
   color: #95a5a6;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .menu-items {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
    }
    
    .menu-items.mobile-active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero-banner,
    .services-overview,
    .collaboration-coaching,
    .contact-section {
        padding: 60px 15px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .contact-form {
        padding: 25px;
    }
}.page-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	padding: 120px 20px 80px;
    text-align: center;
   color: white;
}

.hero-wrapper {
	    max-width: 800px;
  margin: 0 auto;}

.page-main-title {
   font-size: 3.5rem;
	font-weight  :bold;
   margin-bottom: 25px;
    line-height   :       1.1;
}

.page-subtitle {
   font-size: 1.4rem;
	opacity: 0.9;
   line-height: 1.6;
}

.company-story {


         padding:        100px 20px;
  background: #f8f9fa;

}

.story-container {

    max-width: 1200px;
   margin: 0 auto;
	}

.story-content {
  display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
   align-items: center;
}

.story-title {
  font-size: 2.8rem;
  color: #2c3e50;
   margin-bottom: 30px;
    line-height  :1.2;
}

.story-text {
  font-size: 1.2rem;
    color: #5d6d7e;
  line-height: 1.7;
    margin-bottom: 25px;
}

.story-image {
	width: 100%;
    height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.expertise-areas {
   padding: 100px 20px;
    background: white;
}

.expertise-wrapper {
    max-width  :        1200px; 
	      margin: 0 auto; 

}

.section-header {
   font-size   :   2.8rem;
   text-align: center;
    color: #2c3e50;
  margin-bottom:       70px;
}

.expertise-grid {
   display: flex;
    flex-direction: column;
    gap: 50px;
}

.expertise-item {
  display  :        grid;
  grid-template-columns: 1fr 1.5fr;
   gap: 50px;
  align-items: center;
}

.expertise-item:nth-child(even) {
   grid-template-columns: 1.5fr 1fr; 
	
}

.expertise-item:nth-child(even) .expertise-visual {
  order: 2;
}

.expertise-item:nth-child(even) .expertise-content {
    order:  1;


}

.expertise-img {
   width: 100%;
   height: 280px;
  object-fit  :        cover;
    border-radius: 12px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.expertise-content h3 {
          font-size :    2.2rem;
					color: #2c3e50;
   margin-bottom: 20px;
}

.expertise-content p {
  font-size: 1.2rem;
   color: #5d6d7e;
	line-height: 1.7;
}

.methodology-section {
    padding: 100px 20px;
	 background   :  #ecf0f1;
}

.methodology-container {
	max-width: 1200px;
 margin: 0 auto;
}

.method-content {
   display: grid;
	 grid-template-columns: 1.3fr 1fr;
    gap: 70px;
  align-items: flex-start;
}

.method-text h2 {
    font-size: 2.8rem;
    color: #2c3e50;
   margin-bottom: 25px;
}

.method-description  
  {
   font-size: 1.2rem;
    color: #5d6d7e;
   line-height: 1.7;
   margin-bottom: 40px;
}

.methodology-steps {
    display: flex;
   flex-direction: column;
   gap: 30px;
}

.step-item {
    display: flex;
      gap: 25px;
  align-items: flex-start;
}

.step-number   {
   background: #3498db;
   color: white;
  width: 50px;
     height: 50px;
   border-radius: 50%;
	display: flex;
   align-items: center;
   justify-content: center;
  font-weight: bold;
	font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.4rem;
      color: #2c3e50;
     margin-bottom: 10px;
}

.step-content p {
	  color     :     #5d6d7e;
	line-height: 1.6;


}

.method-image {
   width: 100%;
    height: auto;
   border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.achievements-section{
  padding: 80px 20px;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.achievements-wrapper


{
    max-width: 1000px;
  margin: 0 auto;
  text-align: center; 

}

.achievements-title {

                    font-size: 2.8rem;
    margin-bottom   :        60px;}

.stats-container {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap     : 40px;


}

.stat-item {
                    text-align: center;
}

.stat-number {
	    font-size: 3.5rem;
   font-weight: bold;
  color: #3498db;
    margin-bottom: 10px;

}

.stat-label {
	  font-size: 1.1rem;
	 opacity: 0.9;
     }

.values-section {
  background: white;

  padding: 100px 20px;
}

.values-container {
    max-width: 1000px;
  margin: 0 auto;
}

.values-title {
  font-size: 2.8rem;
   margin-bottom: 60px;
  color: #2c3e50;
   text-align: center;
}

.values-grid {
 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 35px;
}

.value-card {
   background: #f8f9fa;
  text-align: center;
    border-radius: 12px;
    padding: 35px 25px;
   border-left: 4px solid #3498db;
	 transition: transform 0.3s ease, box-shadow 0.3s ease;
     }

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.value-card h3 {
	font-size: 1.6rem;

	    color: #2c3e50;

	   margin-bottom: 15px;
}

.value-card p {

	  color: #5d6d7e;

   line-height: 1.6;
	}

.thankyou-hero {
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
  padding: 120px 20px 80px;
    text-align: center;
   color: white;
}

.thankyou-container {
   max-width: 800px;
    margin: 0 auto;
}

.success-content {
	display: flex;

	     flex-direction: column;

		 align-items: center; 
	
}

.success-icon   {
  margin-bottom: 30px;

}

.checkmark-circle {
   width :    80px;
    height: 80px;
   border-radius: 50%;
	 background: white;
  display: flex;
    align-items   : center;
	justify-content: center;
    position: relative;
   animation    :  scaleIn 0.5s ease-out;
}

.checkmark {
    width: 25px;
	height: 45px;
    border :    solid #27ae60;
   border-width: 0 4px 4px 0;
  transform: rotate(45deg);
  animation: drawCheck 0.8s ease-out 0.3s both;
} @keyframes scaleIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

@keyframes drawCheck {
    0% { height: 0; }
    100% { height: 45px; }
}.thankyou-title {
   font-size: 3.2rem;
   font-weight: bold;
   margin-bottom: 25px;
}

.thankyou-message {
   font-size: 1.3rem;
    line-height: 1.7;
       opacity: 0.95;
}

.next-steps {
   padding: 100px 20px;
  background: #f8f9fa;
}

.steps-container {
    margin :0 auto;
   max-width: 900px;
	
}

.steps-title		{
    font-size: 2.8rem;
    text-align: center;
	 color: #2c3e50;
	margin-bottom: 60px;
}

.timeline-wrapper {
    position: relative; 
	
}



.timeline-wrapper::before {


  content: '';
   position: absolute;
  left: 30px;
   top: 0;
    bottom     :     0;
   width: 3px;
  background: #3498db;


     }

.timeline-item
	{
    display: flex;
   margin-bottom: 50px;
    position: relative;
}

.timeline-marker

{
  width: 60px; 
	   height: 60px; 
	  background: #3498db; 
	    border-radius: 50%; 
	   display: flex; 
	         align-items: center; 
	    justify-content   :        center; 
	   flex-shrink   :       0; 
		 z-index: 1;
}

.timeline-number {
   color: white;
   font-weight : bold;
  font-size: 1.4rem;
}

.timeline-content	{
       margin-left: 30px;
   background: white;
	padding: 25px 30px;
    border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
   flex: 1;

}

.timeline-content h3 {
  font-size: 1.6rem;
  color: #2c3e50;
  margin-bottom: 15px;
}

.timeline-content p {
   color: #5d6d7e;
        line-height: 1.6;
    margin-bottom     :       10px;
}



.timeline-time  
  {
   color: #3498db;
  font-weight: 600;
    font-size: 0.95rem;
}

.additional-resources {
   padding: 100px 20px;
   background: white;
}

.resources-container {

    max-width     :1200px;
	margin: 0 auto;
    text-align: center;

}

.resources-title {
      font-size: 2.8rem;
    color: #2c3e50;
  margin-bottom: 25px;
}

.resources-intro {
    font-size: 1.2rem;
  color: #5d6d7e;
    margin-bottom: 50px;
  max-width: 700px;
   margin-left: auto;
    margin-right: auto;
}

.resource-cards {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 35px;
}

.resource-card {
    background: #f8f9fa;
     padding  :30px 25px;
       border-radius :        15px;
       transition     :   transform 0.3s ease, box-shadow 0.3s ease;


}

.resource-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.resource-image {
		width: 100%;
  height: 180px;
    object-fit: cover;
  border-radius   :       10px;
         margin-bottom: 20px;}

.resource-card h3 {
   font-size  :        1.5rem;
	 color: #2c3e50;
   margin-bottom: 15px;
}

.resource-card p {
    color: #5d6d7e;
    line-height: 1.6;
}

.contact-reminder {
   padding: 80px 20px;
  background: #ecf0f1;
   text-align: center;

}

.reminder-container {
        max-width  :       800px;
   margin     :    0 auto;
}

.reminder-title {

  font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;


}

.reminder-text		{
    font-size     :   1.2rem;
    color: #5d6d7e;
    margin-bottom: 40px;
}

.contact-details  {
               display: flex;
   justify-content     :        center;
  gap: 60px;
	margin-bottom: 40px;
}

.contact-item h4 {
  font-size   :  1.3rem;
    color: #3498db;
   margin-bottom: 10px;
}

.contact-item p  
  {
   color: #2c3e50;
    line-height: 1.5; 

}

.return-actions {
   display: flex;
    justify-content  :   center;
  gap: 20px;
}

.return-btn 
 {
    padding: 15px 30px;
    text-decoration: none;
    border-radius    :        8px;
  font-weight: 600;
	transition: all 0.3s ease;
    display: inline-block;
}

.return-btn.primary {
  background: #3498db;
    color: white;
}

.return-btn.primary:hover {
    background: #2980b9;
  transform: translateY(-2px);
}

.return-btn.secondary {
      background    :  transparent;
  color: #3498db;
   border: 2px solid #3498db;
}

.return-btn.secondary:hover {
   background :    #3498db;
   color: white;
}@media (max-width: 768px) {
    .page-main-title {
        font-size: 2.8rem;
    }
    
    .story-content,
    .method-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .expertise-item,
    .expertise-item:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .expertise-item:nth-child(even) .expertise-visual,
    .expertise-item:nth-child(even) .expertise-content {
        order: 0;
    }
    
    .contact-details {
        flex-direction: column;
        gap: 30px;
    }
    
    .return-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .timeline-wrapper::before {
        left: 15px;
    }
    
    .timeline-marker {
        width: 30px;
        height: 30px;
    }
    
    .timeline-number {
        font-size: 1rem;
    }
    
    .timeline-content {
        margin-left: 20px;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .page-hero,
    .thankyou-hero,
    .company-story,
    .expertise-areas,
    .methodology-section,
    .next-steps,
    .additional-resources {
        padding: 60px 15px;
    }
    
    .page-main-title,
    .thankyou-title {
        font-size: 2.2rem;
    }
    
    .section-header,
    .steps-title,
    .resources-title,
    .reminder-title {
        font-size: 2.2rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid,
    .resource-cards {
        grid-template-columns: 1fr;
    }
}.cookies-policy, .privacy-policy {
    padding: 80px 20px;
   background: #f8f9fa;
}

.policy-content {
   max-width: 800px;
	 margin   :0 auto;
   color     :    #2c3e50;

}

.policy-content h2     {

	    font-size: 1.8rem;
  margin: 30px 0 15px;
  color: #2c3e50;}

.policy-content p   {
   font-size: 1.1rem;
    color: #5d6d7e;
   line-height: 1.7;
        margin-bottom: 20px;
}

.policy-content ul {
  margin-bottom: 20px;
	}