* {
    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

{
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 1rem 0;
   position: fixed;
   top: 0;
        width: 100%;
    z-index: 1000;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.nav-container {
	max-width: 1200px;
   margin: 0 auto;
    padding: 0 20px;
    display: flex;
  justify-content: space-between;
    align-items: center;
}

.brand-section {
  display: flex;
   align-items     :    center;
   gap: 12px;
}

.company-logo {
  height: 45px;
    width     :    auto;
}

.brand-name {
    color: #ecf0f1;
        font-size:      1.4em;
    font-weight: 600;
    letter-spacing: 0.5px;
}


.desktop-nav {
     display :  flex;
	 gap :  30px;
}

.nav-item {
   	 color: #bdc3c7;
  text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 5px;
   transition: all 0.3s ease;
}  

.nav-item:hover, .nav-item.active {
       color: #ffffff;
  background: rgba(52, 152, 219, 0.2);
}

.mobile-menu-toggle  {
    display: none;
    flex-direction: column;
 cursor: pointer;
    gap: 4px;
}



.mobile-menu-toggle span {

  width : 25px;
   height: 3px;
	background     :        #ecf0f1;
               border-radius: 2px;
 transition: 0.3s;


}

.mobile-nav  
  {
    display: none;
   background: #34495e;
               padding: 20px;
  position: absolute;
   top     :     100%;
  left: 0;
    right: 0; 

}

.mobile-nav-item {
   display: block;

	   color: #bdc3c7;

	     text-decoration : none;

	   padding: 12px 0;

	    border-bottom: 1px solid #4a5f7a;
}

.hero-area		{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding  : 120px 0 80px;
	 color: white;
  min-height: 90vh;
    display: flex;
  align-items    :  center;
}

.hero-content {
     max-width: 1200px;
    margin: 0 auto;
    padding     :      0 20px;
   display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
          font-size: 3.2em;
   font-weight: 700;
    margin-bottom: 20px;
	 line-height: 1.2;
}

.hero-description {
	font-size: 1.2em;
		margin-bottom: 30px;
	  opacity: 0.9;
	   line-height: 1.6;
}

.hero-buttons {
   display: flex;
  gap: 20px;
	 flex-wrap: wrap;
}  

.primary-btn, .secondary-btn {
    padding: 14px 30px;
    border-radius   :8px;
      text-decoration :  none;
   font-weight: 600;
  font-size: 1.1em;
	 transition: all 0.3s ease;
   display: inline-block;
}

.primary-btn {
  background: #e74c3c;
    color: white;
   border: 2px solid #e74c3c;
}

.primary-btn:hover {
  background: #c0392b;
    border-color: #c0392b;
  transform: translateY(-2px);
}

.secondary-btn {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.8);}

.secondary-btn:hover {
  background: white;
  color: #667eea;
}

.hero-image img {
    width: 100%; 
	   height: auto; 
		border-radius: 15px; 
	  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.about-section {


	padding: 80px 0;
   background: #f8f9fa;}

.content-wrapper {
  max-width: 1200px;
   margin :      0 auto;
	padding: 0 20px;
}

.section-header {
   margin-bottom: 60px;
    text-align: center;
}

.section-header h2	{
   font-size: 2.5em;
  color: #2c3e50;
	margin-bottom: 20px;
    font-weight:   600;
}

.section-header p {
   font-size: 1.2em;
  color: #7f8c8d;
   max-width: 700px;
   margin: 0 auto;
}

.features-grid {


  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
  margin-top: 50px;
	
	}

.feature-item {
	 background: white;
		 padding: 40px 30px;
	 border-radius :        12px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
   transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-content h3 {
	color: #2c3e50;
   font-size: 1.4em;
    margin-bottom: 15px;
   font-weight    :    600;


}

.feature-content p {
  color: #7f8c8d;
         line-height: 1.6;
}

.services-section  
  {
   padding: 80px 0;
  background: white;
	
}

.section-title {
        text-align: center;
      font-size: 2.5em;
  color: #2c3e50;
    margin-bottom    :   60px;
   font-weight: 600;
}

.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 40px;


}

.service-card {
   background: #f8f9fa;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
   transition: transform 0.3s ease;
}

.service-card:hover {

	  transform: translateY(-8px);



}

.service-card img


{
  width: 100%;

	    height: 200px;

	  object-fit: cover;
}

.service-content {
   padding :    30px;
}

.service-content h3 {
    color   :    #2c3e50;
    font-size: 1.4em;
  margin-bottom   :   15px;
   font-weight: 600;
}

.service-content p {

   color     :   #7f8c8d;
  margin-bottom: 20px;
    line-height: 1.6;
}

.service-content ul {
    list-style: none;
  padding: 0;
}



.service-content li {
    color: #5d6d7e;
   padding: 5px 0;
  position: relative;
    padding-left     : 20px;
}

.service-content li:before {
  content: "•";
  color: #3498db;
    font-weight: bold;
	position: absolute;
   left: 0;
}

.cta-section {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  padding : 80px 0;
                    color: white;
  text-align: center;
}  

.cta-content   {
   max-width: 1200px;
    margin: 0 auto;
  padding: 0 20px;
  display    :  grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
 align-items: center;
	 margin-bottom: 40px;
}

.cta-text h2 {
   font-size: 2.3em;
    margin-bottom:       20px;
    font-weight: 600;
}

.cta-text p {
  font-size: 1.1em;
  opacity: 0.9;
       line-height: 1.6;
}

.cta-image img {
      width: 100%;
  height    :       auto;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
     }  

.cta-button-wrapper  {
   max-width: 1200px;
  margin  :   0 auto;
    padding: 0 20px;
} 

.cta-button {
    background     :    white;
  color: #ee5a24;
  padding: 18px 40px;
  border-radius: 50px;
               text-decoration   :  none;
  font-weight: 600;
    font-size: 1.2em;
	 display: inline-block;
   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   :   80px 0;
   background: #f1f2f6;
}

.contact-header    {
  text-align: center;

	    margin-bottom: 60px;


}

.contact-header h2


{
  font-size: 2.5em;
  color: #2c3e50;
  margin-bottom    :       20px;
  font-weight: 600;
}

.contact-header p {
   font-size: 1.1em;
  color: #7f8c8d;
      max-width: 600px;
   margin: 0 auto;
}

.contact-content {
   display :grid;
  grid-template-columns: 2fr 1fr;
   gap: 60px;
  align-items: start;
}

.contact-form {
   background: white;
  padding: 40px;
   border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-row {
   display: grid;
 grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom:20px;
}

.form-group {
  margin-bottom: 20px;
}

.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 #e1e8ed;
   border-radius: 8px;
    font-size: 1em;
   transition: border-color 0.3s ease;
	font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
       border-color     :   #3498db;
}


.submit-btn {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
 color: white;
   padding: 15px 40px;
  border: none;
               border-radius: 8px;
     font-size: 1.1em;
  font-weight: 600;
    cursor: pointer;
   transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
} 

.contact-info

{
  background: white;
  padding: 40px 30px;
   border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: fit-content;
}



.info-item {
   margin-bottom: 30px;
}

.info-item h3

{
	  color: #2c3e50;
  font-size: 1.3em;
	 margin-bottom: 10px;
    font-weight: 600;
	}

.info-item p {
  color: #7f8c8d;
    line-height: 1.6;
}

.main-footer {
	   background: #2c3e50;
	 color: #ecf0f1;
   padding: 60px 0 20px;
	
     }

.footer-content {
                    max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
	display: grid;
    grid-template-columns: 1fr 2fr;
  gap: 50px;
} 

.footer-brand {
  max-width: 350px;
}

.footer-logo {
       height: 50px;
    width: auto;
  filter: brightness(0) invert(1);
    margin-bottom    :      15px;
}

.footer-brand h3 {
  font-size: 1.4em;
   margin-bottom: 15px;
   color: #ecf0f1;
}

.footer-brand p {
	color: #bdc3c7;
   line-height: 1.6;
}

.footer-links {
      gap: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);


}

.link-group h4 {
    color: #ecf0f1;
   margin-bottom    :     15px;
  font-size: 1.1em;
}

.link-group ul {
   list-style: none;
    padding: 0;
}

.link-group li {
  margin-bottom: 8px;
}

.link-group a {
   transition :   color 0.3s ease;
  color: #bdc3c7;
    text-decoration: none;
}

.link-group a:hover {

    color:   #3498db;} 

.footer-bottom {
  max-width: 1200px;
    margin: 40px auto 0;
  padding  :     20px;
  border-top : 1px solid #4a5f7a;
	text-align: center;
    color: #95a5a6;
}@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-nav.active {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5em;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }
}.about-hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.4)), url('../headers/neuroplasticity_leadership_development_4.webp');
       background-size: cover;
     background-position: center;
       padding: 140px 0 100px;
       color: white;
       text-align: center;
     min-height: 70vh;
      display:flex;
       align-items: center;
}

