* {
       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: #ffffff;
}


.main-navigation		{
  position   :  fixed;
        top: 0;
		 width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
        z-index: 1000;
  border-bottom: 1px solid #e0e0e0;
	
}

.nav-wrapper {
    max-width: 1200px;
	margin: 0 auto;
  display: flex;
   justify-content: space-between;
    align-items    :     center;
	padding: 0 20px;
   height: 70px;
}

.company-logo {
  height: 45px;
	width: auto;
}

.nav-links {
    display     :        flex; 
  gap: 30px;
}

.nav-item     {
  text-decoration: none;
   color : #333;
  font-weight: 500;
   position:  relative;
               transition: color 0.3s ease;
}

.nav-item:hover, .nav-item.active   {
               color: #2c5aa0;
}

.nav-item.active::after		{

  content: '';
  position: absolute;
   bottom: -8px;
    left: 0;
  width: 100%;
  height: 2px;
    background: #2c5aa0;
     }

.burger-menu {
	display: none;
  flex-direction: column;
  cursor: pointer;
   gap: 4px;

}

.burger-menu span {
  width: 25px;
   height: 3px;
    background: #333;
                    transition: 0.3s;
}  

.mobile-menu {
	 display: none;
   background: white;
    padding: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mobile-nav-item {
  display: block;
   padding: 15px 0;
   text-decoration: none;
  color: #333;
    border-bottom:     1px solid #f0f0f0;
} 

.hero-section {
   margin-top: 70px;
   min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 20px; 

}

.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.2rem;
  font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
  line-height     :        1.2;
} 

.hero-description {
            font-size: 1.25rem;
   color: #666;
          margin-bottom: 35px;
  line-height: 1.7;


}

.hero-buttons


{

  display: flex;
    gap: 20px;
    flex-wrap: wrap;}

.primary-cta
	{
   text-decoration: none;
	  color: white;
	    font-weight: 600;
	    border-radius     : 8px;
	  padding     :        15px 30px;
	    background: #2c5aa0;
	  transition: all 0.3s ease;
}

.primary-cta:hover {
   background: #1e3f73;
  transform: translateY(-2px);
}

.secondary-btn {
  background: transparent;
    color: #2c5aa0;
  padding: 15px 30px;
  text-decoration    :  none;
   border: 2px solid #2c5aa0;
  border-radius: 8px;
    font-weight: 600;
  transition: all 0.3s ease;
}

.secondary-btn:hover
{
  background: #2c5aa0;
  color: white;
}

