* {
    margin: 0;
    padding: 0;
       box-sizing: border-box; 

}

html {
        scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
   line-height: 1.6;
    color: #2c3e50;
  background-color: #ffffff;
}

.navbar {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
   padding: 1rem 0;
  position: sticky;
	 top   :       0;
	z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.navbar-container {
    max-width: 1200px;
   margin: 0 auto;
    justify-content: space-between;
   display: flex;
      padding   :0 2rem;
     align-items: center;


} 

.nav-brand {


   display:   flex;
   align-items: center;
     }

.logo {
   height: 64px;
   width: auto;
  filter: brightness(0) invert(1);
}

.nav-menu {
   display: flex;
	list-style: none;
  gap: 2rem;
}

.nav-menu a {
      color: #ffffff;
   text-decoration: none;
  font-weight: 500;
    transition: color 0.3s ease;
  font-size: 1rem;
}

.nav-menu a:hover {
    color   :        #64c5eb;
}

.hamburger-menu


{
    display: none;
   flex-direction: column;
   background: none;
    border: none;
   cursor: pointer;
   padding  :0.5rem;
}

.hamburger-menu span {
      width: 25px; 
	  height: 3px; 
	   background-color: #ffffff; 
	   margin: 5px 0; 
		transition  :     all 0.3s ease; 
	    border-radius: 2px;
	}

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);

}

.hamburger-menu.active span:nth-child(2) {


	opacity   :     0; 

     }



.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.hero {
          display: flex;

   align-items: center;

  justify-content    :      space-between;

  max-width: 1200px;

  margin: 0 auto;

  padding :       4rem 2rem;

  gap: 3rem; 

}

.hero-content {
  -ms-flex: 1;
   flex :        1;
    -webkit-flex: 1;

}

.hero-content h1 {
       font-size: 3.5rem;
          font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom    :  1.5rem;
     }

.hero-content p  {
    font-size: 1.3rem;
    color: #555;
   margin-bottom: 2rem;
   max-width: 500px;
}

.hero-image {
  flex: 1;
   width: 100%;
    max-width: 500px;
    height: auto;
   border-radius: 12px;
    object-fit  :   cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-button 
 {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
   font-weight   :        600;
   border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #2e8fbb 0%, #1a5f8f 100%);
  color: white;
  cursor: pointer;
    transition :        all 0.3s ease;
  box-shadow: 0 4px 15px rgba(46, 143, 187, 0.3);
}  

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 143, 187, 0.4);
}

