* {
      margin: 0;
  padding: 0;
	box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height: 1.6;
    color: #2c3e50;
   background: #ffffff;
}

.main-navigation-wrapper {

   background: #1a1a2e;
  padding: 1rem 2rem;
  position     :       sticky;
  top: 0;
   z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);


}

.nav-inner-container {
  max-width :      1200px;
					margin: 0 auto;
   display: flex;
	justify-content : space-between;
  align-items :      center;

}

.brand-logo-img {
  height: 45px;
     width     :       auto;
}

.navigation-links {
  display: flex;
    list-style: none;
    gap: 2.5rem;
}

.navigation-links a {
   color: #ecf0f1;
   text-decoration: none;
   font-size: 16px;
    transition: color 0.3s ease;
}

.navigation-links a:hover {
   color: #3498db;
}

.menu-toggle-btn {
   display: none;
  flex-direction  : column;
   cursor: pointer;
    gap: 5px;
}

.burger-line {
  width: 25px;
   height    :        3px;
    background: #ecf0f1;
   transition: all 0.3s;
     }

.hero-intro-block {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                    padding: 80px 20px;
  color: white;
}

.hero-content-wrapper  
  {
    max-width : 1200px;
   margin :   0 auto;
  display: flex;
   align-items    :      center;
  gap: 60px;
}

.hero-text-area {
  flex: 1;
}

.hero-text-area h1 {
    font-size: 48px;
  margin-bottom: 20px;
    font-weight: 700;
}

.hero-text-area p {

	   font-size   :18px;
	margin-bottom: 30px;
  line-height: 1.8;
     }

.primary-action-btn{
   display: inline-block;
   background: #f39c12;
  color: white;
	padding     :14px 32px;
  text-decoration: none;
   border-radius: 5px;
      font-weight   : 600;
  transition: background 0.3s;
}

.primary-action-btn:hover {
	 background: #e67e22;
}

.hero-visual-area {
   flex: 1;
}