.hero-image {
   width: 100%;
  height: auto;
    border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.services-overview {
    padding: 100px 20px;
    background: white;
}

.container-fluid {

	   margin: 0 auto;
   max-width: 1200px;


}

.services-overview h2 {
    text-align :   center;

	   font-size: 2.5rem;

	   color  :       #1a1a1a;

	   margin-bottom: 60px;
}

.services-grid {
  display     :        grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap     :40px; 

}

.service-card {
   background: white;
   	border-radius: 12px;
       overflow: hidden;
     box-shadow: 0 10px 30px rgba(0,0,0,0.08);
      transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-img


{
	width: 100%;
   height: 250px;
   object-fit: cover;

}

.service-card h3 {
  font-size: 1.4rem;
               color   :   #1a1a1a;
   margin: 25px 25px 15px;
}


.service-card p {
  color :  #666;
    margin: 0 25px 25px;
	line-height: 1.6;
}

.coaching-approach {
       padding: 100px 20px;
  background: #f8f9fa;
}

.approach-content {
    max-width: 1200px;
  margin: 0 auto;
  display: grid;
	 grid-template-columns    :      1fr 1fr;
  gap: 60px;
    align-items: center;
}

.approach-text h2 {
    font-size: 2.3rem; 
    color :   #1a1a1a; 
    margin-bottom: 25px;
}

.approach-text > p {
  font-size :   1.1rem;
    color: #666;
    margin-bottom: 40px;
  line-height: 1.7;
}

.approach-features {
    display: flex;
   flex-direction: column;
          gap    :    25px;
}

.feature-item h4 {
    color: #2c5aa0;
   font-size: 1.2rem;
   margin-bottom: 8px;
	
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

.approach-img {
    width:    100%;
    height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.cta-section


{
   padding: 80px 20px;
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
  text-align: center; 
	
}

.cta-wrapper {
  max-width: 800px;
    margin  :   0 auto;
}

.cta-content h2     {
   font-size: 2.5rem;
   color: white;
	 margin-bottom   :       20px;
}

.cta-content p {
     font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  margin-bottom    :  35px;
  line-height: 1.6;}

.cta-button {
    background: white;
  color: #2c5aa0;
  padding: 18px 40px;
   text-decoration: none;
   border-radius: 8px;
   font-weight: 600;
		 font-size: 1.1rem;
   transition    :       all 0.3s ease;
   display: inline-block;
}

.cta-button:hover  {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.contact-section {
   padding: 100px 20px;
   background: white;
}

.contact-container {
  margin: 0 auto; 
  max-width  :        800px;
}

.contact-header    {
   text-align: center;
   margin-bottom:        50px;
}

.contact-header h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
        margin-bottom: 15px;
}

.contact-header p {
   font-size: 1.2rem;
	color: #666;
}

.contact-form {
  background: #f8f9fa;
    padding: 40px;
   border-radius: 12px;
}

.form-row {
   display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.input-group {
     display: flex;
   flex-direction: column;
}

.input-group.full-width {
   margin-bottom: 25px;
}

.input-group label {
    margin-bottom: 8px;
  font-weight     :  500;
    color: #333;
}

.input-group input,
.input-group select,
.input-group textarea {
	padding: 12px 15px;
               border: 2px solid #e0e0e0;
    border-radius: 6px;
  font-size   : 1rem;
    transition  :      border-color 0.3s ease;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
   outline: none; 
	    border-color: #2c5aa0;
}

.submit-btn {
    background: #2c5aa0;
    color: white;
    padding: 15px 40px;
	border: none;
 border-radius: 8px;
    font-size: 1.1rem;
   font-weight    :600;
  cursor: pointer;
  transition:all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
     background: #1e3f73;
  transform: translateY(-2px);
     }

.main-footer {
       background: #1a1a1a;
  color: white;
  padding: 60px 20px 20px;
}

.footer-content {
   max-width: 1200px;
  margin     :      0 auto;
  display: grid;
	grid-template-columns: 1fr 1fr;
  gap: 50px;
   margin-bottom: 40px;
}

.footer-logo {
    height: 40px;
   width  :auto;
  filter: brightness(0) invert(1);
    margin-bottom: 20px;
}

.company-details p {
    margin-bottom: 10px;
    color: #ccc;
}

.quick-links h4 {
	margin-bottom: 20px;
    color: white;
}

.links-grid {

	display: grid;
  grid-template-columns    :        1fr 1fr;
  gap: 15px;

}

.links-grid a {
         color: #ccc;
   text-decoration: none;
    transition: color 0.3s ease;
}

.links-grid a:hover {
	color: white;
}

.footer-bottom {
	 text-align: center;
   padding-top: 20px;
   border-top: 1px solid #333;
   color: #999; 
	
}@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    .burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    
    .burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .approach-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .services-overview h2,
    .contact-header h2,
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .approach-text h2 {
        font-size: 1.8rem;
    }
    
    .contact-form {
        padding: 25px;
    }
}.about-hero {
   margin-top: 70px;
   padding  :80px 20px;
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
    text-align   :     center;
  color: white;
}

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.3rem;
  max-width: 800px;
  margin : 0 auto;
  opacity: 0.9;
        line-height: 1.6;
}

.company-story
	{
    padding: 100px 20px;
   background: white;
}

.story-container {
  max-width: 1200px;
	margin: 0 auto;
}

.story-content {
   gap: 60px;
   display: grid;
	 grid-template-columns:1fr 1fr;
    align-items: center;
}

.story-text h2 {
  font-size: 2.5rem;
   color  :        #1a1a1a;
    margin-bottom: 30px;
}

.story-text p {
	 font-size: 1.1rem;
  color: #666;
 margin-bottom: 20px;
   line-height: 1.7;
}

.story-image {
	    width: 100%;
    height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
     }

.methodology-section {
  padding: 100px 20px;
    background: #f8f9fa;
}

.methodology-wrapper {
   max-width: 1200px;
  margin: 0 auto;
    text-align: center;
}

.methodology-wrapper h2
{
	font-size: 2.5rem;
  color: #1a1a1a;
    margin-bottom: 60px;
}

.methodology-grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap     :        30px;
}

.method-card {
  background :    white;
   padding: 40px 25px;
 border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.method-card:hover {
  transform: translateY(-5px);
}

.method-card h3 {
   font-size: 1.4rem;
    color: #2c5aa0;
  margin-bottom: 15px; 
	
}

.method-card p {
    line-height: 1.6;
   color: #666;
}

.expertise-showcase {
   padding: 100px 20px;
    background: white;
}

.expertise-content

{
	 max-width: 1200px;
    margin: 0 auto;
  display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 60px;
      align-items: center;
}

.expertise-img
{
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.expertise-text h2 {

  font-size: 2.3rem;
  color: #1a1a1a;
  margin-bottom: 30px;
	}

.expertise-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
   gap: 20px;
    margin-bottom     :   30px;
}

.stat-item


{
  text-align: center;
   padding: 20px;
   background: #f8f9fa;
  border-radius: 8px;
} 

.stat-item h3     {
    font-size: 2rem;
    color: #2c5aa0;
  margin-bottom: 5px;
  font-weight: 700;
}

.stat-item p {
	 color   :   #666;
  font-size: 0.9rem;
}

.expertise-description{
  font-size: 1.1rem;
    color: #666;
  line-height: 1.7;
}

.approach-philosophy {
  padding: 100px 20px;
    background: #f8f9fa;
}



.philosophy-container {
  max-width: 1200px;
    margin: 0 auto;
}

.philosophy-container h2 {
    text-align: center;
  font-size: 2.5rem;
   color: #1a1a1a;
  margin-bottom: 60px;
}

.philosophy-content {
          display: flex;
  flex-direction: column;
    gap: 80px;


}

.philosophy-item


{
   display: grid;
    grid-template-columns: 1fr 1fr;
   gap:   50px;
  align-items: center;
     }

.philosophy-item.reverse {
   direction: rtl;
}

.philosophy-item.reverse .philosophy-text {
  direction  :  ltr;
}

.philosophy-image {
  width: 100%;
   height: auto;
   border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.philosophy-text h3 {
   font-size: 1.6rem;
   color: #2c5aa0;
  margin-bottom: 15px;
}

.philosophy-text p  
  {
    font-size: 1.1rem;
    color: #666;
       line-height: 1.7;
}

.values-section  
  {
   padding: 100px 20px;
  background: white;
}

.values-wrapper {
    max-width: 1000px;
       margin: 0 auto;
      text-align: center;
}

.values-wrapper h2 {
   font-size: 2.5rem;
    color  :   #1a1a1a;
         margin-bottom: 60px;
}

.values-grid {
	display   :  grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
          gap: 40px;
}

.value-card {
  background: #f8f9fa;
    padding: 40px 30px;
  border-radius: 12px;
    border-left: 4px solid #2c5aa0;
}

.value-card h3 {
	font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.value-card p {


    color : #666;
	 line-height:       1.6;}

.thankyou-hero {
	margin-top: 70px;
    min-height: 80vh;
  display: flex;
	 align-items: center;
	justify-content: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
   text-align: center;
  padding: 60px 20px;
}

.thankyou-content h1 {
  font-size: 3rem;
    color    : #1a1a1a;
  margin-bottom: 25px;
    font-weight: 700;
}

.thankyou-message {
  font-size: 1.3rem;
  color: #666;
         max-width: 600px;
   margin: 0 auto;
   line-height: 1.6;
}

.success-animation     {

    margin-bottom: 40px;
	}

.checkmark-circle {
  width: 80px;
	 height: 80px;
    border-radius: 50%;
	 background   :     #27ae60;
   margin: 0 auto;
	 display: flex;
   align-items: center;
   justify-content   :        center;
   animation: scaleIn 0.6s ease;
}



.checkmark{
    width   :      25px;
  height: 15px;
    border-left   :  3px solid white;
    border-bottom     :  3px solid white;
  transform: rotate(-45deg);
    animation: checkmarkDraw 0.4s ease 0.2s forwards;
  opacity: 0;
}@keyframes scaleIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

@keyframes checkmarkDraw {
    0% { opacity: 0; }
    100% { opacity: 1; }
}.next-steps {
    padding: 100px 20px;
  background: white;
}

.steps-container {
    max-width :    1000px;
  margin: 0 auto;
  text-align: center;
}

.steps-container h2 {
   font-size :      2.5rem;
    color: #1a1a1a;
  margin-bottom: 60px;

}

.steps-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.step-item {
       position    :   relative;
   padding: 30px 20px;
  background: #f8f9fa;
    border-radius: 12px;
    transition   : all 0.3s ease;}  

.step-item.completed {
  background: #e8f5e8;
 border: 2px solid #27ae60;
}

.step-number
{
    width: 40px;
 height: 40px;
  border-radius: 50%;
               background: #2c5aa0;
    color    :white;
	display: flex;
        align-items: center;
  justify-content: center;
	margin: 0 auto 20px;
  font-weight: 600;
}



.step-item.completed .step-number		{
        background: #27ae60;
}

.step-content h3		{
  font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.step-content p {
   color: #666;
    line-height: 1.5;
   font-size: 0.95rem;
}

.preparation-tips
{
	 padding: 100px 20px;

	background: #f8f9fa;
}  

.tips-wrapper {

	  max-width: 1000px;
  margin: 0 auto;
  text-align: center;}

.tips-wrapper h2 {
    font-size: 2.3rem;
                    color: #1a1a1a;
  margin-bottom: 50px;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	 gap: 30px;
}

.tip-card   {
      background: white;
  padding: 30px 25px;
   border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: left;
}

.tip-card h3 {
   margin-bottom: 15px;
   color: #2c5aa0;
    font-size  :       1.3rem;
}

.tip-card p {
         color: #666; 
	    line-height  :1.6;
}

.emergency-contact {
   text-align: center;
	padding: 80px 20px;
    background: white;
}

.emergency-wrapper {
  max-width: 800px;
	   margin: 0 auto;
}

.emergency-wrapper h2 {
	font-size: 2.2rem;
    color: #1a1a1a;
  margin-bottom: 20px;
}

.emergency-wrapper > p {
  color: #666;
  line-height: 1.6;
  font-size: 1.1rem;
   margin-bottom: 40px;
}

.contact-info {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 30px;
}



.contact-item {
	 background: #f8f9fa;
      padding  :30px 25px;
	border-radius: 12px;
   text-align     :        center;
}

.contact-item h3 {
   font-size    :    1.3rem;
    color: #2c5aa0;
   margin-bottom: 10px;
}

.contact-item p {
  font-size: 1.1rem;
	color: #1a1a1a;
	 font-weight: 600;
  margin-bottom: 5px;
}

.availability {
	 font-size: 0.9rem;
  color: #666;
}

.return-navigation {
  padding: 80px 20px;
    background: #f8f9fa;
  text-align: center;
}

.nav-wrapper-bottom {
	max-width: 600px;
   margin: 0 auto;
}

.nav-wrapper-bottom h2 {
  font-size: 2rem;
  color: #1a1a1a;
   margin-bottom: 30px;
} 

.nav-buttons {
   display: flex;
    gap: 20px;
  justify-content: center;
   flex-wrap: wrap;
}

.nav-button


{
   padding: 15px 30px;
   text-decoration: none;
   border-radius: 8px;
   font-weight: 600;
   transition: all 0.3s ease;
}

.nav-button.primary {
    background: #2c5aa0;
	  color    :white;
}

.nav-button.primary:hover {
  background: #1e3f73;
  transform: translateY(-2px);
}

.nav-button.secondary {
   background: transparent;
  color: #2c5aa0;
    border: 2px solid #2c5aa0;
}

.nav-button.secondary:hover {
   background     :     #2c5aa0;
    color: white;
}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .expertise-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .expertise-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .philosophy-item {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .philosophy-item.reverse {
        direction: ltr;
    }
    
    .steps-timeline {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .nav-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .thankyou-content h1 {
        font-size: 2.5rem;
    }
    
    .thankyou-message {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1,
    .thankyou-content h1 {
        font-size: 2rem;
    }
    
    .story-text h2,
    .methodology-wrapper h2,
    .values-wrapper h2,
    .steps-container h2 {
        font-size: 2rem;
    }
    
    .expertise-text h2,
    .philosophy-container h2,
    .tips-wrapper h2,
    .emergency-wrapper h2 {
        font-size: 1.8rem;
    }
}.cookies-section,
.privacy-section {
   padding: 100px 20px;
    background: white;
}


.cookies-content,
.privacy-content {


    max-width  :     800px;
   margin: 0 auto;
	}

.cookies-content h2,
.privacy-content h2 {
   font-size: 2.5rem;
  color: #1a1a1a;
   margin-bottom: 40px;
  text-align: center;
}

.cookies-content h3,
.privacy-content h3 {
   font-size: 1.8rem;
 color    :      #1a1a1a;
   margin: 30px 0 15px;
}



.cookies-content p,
.privacy-content p {
  font-size: 1.1rem;
    color: #666;
   line-height  :    1.7;
     margin-bottom: 20px;
}

.cookies-content ul,
.privacy-content ul{

	    padding-left: 25px;
   margin: 20px 0;
}

.cookies-content li,
.privacy-content li   {
    font-size: 1.1rem;
  color: #666;
                    line-height: 1.7;
     margin-bottom: 10px;
} 