.cta-button.secondary {
  background: linear-gradient(135deg, #64c5eb 0%, #2e8fbb 100%);
}

.services-preview   {
	    background: #f8f9fa;
  padding: 5rem 2rem;
	text-align: center;}

.services-preview h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.services-grid {


  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;


}

.service-card {
 background: white;
    border-radius:       12px;
   overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.service-image {
   	width: 100%;
               height: 250px;
  object-fit:      cover;
     } 

.service-card h3 {
	 font-size: 1.5rem;
  padding     :1.5rem 1.5rem 0.5rem;
  color: #2e8fbb;
}

.service-card p {
    padding: 0.5rem 1.5rem 1.5rem;
  color: #666;
    font-size: 0.95rem;
	}

.expertise-section {
     display: flex;
          align-items: center;
    justify-content: space-between;
    max-width: 1200px;
	margin: 0 auto;
   padding: 4rem 2rem;
	gap: 3rem;
}


.expertise-content
	{
  flex    :      1;
}

.expertise-section h2 {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
       color: #1a1a1a;
     }

.expertise-section p {
     margin-bottom  :        1.5rem;
  font-size   :      1.1rem;
    color : #555;
        line-height: 1.8;
}

.expertise-list
{
	list-style:none;
	margin  :    1.5rem 0;

}

.expertise-list li {
 padding: 0.8rem 0;
 padding-left: 1.5rem;
  position    :     relative;
 font-size: 1rem;
  color: #333;
} 

.expertise-list li:before {
  content: "→";

    position: absolute;

    left :    0;

    color: #2e8fbb;

  font-weight: bold;
}

.expertise-image 
 {
          flex: 1;
          width: 100%;
   max-width    :450px;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.webinar-conference {


  background: linear-gradient(135deg, #f0f4f8 0%, #e8f0f6 100%);
  padding: 5rem 2rem;
    text-align: center;

}

.webinar-conference h2 {
                       font-size  :    2.8rem;
          margin-bottom: 0.5rem;
    color    :       #1a1a1a;

}  

.section-subtitle {
   font-size: 1.2rem;
    color  :   #666;
	margin-bottom: 3rem;
} 

.webinar-grid {

    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap :        2.5rem;
    max-width: 1200px;
   margin: 0 auto;


	}

.webinar-card {
  background: white;
   padding: 2rem;
  border-radius: 10px;
         text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
        border-top: 4px solid #2e8fbb;
    position:     relative;
	
}

.webinar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.webinar-card h3 {
    font-size: 1.4rem;
  color  :#1a1a1a;
         margin-bottom: 1rem;
}

.webinar-card p {
   color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

.webinar-badge {
   display: inline-block;
  background: linear-gradient(135deg, #2e8fbb 0%, #1a5f8f 100%);
   color: white;
  padding: 0.4rem 1rem;
    border-radius: 20px;
  font-size: 0.75rem;
	font-weight: 600;
	margin-top: 1rem;
}

.consultation-highlight {
    display: flex;
	 align-items: center;
  justify-content: space-between;
   max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    gap: 3rem;


}

.highlight-image


{
  flex: 1;
   width: 100%;
   max-width: 450px;
    height: auto;
  border-radius: 12px;
       object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.highlight-content {
         flex: 1;
}

.highlight-content h2 {
    font-size: 2.5rem; 
   margin-bottom: 1.5rem; 
   color  :   #1a1a1a;}

.highlight-content p {

	   font-size: 1.1rem;
  color: #555;
        margin-bottom: 2rem;
               line-height: 1.8; 


}

.planning-section {
        background: #ffffff; 
		padding: 5rem 2rem; 
	   text-align: center;
}

.planning-section h2 {
	font-size: 2.8rem;
   margin-bottom: 3rem;
   color: #1a1a1a;
}

.methodology-cards {
               display     :     grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap  :    2.5rem;
  max-width: 1200px;
    margin: 0 auto;
}

.method-card {
	background: white;
  border-radius: 10px;
   overflow   :       hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease; 
	
}

.method-card:hover {

	  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);}

.method-image {
	   width  :100%;
    height: 220px;
     object-fit: cover;
	}

.method-card h3 {
    font-size: 1.4rem;
	padding: 1.5rem 1.5rem 0.5rem;
  color: #2e8fbb;
   text-align: center;
}

.method-card p {
  padding: 0.5rem 1.5rem 1.5rem;
   color: #666;
 font-size: 0.95rem;
               text-align: center;
    line-height :1.6;


}

.contact-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 5rem 2rem;
	text-align: center;
    color: white;
}

.contact-section h2	{
   font-size: 2.8rem; 
  margin-bottom: 0.5rem; 
  color: #ffffff;
}

.contact-subtitle
{
  font-size:     1.2rem;
   color: #ccc;
  margin-bottom: 3rem;
}

.consultation-form {
    max-width: 600px;
	 margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
   padding    :        2.5rem;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	


}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
	font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
       width: 100%;
   padding: 0.875rem 1rem;
    border: 2px solid #e0e0e0;
   border-radius: 6px;
   font-size: 0.95rem;
	font-family  :      inherit;
	 transition: border-color 0.3s ease;
   color: #1a1a1a;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2e8fbb;
  box-shadow: 0 0 0 3px rgba(46, 143, 187, 0.1);
}

.form-group textarea {
  resize: vertical;
      min-height: 120px;
}

.submit-button {
  width  :100%;
  padding: 1rem;
   font-size: 1.1rem;
  font-weight   :        600;
               border: none;
    border-radius: 8px;
  background: linear-gradient(135deg, #2e8fbb 0%, #1a5f8f 100%);
	color    :      white;
   cursor   :       pointer;
    transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(46, 143, 187, 0.3);
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 143, 187, 0.4);
}

.footer {
                    margin-top: 2rem;
   padding: 3rem 2rem 1rem;
        color: #e0e0e0;
    background: #1a1a1a;
}

.footer-container {

	 max-width: 1200px;
  margin: 0 auto;
  display: grid;
    grid-template-columns: 200px 1fr;
    gap  :        3rem;
			margin-bottom: 2rem;
}

.footer-brand {
     display    : flex;
    align-items    :     flex-start;
}

.footer-logo {
    height: 86px;
    width: auto;
  filter: brightness(0) invert(1);
}

.footer-content {
    display    :  grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 2rem;
}

.footer-section h4 {
  color: #ffffff;
   margin-bottom: 1rem;
   font-size: 1rem;
}

.footer-section ul {

   list-style: none;

}

.footer-section ul li {
  margin-bottom : 0.7rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-section a:hover {
    color: #64c5eb;
}

.footer-address {
  font-size: 0.95rem;
   line-height   :       1.6;
   color: #ccc;
    margin-bottom: 0.5rem;
	
}

.footer-phone {

    color: #ccc;
	font-size: 0.95rem;
     }


.footer-bottom {
  text-align: center;
  padding-top: 2rem;
    border-top: 1px solid #404040;
    color: #999;
   font-size: 0.9rem;
}@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a1a1a;
        flex-direction: column;
        gap: 0;
        padding: 1.5rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-menu li {
        padding: 0.75rem 0;
    }

    .hero {
        flex-direction: column;
        padding: 2rem 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-image {
        max-width: 100%;
    }

    .expertise-section {
        flex-direction: column;
        padding: 2rem 1.5rem;
    }

    .expertise-image {
        max-width: 100%;
    }

    .consultation-highlight {
        flex-direction: column;
        padding: 2rem 1.5rem;
    }

    .highlight-image {
        max-width: 100%;
    }

    .services-preview h2,
    .webinar-conference h2,
    .planning-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }

    .services-grid,
    .webinar-grid,
    .methodology-cards {
        grid-template-columns: 1fr;
    }

    .consultation-form {
        padding: 1.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .cta-button {
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
    }

    .services-preview h2,
    .planning-section h2 {
        font-size: 1.6rem;
    }

    .service-card h3,
    .method-card h3 {
        font-size: 1.2rem;
    }

    .navbar-container {
        padding: 0 1rem;
    }

    .consultation-form {
        padding: 1.2rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #2e8fbb 0%, #1a5f8f 100%);
   padding    :5rem 2rem;
  text-align     :     center;
   color: white;
}

.services-hero-content h1 {

	  font-size: 3rem;
   margin-bottom: 1.5rem;
  font-weight: 700;
    line-height: 1.2;
	}

.services-hero-content p {
   font-size: 1.2rem; 
  max-width     :  700px; 
  margin    :0 auto; 
               line-height: 1.8; 
   opacity :        0.95;
}

.service-detail-section 
 {

  max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.service-detail-container {
    display: flex;
  flex-direction: column;
  gap: 4rem;
}

.service-detail-item {
     display: grid;
    grid-template-columns: 1fr 1fr;
  gap   :   3rem;
  align-items: center;}

.service-detail-item.reverse {
  direction: rtl;
}

.service-detail-item.reverse > * {
  direction: ltr;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
   margin-bottom  :        1.5rem;
    font-weight: 700;
}

.service-detail-content > p {
   font-size: 1.05rem;
    color: #555;
   margin-bottom: 1.5rem;
  line-height: 1.8;
}

.service-features {
     list-style: none;
    margin   :      1.5rem 0;
}

.service-features li {
   padding: 0.8rem 0;
    padding-left: 1.5rem;
   position: relative;
	font-size: 1rem;
      color: #333;
   font-weight: 500;
}

.service-features li:before {
  content: "✓";
   position   :        absolute;
  left: 0;
    color: #2e8fbb;
   font-weight: bold;
    font-size: 1.2rem;
}

.service-highlight {
    background: #f0f7fb;
    padding: 1.2rem;
   border-left     :    4px solid #2e8fbb;
  border-radius: 4px;
  font-size: 0.95rem;
    color: #333;
    font-style: italic;
       margin-top: 1.5rem;
}

.service-detail-image {
    width: 100%;
    height: auto;
  max-height: 400px;
    object-fit: cover;
     border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
   transition: transform 0.3s ease;
} 

.service-detail-item:hover .service-detail-image		{
  transform: scale(1.02);
}

.engagement-models {
    background: #f8f9fa;
    padding: 5rem 2rem;
    text-align: center;
}

.engagement-models h2 {
        font-size: 2.8rem;
   margin-bottom: 3rem;
  color: #1a1a1a;
}

.models-grid		{
      display: grid;

  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

   gap   : 2rem;

    max-width: 1200px;

	margin: 0 auto;
}

.model-card {
    background: white;
                    padding: 2rem;
   border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
  border-top: 3px solid #2e8fbb;
}



.model-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.model-card h3 {
     font-size: 1.4rem;
               color     : #1a1a1a;
    margin-bottom: 1rem;
   text-align: center;
}

.model-card p {
	font-size: 0.95rem;

   color: #666;

  line-height: 1.7;

  text-align    :      center;
}

.service-pricing-cta {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 4rem 2rem;
         text-align: center;
  color: white;
}

.service-pricing-cta h2 {
  font-size: 2.5rem;
	         margin-bottom: 1rem;
	    color: #ffffff;
}

.service-pricing-cta p {
    color: #ccc;
	line-height: 1.8;
   max-width: 600px;
    font-size     :  1.15rem;
  margin: 1rem auto 2rem;
} 

.service-pricing-cta .cta-button {
   display: inline-block;
  padding:     1rem 2.5rem;
   font-size    :        1.1rem;
   font-weight    :      600;
  border: none;
      border-radius: 8px;
  background: linear-gradient(135deg, #2e8fbb 0%, #1a5f8f 100%);
   color: white;
  cursor   : pointer;
  text-decoration: none;
   transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(46, 143, 187, 0.3);
}

.service-pricing-cta .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 143, 187, 0.4);
}

.thank-you-container {
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f0f6 100%);
    padding   :    4rem 2rem;
   min-height: 60vh;
   display: flex;
  align-items: center;
   justify-content: center;
}



.thank-you-content {
	 background     : white;
   padding: 3rem;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
   max-width: 700px;
    text-align: center;
}

.success-icon {
  margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.success-icon svg {
   color: #2ecc71;
  animation     :scaleIn 0.6s ease-out;
}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thank-you-content h1 {
    font-size: 2.8rem;
   color     :      #1a1a1a;
    margin-bottom  :       0.5rem;
  font-weight: 700;


}

.thank-you-content h2 {
    font-weight: 600;
   color: #2e8fbb;
  margin-bottom: 1.5rem;
   font-size: 1.5rem;
}

.thank-you-message {
   line-height   :    1.8;
   color: #555;
   font-size: 1.05rem;
    margin-bottom:        2rem;
}

.confirmation-details {
    padding    :        2rem;
    margin: 2rem 0;
   border-radius: 8px;
  text-align: left;
  background: #f0f7fb;
}

.confirmation-details h3 {
    font-size    :1.3rem;
         color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-align: center;
}

.next-steps {
   list-style:none;
    margin: 0;
	
}

.next-steps li {
  padding: 0.8rem 0;
  padding-left: 2rem;
	 position: relative;
  font-size   :    0.95rem;
	color  :#333;
    line-height: 1.6;
	
}

.next-steps li:before


{
  content: "→";
   position: absolute;
    left: 0;
  color: #2e8fbb;
    font-weight: bold;
	font-size: 1.1rem;
}

.support-info {

	    background   :    #fff9e6;
   padding: 1.5rem;
   border-radius: 8px;
  margin :   2rem 0;}

.support-info p {
               margin: 0.5rem 0;
    color: #333;
	 font-size: 0.95rem;
}

.support-info strong {
    color: #2e8fbb;
	 font-weight: 600;
}



.action-buttons {
			display: flex;
  gap: 1.5rem;
    margin-top: 2rem;
  flex-wrap: wrap;
   justify-content: center;
}

.action-buttons .cta-button {
   display: inline-block;
    padding     :      0.9rem 2rem;
     font-size: 1rem;
  font-weight: 600;
  border: none;
   border-radius: 8px;
  background: linear-gradient(135deg, #2e8fbb 0%, #1a5f8f 100%);
   color: white;
   cursor: pointer;
	text-decoration:  none;
   transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(46, 143, 187, 0.3);
}

.action-buttons .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 143, 187, 0.4);
}

.action-buttons .cta-button.secondary	{
  background: linear-gradient(135deg, #64c5eb 0%, #2e8fbb 100%);
}



.additional-resources {

	   max-width: 1200px;
    margin: 0 auto;
  padding: 5rem 2rem;
   text-align: center;}

.additional-resources h2 
 {
    font-size: 2.5rem;
	margin-bottom: 3rem;
    color: #1a1a1a;
}

.resources-grid {
   display  :  grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
} 

.resource-card {
  background: white;
    padding: 2rem;
    border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
   transition   :    all 0.3s ease;
   text-align: center;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.resource-card h3 {
  margin-bottom: 1rem;
    color:  #2e8fbb;
  font-size: 1.4rem;
}

.resource-card p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
   color: #666;
   line-height    :1.7;
}

.resource-card a {
   display: inline-block;
    padding: 0.7rem 1.8rem;
   background: #2e8fbb;
    color: white;
  text-decoration: none;
    border-radius: 6px;
    font-weight    :      600;
    font-size    :       0.95rem;
  transition: all 0.3s ease;
}

.resource-card a:hover  {
	background: #1a5f8f;
  transform: translateY(-2px);
}@media (max-width: 1024px) {
    .service-detail-item {
        grid-template-columns: 1fr;
    }

    .service-detail-item.reverse {
        direction: ltr;
    }

    .service-detail-item.reverse > * {
        direction: ltr;
    }

    .services-hero-content h1 {
        font-size: 2.2rem;
    }

    .service-detail-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 3rem 1.5rem;
    }

    .services-hero-content h1 {
        font-size: 1.8rem;
    }

    .services-hero-content p {
        font-size: 1rem;
    }

    .service-detail-section {
        padding: 3rem 1.5rem;
    }

    .service-detail-item {
        gap: 1.5rem;
    }

    .service-detail-image {
        max-height: 300px;
    }

    .service-detail-content h2 {
        font-size: 1.5rem;
    }

    .engagement-models h2,
    .service-pricing-cta h2 {
        font-size: 2rem;
    }

    .thank-you-content {
        padding: 2rem;
    }

    .thank-you-content h1 {
        font-size: 2rem;
    }

    .thank-you-content h2 {
        font-size: 1.2rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .action-buttons .cta-button {
        width: 100%;
    }

    .additional-resources {
        padding: 3rem 1.5rem;
    }
}@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 1.6rem;
    }

    .service-detail-content h2 {
        font-size: 1.3rem;
    }

    .service-detail-content > p,
    .service-highlight {
        font-size: 0.9rem;
    }

    .engagement-models h2,
    .service-pricing-cta h2,
    .additional-resources h2 {
        font-size: 1.6rem;
    }

    .models-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }

    .model-card,
    .resource-card {
        padding: 1.5rem;
    }

    .service-detail-item {
        gap: 1rem;
    }
}.about-hero {


  background: linear-gradient(135deg, #2e8fbb 0%, #1a5f8f 100%);
   padding: 5rem 2rem;
   text-align: center;
         color: white;}

.about-hero h1 {
   font-size: 3rem;
  margin-bottom: 1rem;
   font-weight: 700;
  line-height: 1.2;
}

.about-hero p {
  font-size: 1.3rem;
    opacity: 0.95;
  line-height: 1.6;
}

.about-content {
    max-width: 1200px;
	  margin: 0 auto;
	     padding: 5rem 2rem;
}

.about-container {
  display: grid;
               grid-template-columns: 1fr 1fr;
    gap: 3rem;
  align-items    : flex-start;
}

.about-text {
  line-height: 1.8;
}

.about-text h2 {
  font-size :      2rem;
  color: #1a1a1a;
    margin-top: 2rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
}

.about-text h2:first-child {
    margin-top: 0;
}

.about-text p {
    font-size :      1.05rem;
 color: #555;
  margin-bottom: 1.5rem;
	line-height   :       1.8;
  text-align: justify;
}

.values-list {
	   list-style: none;
   margin: 1.5rem 0;
     }



.values-list li  {
  padding: 1rem;
 margin-bottom: 1rem;
  background: #f8f9fa;
   border-left :  4px solid #2e8fbb;
	 border-radius: 4px;
   font-size: 1rem;
                    color: #333;
   line-height: 1.6; 

}

.values-list li strong {
          color: #2e8fbb;
  font-weight: 700;
}

.about-image-container     {
  position: sticky;
  top  :100px; 
	
}

.about-image     {
    width: 100%;
    height: auto;
  max-height: 500px;
    object-fit: cover;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.our-expertise   {
  background: #f8f9fa;
   padding: 5rem 2rem;
  text-align: center;

} 

.our-expertise h2 {
   font-size  :       2.8rem;
    margin-bottom     :      3rem;
    color: #1a1a1a;
}

.expertise-areas
	{


	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
	max-width: 1200px;
   margin: 0 auto;

}  

.expertise-item {
  background: white;
    padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      transition    :     all 0.3s ease;
	 border-top: 3px solid #2e8fbb;
}

.expertise-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}



.expertise-item h3 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-align: center;
}

.expertise-item p {
   text-align: center;
     line-height: 1.7;
   color: #666;
  font-size  :       0.95rem;
}

.about-cta {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
   padding: 4rem 2rem;
  text-align: center;
  color: white;
}

.about-cta h2  {
   font-size: 2.5rem;
  margin-bottom     :1rem;
    color: #ffffff;

}

.about-cta p {
   font-size: 1.15rem;
   max-width: 600px;
  margin: 1rem auto 2rem;
       line-height: 1.8;
  color: #ccc;
}

.about-cta .cta-button {
   display: inline-block;
     padding: 1rem 2.5rem;
    font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #2e8fbb 0%, #1a5f8f 100%);
    color: white;
  cursor: pointer;
  text-decoration: none;
    transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(46, 143, 187, 0.3);

}

.about-cta .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 143, 187, 0.4);
}@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image-container {
        position: static;
    }

    .about-hero h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 3rem 1.5rem;
    }

    .about-hero h1 {
        font-size: 1.8rem;
    }

    .about-hero p {
        font-size: 1.05rem;
    }

    .about-content {
        padding: 3rem 1.5rem;
    }

    .about-text h2 {
        font-size: 1.5rem;
        margin-top: 1.5rem;
    }

    .about-text p {
        font-size: 0.95rem;
        text-align: left;
    }

    .values-list li {
        padding: 0.8rem;
        margin-bottom: 0.8rem;
    }

    .our-expertise {
        padding: 3rem 1.5rem;
    }

    .our-expertise h2 {
        font-size: 2rem;
    }

    .expertise-areas {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-cta {
        padding: 3rem 1.5rem;
    }

    .about-cta h2 {
        font-size: 1.8rem;
    }

    .about-cta p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 1.6rem;
    }

    .about-hero p {
        font-size: 0.95rem;
    }

    .about-text h2 {
        font-size: 1.3rem;
    }

    .about-text p {
        font-size: 0.9rem;
    }

    .values-list li {
        padding: 0.7rem;
        font-size: 0.9rem;
    }

    .expertise-item h3 {
        font-size: 1.2rem;
    }

    .expertise-item p {
        font-size: 0.9rem;
    }

    .about-cta h2 {
        font-size: 1.4rem;
    }

    .about-cta p {
        font-size: 0.9rem;
    }

    .about-cta .cta-button {
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
    }
}.reviews-hero {
  background: linear-gradient(135deg, #2e8fbb 0%, #1a5f8f 100%);
  padding: 5rem 2rem;
    text-align: center;
	color: white;
}

.reviews-hero h1 {
   font-weight:    700;
	  margin-bottom: 1rem;
	   font-size: 3rem;
	  line-height: 1.2;}

.reviews-hero p {
   font-size: 1.3rem;
   line-height: 1.6;
   opacity: 0.95;
}

.reviews-content {
   max-width: 1200px;
   margin :   0 auto;
               padding: 4rem 2rem;
}

.reviews-intro {
   text-align: center;
    margin-bottom: 3rem;
}

.reviews-intro p {
    font-size: 1.1rem;
	color: #555;
    max-width: 700px;
   margin: 0 auto;
   line-height: 1.8;
}

.reviews-container {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
  margin-bottom: 4rem;
}

.review-card {
    background: white;
    padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
  border-left: 4px solid #2e8fbb;
}

.review-card:hover {
     transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
     }

.review-header {
  margin-bottom: 1.5rem;
}

.review-header h3
{
    font-size: 1.3rem;

	    color: #1a1a1a;

	  font-weight: 700;

	                    margin-bottom: 0.8rem;
	
}

.rating {
  display: flex;
    gap: 0.3rem;
}

.star {
    color: #ffc107;
	font-size: 1.2rem;
  line-height: 1;
}

.review-text   {
	font-size: 0.95rem;
   color: #555;
          line-height: 1.8;
   margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
   font-size: 0.9rem;
  color: #2e8fbb;
  font-weight: 600;
}

.reviews-stats {
    background: #f8f9fa;
                    padding: 5rem 2rem;
   text-align: center;
   margin-bottom: 3rem;
}

.reviews-stats h2 {
  font-size: 2.8rem;
               margin-bottom: 3rem;
    color: #1a1a1a;
}

.stats-grid  
  {
	 display    :      grid;

	  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

	  gap: 2rem;

	    max-width: 1000px;

	  margin: 0 auto;
}

.stat-item   {
    background: white;
   padding: 2rem;
	border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);

}