.hero-visual-area img {
   width: 100%;
    border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.services-presentation-zone {
  padding: 80px 20px;
  background  :   #f8f9fa;
}

.content-limiter{
	margin: 0 auto;
    max-width: 1200px;
}

.services-presentation-zone h2 {
	margin-bottom   : 50px;
	text-align: center;
   color: #2c3e50;
   font-size: 38px;
}

.services-grid-layout {
     display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-item-card		{

   background: white;
    padding: 30px;
   border-radius    :    8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition  :     transform 0.3s;}

.service-item-card:hover {
  transform: translateY(-5px);
}

.service-item-card img {
    border-radius  :      6px;
  margin-bottom: 20px;
               width: 100%;
    height: 200px;
   object-fit: cover;
}

.service-item-card h3 {
	 font-size: 24px;
    margin-bottom: 15px;
	 color: #34495e;
}

.service-item-card p  
  {
         color: #7f8c8d;
  line-height:    1.7;
}

.about-approach-segment {
   padding: 80px 20px;
}

.approach-flex-container {


        display: flex;
   gap: 60px;
  align-items: center;
	}

.approach-image-side {
     flex: 1;
}

.approach-image-side img {
                    width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.approach-text-side {
       flex: 1;}

.approach-text-side h2 {
  font-size: 36px; 
        margin-bottom: 25px; 
    color    :    #2c3e50;
}



.approach-text-side p

{
    margin-bottom: 20px;
    color: #555;
    font-size: 17px;
    line-height: 1.8;
}

.secondary-action-link {
    display: inline-block;
     color: #3498db;
       text-decoration: none;
      font-weight: 600;
  margin-top: 10px;
    transition: color 0.3s;
}

.secondary-action-link:hover

{
   color: #2980b9;

}

.cta-invitation-block  {
     background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  padding: 70px 20px;
      color: white;
	
     }

.cta-inner-wrap {
    text-align: center;
	 max-width: 800px;
        margin: 0 auto;
}

.cta-inner-wrap h2 {
  font-size: 40px;
    margin-bottom:       20px;
}

.cta-inner-wrap p {
  font-size: 18px;
      margin-bottom: 30px;
}

.cta-primary-button    {
	   display: inline-block;
    background: white;
   color: #11998e;
   padding: 15px 40px;
   text-decoration  :        none;
	 border-radius: 5px;
    font-weight: 600;
    transition: transform 0.3s;
}

.cta-primary-button:hover {
  transform: scale(1.05);
}

.contact-form-area {
  padding  :        80px 20px;
  background: #f8f9fa;
}

.contact-form-area h2 {
   text-align: center;
	font-size: 38px;
   margin-bottom: 50px;
   color     :      #2c3e50;
}

.main-contact-form


{
       max-width: 700px;
   margin: 0 auto;
    background: white;
               padding: 40px;
    border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}


.form-row-wrapper {
   display: flex;
    gap:     20px;
	 margin-bottom: 25px;
}

.input-group-block {
   flex   :   1;
}

.input-group-block label     {
  display: block;
   margin-bottom: 8px;
   color: #34495e;
   font-weight: 500;


}

.input-group-block input,
.input-group-block select,
.input-group-block textarea {
    width: 100%;
  border-radius: 4px;
   padding: 12px;
    font-size: 15px;
   font-family: inherit;
    border: 1px solid #ddd;
} 

.input-group-block input:focus,
.input-group-block select:focus,
.input-group-block textarea:focus {

	outline    :       none;
       border-color: #3498db;}

.form-submit-btn {
     width: 100%;
	 background: #3498db;
  color: white;
  padding: 15px;
	border: none;
         border-radius: 5px;
	 font-size: 16px;
       font-weight: 600;
   cursor: pointer;
   transition: background 0.3s;}

.form-submit-btn:hover {
  background: #2980b9;
}

.main-footer-section {
   background: #1a1a2e;

	   color: #ecf0f1;

		padding: 50px 20px 20px;
}

.footer-content-wrap	{
  max-width     :     1200px;
               margin: 0 auto;
}

.footer-column-group {


		 display :        grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 40px;
    margin-bottom: 40px;
     }  

.footer-logo-image {
         margin-bottom     :15px;
  height: 40px;
}

.footer-brand-col p{

	   color: #bdc3c7;
	  line-height: 1.6;
	


}

.footer-links-col h4,
.footer-contact-col h4 {
  margin-bottom  :      15px;
                    color  :        #ecf0f1;
}

.footer-links-col ul {
    list-style: none;
}

.footer-links-col ul li {
    margin-bottom     :        10px;
}  

.footer-links-col a {
   color: #bdc3c7;
 text-decoration: none;
		transition: color 0.3s;
}

.footer-links-col a:hover {
  color: #3498db;
}

.footer-contact-col p {
  color: #bdc3c7;
   margin-bottom :    8px;
}

.footer-bottom-bar {
   text-align: center;
    padding-top: 20px;
               border-top :     1px solid #34495e;
    color: #95a5a6;

}@media (max-width: 768px) {
    .menu-toggle-btn {
        display: flex;
    }
    
    .navigation-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #1a1a2e;
        flex-direction: column;
        padding: 20px;
        gap: 0;
        transform: translateY(-200%);
        transition: transform 0.3s ease;
    }
    
    .navigation-links.active {
        transform: translateY(0);
    }
    
    .navigation-links li {
        padding: 10px 0;
        border-bottom: 1px solid #34495e;
    }
    
    .hero-content-wrapper {
        flex-direction: column;
    }
    
    .hero-text-area h1 {
        font-size: 32px;
    }
    
    .approach-flex-container {
        flex-direction: column;
    }
    
    .form-row-wrapper {
        flex-direction: column;
    }
}.page-header-intro     {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 20px;
  color: white;
  text-align: center;
}

.page-header-intro h1 {
   font-size: 42px;
   margin-bottom: 15px;
}

.header-subtext {
    max-width     :        700px;
    margin: 0 auto;
    font-size: 18px;
}

.story-narrative-section {
    padding: 80px 20px;
	
}

.story-layout-flex {

	    display: flex;
    gap: 50px;
  align-items    :    center;
	}

.story-text-column {
  flex: 1;
}

.story-text-column h2 {
   font-size :     36px;
  margin-bottom: 25px;
    color    :       #2c3e50; 

}

.story-text-column p {
  margin-bottom: 20px;
  color    :  #555;
  line-height  :        1.8;
    font-size: 17px;
}

.story-image-column {
   flex: 1;
}

.story-image-column img {
	width: 100%;
          border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.mission-values-block {
  padding:   80px 20px;
    background: #f8f9fa;
}

.mission-values-block h2		{
               text-align:  center;
    font-size: 38px;
   margin-bottom: 50px;
	 color: #2c3e50;
}

.values-grid-container {
    display   : grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap:        35px;
}

.value-card-item {

	    background: white;
   padding: 35px;
    border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);

}

.value-card-item h3   {
   font-size: 24px;
    margin-bottom: 15px;
    color    :  #34495e;
}

.value-card-item p {
   color: #7f8c8d;
	line-height:   1.7;
}

.approach-methodology-area {
	padding: 80px 20px;
}


.methodology-flex-wrap {
   display: flex; 
		gap: 60px; 
	    align-items    :    center;
}

.methodology-visual-side  {
  flex  :   1;
}

.methodology-visual-side img {
  width: 100%;
  border-radius  :  10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.methodology-content-side
{
	   flex     :     1;
     }

.methodology-content-side h2 {
   font-size: 36px;
 margin-bottom:     25px;
          color: #2c3e50;
}

.methodology-content-side p {
   margin-bottom: 20px;
  color: #555;
   line-height: 1.8;
    font-size: 17px;
}

.experience-showcase-segment {
  padding: 80px 20px;
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
   color: white;
}

.experience-showcase-segment h2 {
    text-align: center;
  margin-bottom     :  50px;
   font-size    :     38px;
}

.experience-stats-row {
   display : flex;
    justify-content: center;
  gap: 80px;
       flex-wrap: wrap;
}

.stat-box-element {
  text-align: center;
}

.stat-number-display {
  font-size: 48px;
   font-weight: 700;
   margin-bottom: 10px;
}

.stat-box-element p {
   font-size: 18px;
}

.programs-overview-zone {
		padding: 80px 20px;

}

.programs-overview-zone h2 {
   text-align: center;
   font-size    :  38px;
    margin-bottom: 50px;
   color    :      #2c3e50;
}

.programs-showcase-grid {
       display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap  :     40px;
	}

.program-feature-box {
  background  :   white;
   border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.program-feature-box:hover {
     transform: translateY(-5px);
}

.program-feature-box img {
  width: 100%;
   height: 200px;
  object-fit: cover;
}

.program-feature-box h3 {
     font-size: 24px;
    margin: 20px 25px 15px;
   color: #34495e;
}

.program-feature-box p {
   margin: 0 25px 25px;
        color: #7f8c8d;
                    line-height: 1.7;
}

.cta-about-invitation {
                    padding: 70px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}



.cta-about-inner {
    text-align: center;
  max-width   :        800px;
               margin: 0 auto;
}

.cta-about-inner h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-about-inner p {
  margin-bottom: 30px;
    font-size: 18px;
}

.cta-about-button {
   display: inline-block;
   background: white;
   color: #667eea;
   padding: 15px 40px;
          text-decoration: none;
    border-radius: 5px;
   font-weight: 600;
   transition: transform 0.3s;
}

.cta-about-button:hover     {
  transform: scale(1.05);
}

.thankyou-main-container {
  padding    :       80px 20px;
  min-height: 60vh;
}

.thankyou-content-box {
    max-width: 800px;
   margin: 0 auto;
  text-align: center;
}

.success-icon-wrapper {
        margin-bottom: 30px;
}

.success-icon-wrapper svg {
  color: #11998e;
}

.thankyou-content-box h1 {


    font-size:       42px;
    margin-bottom: 20px;
			color: #2c3e50;
}

.thankyou-main-text {
       font-size: 18px;
  color: #555;
   margin-bottom: 40px;
   line-height: 1.8;
}

.thankyou-info-block {
   background: #f8f9fa;
	 -webkit-border-radius: 8px;
   padding: 30px;
   border-radius: 8px;
   -moz-border-radius: 8px;
  margin-bottom: 40px;
       text-align: left; 

}

.thankyou-info-block p {
  margin-bottom: 15px;
  color: #34495e;
  font-weight:     500;
}

.info-list-items {
  list-style :  none;
    padding-left: 0;
}

.info-list-items li {
		padding: 10px 0;
  color: #555;
       border-bottom: 1px solid #dee2e6;
}

.info-list-items li:last-child {
			border-bottom: none;
	
}

.info-list-items a {
	 color: #3498db;
                    text-decoration: none;
}

.info-list-items a:hover {
    text-decoration: underline;
	
}

.thankyou-actions-row {
   display: flex;
  gap: 20px;
  justify-content: center;
   flex-wrap: wrap;
}

.primary-return-btn {
    display:        inline-block;
	background: #3498db;
   color: white;
  padding: 14px 32px;
      text-decoration: none;
    border-radius: 5px;
   font-weight   :    600;
   transition: background 0.3s;
}

.primary-return-btn:hover {
	 background: #2980b9;
}

.secondary-return-btn {
	 display   :    inline-block; 
	   background: transparent; 
	   color: #3498db; 
	    padding     : 14px 32px; 
	  text-decoration   :  none; 
	   border-radius: 5px; 
	  border:     2px solid #3498db; 
	   font-weight: 600; 
	   transition: all 0.3s;
}

.secondary-return-btn:hover {
  background   :  #3498db;
	 color :    white;
}

.additional-resources-area
	{
    background: #f8f9fa;
    padding: 80px 20px;
}

.additional-resources-area h2  {
    text-align: center;
	font-size : 38px;
	 margin-bottom: 50px;
   color: #2c3e50;
	}

.resources-grid-layout {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 35px;
}


.resource-item-card {
    background: white;
    padding :     35px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.resource-item-card h3	{
    font-size: 24px;
       margin-bottom: 15px;
         color:       #34495e;
} 

.resource-item-card p {

   color: #7f8c8d;

    line-height    :   1.7;

}@media (max-width: 768px) {
    .story-layout-flex {
        flex-direction: column;
    }
    
    .methodology-flex-wrap {
        flex-direction: column;
    }
    
    .experience-stats-row {
        gap: 40px;
    }
    
    .thankyou-actions-row {
        flex-direction: column;
    }
    
    .page-header-intro h1 {
        font-size: 32px;
    }
}.policySection {
   padding    :    80px 2rem;
         background: #f8f9fa;
}

.policyContainer {
   max-width: 800px;
   margin :        0 auto;
  text-align: left;




}

.policyContainer h2 {
   font-size: 2.5rem;
  color: #2c3e50;
   margin-bottom: 1.5rem;
   font-weight: 700;
}

.policyContainer p {
    color: #7f8c8d;
    margin-bottom  :      1.5rem;
	line-height: 1.7;
   font-size     :     1.1rem;
}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}