.about-hero-content{
  padding: 0 20px;
    max-width: 800px;
  margin: 0 auto;
}

.about-hero-content h1 {
  font-size: 3em;
  margin-bottom: 25px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.about-hero-desc {
   line-height: 1.7;
  opacity: 0.95;
  font-size: 1.3em;
}

.mission-segment {
    padding: 90px 0;
  background: white;
}

.mission-grid {
	 gap: 60px;
	align-items: center;
  grid-template-columns: 1.2fr 1fr;
   display: grid;
}

.mission-text h2 {
   font-size: 2.4em;
   color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 600;
	
}

.mission-text p {
  font-size: 1.1em;
  color: #5d6d7e;
  margin-bottom: 25px;
   line-height: 1.7;
} 

.mission-highlights {
    display: grid;
   grid-template-columns: 1fr 1fr;
  gap:       30px;
  margin-top: 40px;
}

.highlight-item {
    background: #f8f9fa;
   padding: 25px;
               border-radius: 10px;
   border-left: 4px solid #3498db;


}

.highlight-item h3 {
    color: #2c3e50;
  font-size   :   1.2em;
    margin-bottom: 12px;
  font-weight  :    600;
}

.highlight-item p {
    color: #7f8c8d;
   font-size: 0.95em;
	line-height: 1.5;
   margin: 0;
}  

.mission-visual img {
    width: 100%;
  height: auto;
         border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.team-showcase {
	 padding: 90px 0;
	background: #f1f2f6;
}

.team-header {
    text-align: center;
  margin-bottom: 70px; 
	
}

.team-header h2 {
    font-size: 2.4em;
  color: #2c3e50;
    margin-bottom: 20px;
  font-weight: 600;
}

.team-header p {
    font-size: 1.1em;
    max-width: 700px;
   color: #7f8c8d;
  line-height: 1.6;
          margin: 0 auto;
}

.team-profiles {
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
	gap: 40px;

}

.profile-card {
   background: white;
  border-radius: 15px;
   overflow:     hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.profile-card:hover {
  transform: translateY(-8px);
}

.profile-image {
    height: 220px;
  overflow: hidden; 
	
}

.profile-image img {
    width: 100%;
  height    :  100%;
    object-fit: cover;
         transition: transform 0.3s ease;
}

.profile-card:hover .profile-image img {
  transform: scale(1.05);
}

.profile-info {

	   padding: 30px;}

.profile-info h3 {
    color: #2c3e50; 
    font-size    :1.4em; 
                    margin-bottom: 8px; 
   font-weight   :      600;
}

.profile-role {
	color :  #3498db;
   font-weight   :      500;
               margin-bottom: 15px;
  font-size: 1em;
}

.profile-info p:last-child {

	    font-size: 0.95em;
    line-height: 1.6;
    color: #7f8c8d;
     }

.approach-methodology {
   padding  :  90px 0;
   background: white;
}

.approach-content {
     display: grid;
   grid-template-columns: 1fr 1fr;
    gap  : 60px;
  align-items: start;
}

.approach-text h2 {
   font-size: 2.4em;
    color: #2c3e50;
   margin-bottom: 25px;
  font-weight: 600;
}

.approach-text > p {
    color: #5d6d7e;
    font-size: 1.1em;
        line-height  : 1.7;
   margin-bottom: 40px;
}

.methodology-steps {
   display: flex;
    flex-direction: column;
  gap: 25px;
}



.step-item {
   display: flex;
  align-items: flex-start;
   gap  :  20px;
    padding: 20px;
	 background: #f8f9fa;
    border-radius: 12px;
  border-left: 4px solid #e74c3c;
}

.step-number {
   background     :#e74c3c;
    align-items: center;
   color     :      white;
   flex-shrink: 0;
	font-size: 0.9em;
   -webkit-border-radius: 50%;
	display: flex;
  width: 35px;
   justify-content: center;
    font-weight: 600;
    height: 35px;
  border-radius: 50%;
}

.step-content h4 {
          color: #2c3e50;
   font-size: 1.1em;
   margin-bottom :       8px;
	 font-weight: 600;
}

.step-content p {
  color: #7f8c8d;
	line-height: 1.5;
    margin: 0;
    font-size: 0.95em;
}

.approach-visual {
    position: sticky;
   top: 100px; 

}

.approach-visual img {
  width: 100%;

	    height: auto;

	  border-radius: 15px;

	  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.company-values {
  padding  :     90px 0;

	    background  :        #2c3e50;

	    color: white;
}

.values-title   {
   text-align: center; 
	    font-size: 2.4em; 
	    margin-bottom: 60px; 
	    font-weight :       600; 
	  color: #ecf0f1;
}

.values-grid {
     display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap :     30px;
}

.value-card {
     background: rgba(52, 152, 219, 0.1);
   padding: 35px 25px;
       border-radius: 12px;
   text-align: center;
  border: 2px solid rgba(52, 152, 219, 0.2);
    transition: all 0.3s ease;
	}  

.value-card:hover {

  background: rgba(52, 152, 219, 0.2);
  border-color: rgba(52, 152, 219, 0.4);
  transform: translateY(-5px);
	}

.value-card h3 {
    color: #ecf0f1;
    font-size: 1.3em;
     margin-bottom: 15px;
   font-weight: 600;
}

.value-card p	{
  color :    #bdc3c7;
	 line-height: 1.6;
   font-size: 0.95em;
}

.thankyou-hero {
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
   padding: 140px 0 100px;
    color: white;
    min-height: 85vh;
     display: flex;
  align-items   :  center;
}

.thankyou-container {
    max-width :        1200px;
  margin: 0 auto;
   padding: 0 20px;
   display: grid;
	grid-template-columns: 1.2fr 1fr;
   gap: 60px;
  align-items: center;
}

.thankyou-content {
    text-align: left;
}

.thankyou-icon {
   	margin-bottom: 30px;
}

.success-checkmark {
    width: 80px;
    height: 80px;
    position: relative;
   display: inline-block;
   margin-bottom: 20px;
}

.success-checkmark .check-icon {
   width: 80px;
   height: 80px;
    position: relative;
    border-radius: 50%;
  box-sizing: content-box;
    border: 4px solid #27ae60;
   background: white;
}

.success-checkmark .check-icon::before {
  top: 3px;
                    left: -2px;
  width  :   30px;
  transform-origin: 100% 50%;
  border-radius: 100px 0 0 100px;
}

.success-checkmark .check-icon::after {
	top: 0;
					left: 30px;
  width: 60px;
   transform-origin: 0 50%;
   border-radius: 0 100px 100px 0;
    animation: rotate-circle 4.25s ease-in;
}

.success-checkmark .check-icon::before,
.success-checkmark .check-icon::after {
  content: '';
  height: 100px;
  position: absolute;
   background: #27ae60;
  transform: rotate(-45deg);
}

.success-checkmark .icon-line {
    height: 5px;
  background :   #27ae60;
   display: block;
    border-radius: 2px;
  position: absolute;
   z-index: 10;
}

.success-checkmark .icon-line.line-tip {


  top: 46px;
  left: 14px;
   width: 25px;
  transform: rotate(45deg);
  animation: icon-line-tip 0.75s;
}

.success-checkmark .icon-line.line-long {
    top: 38px;
    right   : 8px;
    width: 47px;
  transform: rotate(-45deg);
  animation   : icon-line-long 0.75s;
}

.thankyou-content h1 {
  font-size: 3em;
       margin-bottom: 25px;
      font-weight: 700;
}

.thankyou-message {
   font-size: 1.2em;
    line-height: 1.7;
    margin-bottom: 40px;
       opacity     :    0.95;
}

.next-steps {
                    margin-bottom: 40px;
}

.next-steps h2 {
  font-size: 1.8em;
  margin-bottom :    25px;
    font-weight: 600;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-point {
  display: flex;
   align-items: center;
  gap: 15px;
}

.step-icon {
  background: rgba(255,255,255,0.2);
  color: white;
    width: 30px;
	height: 30px;
  border-radius: 50%;
    display: flex;
        align-items   :center;
	justify-content: center;
    font-weight: 600;
  flex-shrink: 0;
}

.step-point p {
  margin: 0;
   font-size: 1.05em;
   line-height: 1.5;


}

.action-buttons {
     display: flex;
    gap: 20px;
	flex-wrap   : wrap;
     }

.return-btn, .learn-more-btn {
    padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
   font-weight: 600;
    font-size: 1.1em;
   transition: all 0.3s ease;
    display: inline-block;
}

.return-btn {
    background: white;
    color: #27ae60;
  border: 2px solid white;
}

.return-btn:hover
	{
	  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);

}


.learn-more-btn {
          background: transparent;
    color: white;
  border: 2px solid rgba(255,255,255,0.8);

}

.learn-more-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}

.thankyou-visual img {
  width: 100%;
    height: auto;
    border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
	
}

.additional-info-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.info-cards {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px; 
	
}

.info-card {
  background: white;
   padding:    35px 30px;
	border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-align: center;
}

.info-card h3 {
       color     : #2c3e50;
          font-size: 1.3em;
   margin-bottom: 15px;
    font-weight: 600;} 

.info-card p {
  color: #7f8c8d;
   line-height: 1.6;
    font-size: 0.95em;
}

.contact-reminder {

		padding: 80px 0;
  background: white;

}

.contact-details		{
    text-align: center;
	  max-width: 600px;
	    margin: 0 auto;
}

.contact-details h2 {
  font-size: 2.2em;
    color: #2c3e50;
  margin-bottom: 40px;
   font-weight: 600;
	}

.contact-grid {
  display: grid;
    grid-template-columns: 1fr 1fr;
    gap:      40px;
  margin-bottom: 30px;
}

.contact-item h4 {

	color: #3498db;
  font-size   : 1.1em;
 margin-bottom: 10px;
    font-weight: 600;
	}

.contact-item p {
    color: #5d6d7e;
   line-height: 1.5;
  margin: 0;
}

.contact-note {
   color: #7f8c8d;
         font-style: italic;
	 line-height: 1.6;
   margin-top: 25px;
}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.2em;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mission-highlights {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .approach-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .approach-visual {
        position: static;
    }

    .thankyou-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .thankyou-content h1 {
        font-size: 2.5em;
    }

    .action-buttons {
        justify-content: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}

@keyframes icon-line-tip {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }
    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }
    100% {
        width: 25px;
        left: 14px;
        top: 45px;
    }
}

@keyframes icon-line-long {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    84% {
        width: 55px;
        right: 0px;
        top: 35px;
    }
    100% {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}.cookies-hero  {
          background-size  :     cover;

	  background-position   :  center;

	    padding: 140px 0 100px;

	   color: white;

	  text-align: center;

	   min-height: 70vh;

	   display: flex;

	  align-items   :    center;
}

.cookies-hero-content {
		 max-width: 800px;
   margin: 0 auto;
  padding: 0 20px;
}

.cookies-hero-content h1 {
   font-size: 3em;
    margin-bottom   :     25px;
   font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cookies-hero-desc {

	  font-size     :       1.3em;
    line-height: 1.7;
         opacity: 0.95;


}

.cookies-content {
   background  : #f8f9fa;
  padding: 80px 0;
}

.cookies-details {
  padding  :       0 20px;
   max-width: 800px;
	margin: 0 auto; 
	
}

.cookies-details h3 {
  color     :   #2c3e50;
  font-size: 1.5em;
               margin: 30px 0 15px;
   font-weight: 600;
}

.cookies-details p {
   color: #7f8c8d;
   line-height: 1.7;
    margin-bottom: 20px;
  font-size: 1em;
}

.cookies-details ul {
   list-style: none;
   padding     :0;
    margin-bottom: 20px;
}

.cookies-details li {
    color: #5d6d7e;
  padding: 10px 0;
   position     :  relative;
   padding-left: 20px;
}  

.cookies-details li:before {
  content: "•";
    color: #3498db;
   font-weight: bold;
    position: absolute;
  left: 0;
}@media (max-width: 768px) {
    .cookies-hero-content h1 {
        font-size: 2.2em;
    }

    .cookies-hero-desc {
        font-size: 1.1em;
    }
}.privacy-hero {
                    background-size: cover;
   background-position     :     center;
                    padding: 140px 0 100px;
      color: white;
    text-align: center;
	 min-height: 70vh;
    display: flex;
   align-items: center;
}

.privacy-hero-content {
   max-width: 800px;
		margin: 0 auto;
	  padding: 0 20px;
}

.privacy-hero-content h1    {
   font-size: 3em;
  margin-bottom    :   25px;
  font-weight   :       700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.privacy-hero-desc		{
   font-size: 1.3em;
       line-height: 1.7;
                    opacity: 0.95;
}

.privacy-content {

	padding: 80px 0;
   background: #f8f9fa;}

.privacy-details {

	    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;}

.privacy-details h3 {
   color :   #2c3e50;

	  font-size: 1.5em;

	  margin: 30px 0 15px;

	   font-weight: 600; 

}

.privacy-details p {
    color: #7f8c8d;
	 line-height: 1.7;
  margin-bottom: 20px;
    font-size: 1em;
     }

.privacy-details ul {
  padding: 0;
  margin-bottom: 20px;
   list-style: none;
}

.privacy-details li {
   color: #5d6d7e;
	padding: 10px 0;
    position  : relative;
    padding-left: 20px;
}

.privacy-details li:before {
  content: "•";
  color: #3498db;
       font-weight: bold;
  position: absolute;
    left: 0;
}@media (max-width: 768px) {
    .privacy-hero-content h1 {
        font-size: 2.2em;
    }

    .privacy-hero-desc {
        font-size: 1.1em;
    }
}