.stat-number {
   font-size: 3rem;
   color    :   #2e8fbb;
        font-weight: 700;
    margin-bottom : 0.5rem;
}

.stat-item p {
    font-size: 1rem;
	 color: #666;
               font-weight: 500;
}

.reviews-cta {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
   padding  :  4rem 2rem;
    text-align: center;
    color: white;


}

.reviews-cta h2		{
   font-size :     2.5rem;
   margin-bottom: 1rem;
  color: #ffffff;
}



.reviews-cta p		{
    font-size    :  1.15rem;
   max-width: 600px;
    margin: 1rem auto 2rem;
  line-height: 1.8;
   color: #ccc;
}

.reviews-cta .cta-button {
    display: inline-block;
   padding: 1rem 2.5rem;
    font-size: 1.1rem;
         font-weight :        600;
    border     :     none;
    border-radius: 8px;
  background: linear-gradient(135deg, #2e8fbb 0%, #1a5f8f 100%);
    color: white;
   cursor     :pointer;
  text-decoration: none;
    transition:  all 0.3s ease;
  box-shadow: 0 4px 15px rgba(46, 143, 187, 0.3);
}

.reviews-cta .cta-button:hover {

	  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 143, 187, 0.4);

}@media (max-width: 1024px) {
    .reviews-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .reviews-hero h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .reviews-hero {
        padding: 3rem 1.5rem;
    }

    .reviews-hero h1 {
        font-size: 1.8rem;
    }

    .reviews-hero p {
        font-size: 1.05rem;
    }

    .reviews-content {
        padding: 3rem 1.5rem;
    }

    .reviews-intro p {
        font-size: 0.95rem;
    }

    .reviews-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .review-card {
        padding: 2rem;
    }

    .review-header h3 {
        font-size: 1.2rem;
    }

    .review-text {
        font-size: 0.9rem;
    }

    .reviews-stats {
        padding: 3rem 1.5rem;
    }

    .reviews-stats h2 {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-item p {
        font-size: 0.9rem;
    }

    .reviews-cta {
        padding: 3rem 1.5rem;
    }

    .reviews-cta h2 {
        font-size: 1.8rem;
    }

    .reviews-cta p {
        font-size: 1rem;
    }
}@media (max-width: 480px) {
    .reviews-hero h1 {
        font-size: 1.6rem;
    }

    .reviews-hero p {
        font-size: 0.95rem;
    }

    .reviews-intro p {
        font-size: 0.9rem;
    }

    .review-card {
        padding: 1.5rem;
        border-left-width: 3px;
    }

    .review-header h3 {
        font-size: 1.1rem;
    }

    .review-text {
        font-size: 0.85rem;
    }

    .review-author {
        font-size: 0.85rem;
    }

    .reviews-stats h2 {
        font-size: 1.6rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-item p {
        font-size: 0.8rem;
    }

    .reviews-cta h2 {
        font-size: 1.4rem;
    }

    .reviews-cta p {
        font-size: 0.9rem;
    }

    .reviews-cta .cta-button {
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
    }
}.policy-section {
    padding: 5rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f0f6 100%);
  min-height: calc(100vh - 400px);
}

.policy-container {
    max-width  :     900px;
   margin     :    0 auto;
  background: white;
   padding: 3.5rem;
    border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.policy-container h1 {
   font-size: 3rem;
   color: #1a1a1a;
    margin-bottom: 2rem;
   font-weight :700;
   line-height: 1.2;
}

.policy-container h2 {
  font-size: 2rem;
  color    :  #2e8fbb;
  margin-top: 2.5rem;
   margin-bottom: 1.2rem;
  font-weight: 700;
    border-bottom: 2px solid #e0e0e0;
	 padding-bottom: 0.8rem;
}

.policy-container h2:first-of-type{

                    margin-top:0;
}

.policy-container p

{
  color: #555;
   margin-bottom: 1.5rem;
    line-height  :   1.9;
   font-size: 1rem;
   text-align: justify;
}

.policy-container p:last-child {
  margin-bottom   : 0;
	}  @media (max-width: 1024px) {
    .policy-container {
        padding: 2.5rem;
    }

    .policy-container h1 {
        font-size: 2.5rem;
    }

    .policy-container h2 {
        font-size: 1.8rem;
    }
}@media (max-width: 768px) {
    .policy-section {
        padding: 3rem 1.5rem;
    }

    .policy-container {
        padding: 2rem;
        border-radius: 8px;
    }

    .policy-container h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policy-container h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .policy-container p {
        font-size: 0.95rem;
        line-height: 1.8;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 2rem 1rem;
    }

    .policy-container {
        padding: 1.5rem;
    }

    .policy-container h1 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }

    .policy-container h2 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
        border-bottom: 1px solid #e0e0e0;
        padding-bottom: 0.5rem;
    }

    .policy-container p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
        line-height: 1.7;
    }
}.pricing-badge  {
  display: inline-block;
  background: linear-gradient(135deg, #2e8fbb 0%, #1a5f8f 100%);
 color: white;
    padding: 0.8rem 1.5rem;
   border-radius: 8px;
   font-size  : 1.3rem;
    font-weight: 700;
 margin: 1rem 0;
  box-shadow: 0 4px 12px rgba(46, 143, 187, 0.3);
}

.pricing-details {
  background :   #f0f7fb;
                  padding: 1.2rem;
             border-radius: 8px;
       margin: 1.5rem 0;

}

.pricing-details p {
	   margin: 0.5rem 0;
       font-size: 0.95rem;
    color: #333;
}

.pricing-note {
  font-size: 0.85rem;
	 color: #666;
    font-style: italic;
        margin-top: 0.5rem; 

}