* {
  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-color: #fafafa;
}

.nav-container {
	background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
   position: fixed;
   top: 0;
    width: 100%;
   z-index: 1000;
}

.nav-wrapper {
	max-width: 1200px;
  margin: 0 auto;
   display    :   flex;
   justify-content: space-between;
                    align-items: center;
    padding :1rem 2rem;
}

.logo-section {

	   display: flex;
   align-items: center;
    gap: 12px;
}

.logo {
          height: 40px;
   width :auto;
}

.company-name {
    font-weight: 600;
    font-size: 1.3rem;
    color: #2c3e50;
}

.nav-links{
	 display: flex;
    gap: 2rem;
}

.nav-link {
   text-decoration: none;
  color: #555;
  font-weight: 500;
  transition: color 0.3s ease;
	position: relative;
}

.nav-link:hover, .nav-link.active{
    color: #3498db;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
        left: 0;
   width     :      100%;
	height:        2px;
  background   :     #3498db;
}

.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: #fff;
    padding: 1rem 2rem;
  border-top: 1px solid #eee;}

.mobile-link {
  display: block;
  padding :    0.8rem 0;
    text-decoration: none;
   color: #555;
               border-bottom: 1px solid #f0f0f0;
} 

main  
  {
   margin-top: 80px;
}

.hero-section {

  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   padding: 4rem 2rem;
   min-height: 600px;
    display: flex;
   align-items   :   center;


}

.hero-content {
   max-width: 1200px;
	margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 3rem;
   align-items    :        center;
}

.hero-text h1 {
    font-size: 3rem;
   margin-bottom: 1rem;
   font-weight: 700;
}

.hero-text h2 {
	     font-size: 1.8rem;
    margin-bottom: 1.5rem;
	 opacity: 0.9;
  font-weight: 400;}

.hero-text p {
    font-size: 1.1rem;
     margin-bottom: 2rem;
    opacity: 0.8;
  line-height: 1.7; 
	
}

.hero-buttons {
    display: flex;
         gap: 1rem;
  flex-wrap: wrap;
}

.primary-btn, .secondary-btn {
   padding :    1rem 2rem;
	text-decoration: none;
	font-weight: 600;
  border-radius: 8px;
   transition: all 0.3s ease;
    display: inline-block;
} 

.primary-btn {

	    background: #fff;
  color: #667eea;
     }

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.secondary-btn {
   background: transparent;
  color: #fff;
	border: 2px solid #fff;
}

.secondary-btn:hover {
   color: #667eea;
    background: #fff;
}

.hero-image img {
   width: 100%;
	border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.features-section    {
  padding     :  5rem 2rem;
  background: #fff;

}

.container {
	max-width: 1200px;
   margin: 0 auto;
}

.features-section h2 {

	 text-align:   center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
   color: #2c3e50;
}

.features-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {


   text-align: center;
    padding   :   2rem;
  background  :  #f8f9fa;
    border-radius  :     12px;
  transition: transform 0.3s ease;
}

.feature-card:hover {

  transform: translateY(-5px);}

.feature-card img {
       width    :        100%;
   height: 200px;
    object-fit: cover;
   border-radius: 8px;
  margin-bottom: 1rem; 

     }

.feature-card h3 {
    font-size: 1.3rem;
   margin-bottom: 1rem;
        color: #2c3e50;
}

.services-section {
   background: #f8f9fa;
   padding     :     5rem 2rem;
}

.services-section h2 {
               text-align: center;
   font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.services-grid  
  {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
}

.service-item {

	   background: #fff;
  padding: 2rem;
   border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
   transition: all 0.3s ease;}

.service-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);


}

.service-item h3 {
	font-size: 1.4rem;
   margin-bottom: 1rem;
    color: #3498db;
}

.service-item p {
    margin-bottom: 1.5rem;
  color: #666;
}

.service-price {
  font-size: 1.2rem;
    font-weight: 600;
   color: #e74c3c;
}

.cta-section {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
	padding  :       4rem 2rem;
}

.cta-content {
   max-width: 1200px;
  margin: 0 auto;
    display  :       flex;
   justify-content: space-between;
   align-items: center;
   gap: 2rem; 

}

.cta-text h2 {
    margin-bottom: 1rem;
  font-size: 2.2rem;
}

