
@media (max-width: 768px) {
    .nav-wrapper {
        position: relative;
    }

    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(44, 62, 80, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .main-navigation.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .main-navigation li {
        margin: 5px 0;
    }

    .main-navigation a {
        display: block;
        padding: 12px 16px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .main-navigation a:hover {
        background: rgba(52, 152, 219, 0.3);
        transform: translateX(5px);
    }

    .burger-menu.active .burger-line:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active .burger-line:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8em;
    }

    .hero-subtitle {
        font-size: 1.1em;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1em;
        display: block;
        margin: 10px auto;
        max-width: 280px;
    }

    .section-title {
        font-size: 2em;
    }

    .contact-form {
        padding: 30px 20px;
    }
}.value-item {
    position: relative;
    overflow   :       hidden;
}

.value-item::before {
  content: '';
	position: absolute;
   top: 0;
  left: -100%;
    width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #3498db, #e74c3c);
	transition: left 0.5s ease;
}

.value-item:hover::before {

   left: 0;
     }

.stats-section .stat-item {
  position: relative;
}

.stats-section .stat-item::after {
  content: '';
    position:     absolute;
   bottom: -10px;
  left    :      50%;
  transform: translateX(-50%);
  width: 50px;
   height    :       2px;
  background: rgba(255,255,255,0.3);
}

.mission-content {
   position: relative;
   padding-left: 30px;
}

.mission-content::before {
  content: '';
   position: absolute;
  left: 0;
    top: 0;
  bottom: 0;
   width: 4px;
  background: linear-gradient(to bottom, #3498db, #e74c3c);
   border-radius: 2px;
}@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.stat-item h3 {
 animation: countUp 0.8s ease-out;
}@media (max-width: 768px) {
    .page-title {
        font-size: 2em;
    }

    .mission-content {
        padding-left: 15px;
    }

    .mission-content::before {
        width: 3px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item h3 {
        font-size: 2.5em;
    }
}.success-icon {
    animation: successPulse 2s infinite;
}@keyframes successPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(39, 174, 96, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0);
    }
}.thank-you-content {

	    animation: slideInUp 0.8s ease-out;}@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.steps-list li  {
  position: relative;
    padding-left: 30px;
  counter-increment: step-counter;
}

.steps-list {
       counter-reset: step-counter;
}

.steps-list li::before {

  content: counter(step-counter);
    position: absolute;
   left     :  0;
  top: 0;
  background  :     #3498db;
         color: white;
  width: 20px;
    height: 20px;
    border-radius: 50%;
	 display: flex;
    align-items: center;
  justify-content: center;
	font-size: 12px;
    font-weight: bold;


}

.next-steps   {
   position: relative;
  overflow  :     hidden;
}

.next-steps::before {
  content: '';
  position :  absolute;
    top: 0;
    left: 0;
  right: 0;
    height: 3px;
  background: linear-gradient(90deg, #3498db, #27ae60);
}

.btn {
    position: relative;
    overflow: hidden;
}

.btn::before
{
  content: '';
   position: absolute;
	 top: 0;
   left: -100%;
               width: 100%;
   height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
   left: 100%;
}

.thank-you-content {
  animation :    slideInUp 0.8s ease-out, float 6s ease-in-out infinite 1s;


}@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 480px) {
    .thank-you-content {
        padding: 30px 20px;
    }

    .success-icon {
        width: 60px;
        height: 60px;
    }

    .success-icon::after {
        font-size: 30px;
    }

    .steps-list li {
        padding-left: 25px;
        font-size: 1em;
    }

    .steps-list li::before {
        width: 18px;
        height: 18px;
        font-size: 11px;
    }
}.cookies-section, .privacy-section
{
  padding: 60px 0;
   background:     #f8f9fa;
}

.cookies-content, .privacy-content {
    max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
    color: #2c3e50;
}

.cookies-content h2, .privacy-content h2 {
   font-size: 1.8em;
    margin: 30px 0 15px;
    color: #3498db;
  position: relative;


}

.cookies-content h2::before, .privacy-content h2::before {


  content: '';
   position: absolute;
   bottom: -5px;
  left: 0;
  width: 50px;
   height    :        3px;
  background: linear-gradient(90deg, #3498db, #e74c3c);


}

.cookies-content p, .privacy-content p {

	  margin-bottom: 20px;
	  font-size: 1.1em;

}  @media (max-width: 768px) {
    .cookies-section, .privacy-section {
        padding: 40px 20px;
    }

    .cookies-content h2, .privacy-content h2 {
        font-size: 1.6em;
    }

    .cookies-content p, .privacy-content p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .cookies-content, .privacy-content {
        padding: 0 15px;
    }

    .cookies-content h2, .privacy-content h2 {
        font-size: 1.4em;
    }

    .cookies-content p, .privacy-content p {
        font-size: 0.95em;
    }
}*


{
    margin: 0;
  padding: 0;
   box-sizing: border-box;
}

body    {
  font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
  background: #f8f9fa;
}

.nav-container {
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
        padding: 15px 0;
   position: sticky;
	top: 0;
 z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-wrapper {

    max-width: 1200px;
         margin: 0 auto;
   display:    flex;
  justify-content: space-between;
  align-items: center;
	padding: 0 20px;
     }

.brand-logo {
    display: flex;
   align-items: center;
    color: white;
   text-decoration: none;
    font-size: 24px;
    font-weight: bold;
}

.brand-logo img {


   height :    40px;
    margin-right: 12px;
    width: 40px;
}

.main-navigation {
      display: flex;
  list-style : none;
   gap: 30px;
     }

.main-navigation a {
    color: white;
    text-decoration: none;
	padding: 8px 16px;
  border-radius: 5px;
    transition: background 0.3s ease;


}

.main-navigation a:hover {
  background: rgba(255,255,255,0.1);
}

.burger-menu {
  display: none;
    flex-direction: column;
    cursor :   pointer;
  padding: 5px;
}

.burger-line {
    width: 25px;
    height: 3px;
    background :        white;
	margin     : 3px 0;
   transition: 0.3s;
}

.page-header {
  background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(52, 152, 219, 0.9)), url('templates/purpose-driven_business_mentoring_3.webp');
  background-size: cover;
   background-position   :   center;
   min-height: 400px;
   display   :   flex;
   align-items: center;
   color: white;
   text-align     : center;
}

.header-content {
   margin     :  0 auto;
    max-width  :   1200px;
                    padding: 0 20px;
}

.page-title {
  font-size: 3em;
   margin-bottom: 20px;
   font-weight:  700;
}

.page-subtitle {
   font-size: 1.3em;
    max-width: 600px;
    margin: 0 auto;
}

.container {
    max-width: 1200px;
      margin: 0 auto;
  padding: 0 20px;
}  

.section-title

{
  text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
  color: #2c3e50;
}

.mission-section {
    padding: 80px 0;
   background: white;
}

.mission-grid {
         display: grid;
   grid-template-columns: 1fr 1fr;
     gap: 50px;
  align-items: center;
}

.mission-content h3 {
          font-size: 1.9em;
      margin-bottom: 25px;
    color: #3498db;
}

.mission-content p {
    margin-bottom  :    18px;
 font-size: 1.1em;
   line-height: 1.8;
}

.mission-image img {
  width: 100%;
    border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.values-section
{
    padding: 80px 0;
  background    : #f8f9fa;
} 

.values-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
  margin-top: 50px;
	
}

.value-item {
   background: white;
   padding: 35px 25px;
   border-radius: 12px;
	 text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
   transition: transform 0.3s ease;
}

.value-item:hover {
  transform: translateY(-8px); 
	
}

.value-item h3 {
  font-size: 1.4em;
    margin-bottom: 18px;
   color: #2c3e50;
}

.approach-section {
  padding: 80px 0;
  background: white;
}

.approach-content {
  margin: 0 auto;
   max-width: 800px;
    text-align: center;
}

.approach-content p {
     font-size: 1.2em;
  line-height: 1.8;
   margin-bottom: 25px;
}

.stats-section {

	  padding: 80px 0;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
 color: white;
	}

.stats-grid {
	   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 40px;
    text-align  :        center;

}

.stat-item h3 {
   font-size: 3em;
    margin-bottom: 10px;
   font-weight: bold;
}

.stat-item p {
     font-size: 1.1em;
  opacity: 0.9;
}

.footer-section {
  background: #2c3e50;

	    color: white;

	  padding: 50px 0 30px;
}

.footer-content {
   display   :  grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	 gap: 40px;
	 margin-bottom: 30px;


}

.footer-block h3 {
   margin-bottom: 20px;
  font-size: 1.3em;
}



.footer-block p,
.footer-block a {
   color: #bdc3c7;
    text-decoration: none;
   line-height: 1.8;
}

.footer-block a:hover {
  color: #3498db;
}

.footer-logo {
      display    :        flex;
   align-items: center;
    margin-bottom :    20px;
}

.footer-logo img {

	  width: 40px;
   height: 40px;
    margin-right: 12px;
  filter: brightness(0) invert(1);
	}

.footer-bottom {
  text-align: center;
    padding-top: 30px;
    border-top :     1px solid #34495e;
  color: #95a5a6;
}@media (max-width: 768px) {
    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #2c3e50;
        flex-direction: column;
        padding: 20px;
    }

    .main-navigation.active {
        display: flex;
    }

    .burger-menu {
        display: flex;
    }

    .page-title {
        font-size: 2.2em;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}