.cta-text p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-button {
    background: #fff;
   color: #3498db;
  padding: 1.2rem 2.5rem;
    text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
    transition: all 0.3s ease;
  white-space: nowrap;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.testimonials-section {
  padding: 5rem 2rem;
    background: #fff;
}

.testimonials-section h2		{

    text-align: center;
 font-size: 2.5rem;
  margin-bottom: 3rem;
   color: #2c3e50;
     }

.testimonials-grid {
    display:    grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap     : 2rem;
}

.testimonial-card {
	 background: #f8f9fa;
  padding: 2rem;
   border-radius: 12px;
    border-left   :4px solid #3498db;
}

.testimonial-card p {
               font-style:   italic;
  margin-bottom: 1rem;
  color: #555;
}

.testimonial-author {
  font-weight: 600;
  color: #3498db;
}

.contact-section {
  padding: 5rem 2rem;
   background: #f8f9fa;
}

.contact-section h2 {
  text-align     :       center;
   font-size: 2.5rem;
  margin-bottom     :3rem;
  color   :        #2c3e50;
}

.contact-wrapper {
    display   :    grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form {
        background  : #fff;
   padding: 2rem;
      border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-group {
   margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
   font-weight  :      500;
  color: #333; 

}

.form-group input,
.form-group select,
.form-group textarea {
   width: 100%;
  padding: 0.8rem;
       border: 1px solid #ddd;
	border-radius: 6px;
   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: #3498db;
}

.submit-btn {
   background: #3498db;
  color: #fff;
    padding: 1rem 2rem;
	border: none;
    border-radius: 6px;
    font-size: 1rem;
       font-weight: 600;
   cursor     :   pointer;
  transition: background 0.3s ease;
        width: 100%;
}

.submit-btn:hover {
  background: #2980b9;
}

.contact-info {
         background: #fff;
   padding: 2rem;
   border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.coach-image img {
   margin-bottom: 1.5rem;
  border-radius     :   8px;
  width: 100%;
}

.contact-details h3 {
  margin-bottom: 1rem;
  color: #2c3e50;
} 

.contact-details .phone {
	  font-size: 1.1rem;
  font-weight: 600;
    color :     #3498db;
    margin-bottom: 1rem;


}

.contact-details .address {
  color  :#666;
  line-height: 1.5;
}

.footer  
  {
    background: #2c3e50;
 color: #fff;
    padding: 3rem 2rem 1rem;
}

.footer-content {
   max-width: 1200px;

	   margin: 0 auto;

	    display: grid;

	  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

	    gap: 2rem;
}

.footer-section h4 {
 margin-bottom: 1rem;
  color: #3498db;
}

.footer-section a
	{
   display: block;
   color: #bdc3c7;
	 text-decoration: none;
  margin-bottom   :  0.5rem;
   transition: color 0.3s ease;
}

.footer-section a:hover {
   color: #3498db;
}

.footer-logo {
          display: flex;
   align-items :      center;
  gap: 10px;
    margin-bottom   :    1rem;
}

.footer-logo img {
    height: 30px;
}

.footer-logo span {
	   font-weight: 600;
   font-size: 1.1rem;


}

.footer-bottom {
      text-align: center;
         padding-top: 2rem;
   border-top: 1px solid #34495e;
    margin-top: 2rem;
  color: #95a5a6;

}@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .mobile-menu.active {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text h2 {
        font-size: 1.4rem;
    }

    .features-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        justify-content: center;
    }

    .nav-wrapper {
        padding: 1rem;
    }

    .container {
        padding: 0 1rem;
    }
}.cookies-hero {
	  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%); 
	   color: white; 
	     padding: 6rem 2rem 4rem; 
	   text-align: center; 
	   min-height: 400px; 
	   display: flex; 
	  align-items: center; 
	   justify-content: center;


}

.cookies-content h1 {
    font-size :   3rem;
   margin-bottom: 1.5rem;
   font-weight: 700;
}

.cookies-content p {
   font-size    :    1.2rem;
    opacity: 0.9;
    max-width: 600px;
   margin: 0 auto;
}

.cookies-info {
	background: #fff;
  padding:      5rem 2rem;
}

.cookies-info h2 {
               font-size: 2rem;
          margin-bottom: 1.5rem;
   color: #2c3e50;
}

.cookies-info p {
    font-size: 1.1rem;
  color  :      #666;
   line-height: 1.6;
  margin-bottom: 1.5rem; 
	
}

.cookies-list

{

	   list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
	}

.cookies-list li {


  padding: 0.8rem 0;
   border-left: 3px solid #3498db;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  background: rgba(52, 152, 219, 0.05);
  font-size: 1rem;
    color: #555;
     }@media (max-width: 768px) {
    .cookies-hero {
        padding: 4rem 1rem 3rem;
    }

    .cookies-content h1 {
        font-size: 2.2rem;
    }

    .cookies-content p {
        font-size: 1.1rem;
    }

    .cookies-info {
        padding: 3rem 1rem;
    }
}.privacy-hero {
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%); 
	color: white; 
   padding: 6rem 2rem 4rem; 
  text-align    :  center; 
  min-height: 400px; 
  display:       flex; 
	align-items: center; 
  justify-content: center;
}


.privacy-content h1 {

	    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;

}

.privacy-content p {
  font-size :1.2rem;
    opacity: 0.9;
    max-width: 600px;
  margin: 0 auto;
}

.privacy-info {
	padding: 5rem 2rem;
    background: #fff;
}

.privacy-info h2 {
  font-size: 2rem;
   margin-bottom: 1.5rem;
  color: #2c3e50; 
	
}

.privacy-info p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
   margin-bottom: 1.5rem;

}

.privacy-list {
 list-style  :       none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.privacy-list li {
  padding: 0.8rem 0;
    border-left: 3px solid #27ae60;
     padding-left    :  1.5rem;
	 margin-bottom: 1rem;
  background: rgba(39, 174, 96, 0.05);
    font-size: 1rem;
	 color   :      #555;
}@media (max-width: 768px) {
    .privacy-hero {
        padding: 4rem 1rem 3rem;
    }

    .privacy-content h1 {
        font-size: 2.2rem;
    }

    .privacy-content p {
        font-size: 1.1rem;
    }

    .privacy-info {
        padding: 3rem 1rem;
    }
}