* {
   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     :        #f8f9fa;
}

.main-navigation    {
    background: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
   position: sticky;
   top: 0;
  z-index: 1000;
}

.nav-wrapper {
  max-width   :        1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-section {
     display: flex;
   align-items: center;
} 

.site-logo {
   height: 45px;
                    width: auto;
}

.nav-links    {
  display: flex;
  gap: 2rem;
}

.nav-links a {
    text-decoration    :  none;
    color: #2c3e50;
  font-weight  :    500;
    transition: color 0.3s;
}

.nav-links a:hover {
   color: #3498db;
}  

.mobile-trigger {
  display    :   none;
	 background: none;
	border: none;
        cursor: pointer;
  flex-direction: column;
     gap: 5px;
}

.burger-line {


    width: 25px;
  -webkit-transition: 0.3s;
   height: 3px;
    background: #2c3e50;
    transition: 0.3s;
} 

.hero-section {
   display: grid;

  grid-template-columns: 1fr 1fr;

    gap     :     3rem;

	max-width: 1200px;

  margin: 0 auto;

    padding: 4rem 2rem;

	align-items: center;

}

.hero-content h1 {
  font-size: 2.5rem;
    color: #1a252f;
    margin-bottom: 1rem;
	line-height: 1.2;
}

.hero-subtitle {
   font-size: 1.2rem;
   color   :       #546e7a;
  margin-bottom: 2rem;
	
}

.hero-actions {
  display   :  flex;
 gap: 1rem;
}

.primary-button, .secondary-button		{
	text-decoration     :  none;

  -moz-border-radius: 5px;

  border-radius  :     5px;

  -webkit-border-radius: 5px;

    padding  : 0.9rem 1.8rem;

  font-weight: 600;

  transition: all 0.3s;

  display    :inline-block;
}

.primary-button {
  background: #2980b9;
	 color  :     #fff;
}

.primary-button:hover
	{
  background: #3498db;
     transform: translateY(-2px);
     box-shadow: 0 4px 12px rgba(41,128,185,0.3);
}

.secondary-button {
    background   :     transparent;
    color     :#2980b9;
   border: 2px solid #2980b9;
}

.secondary-button:hover {

	background: #2980b9;
   color :#fff;


}

.hero-visual img {
	 width: 100%;
        height: auto;
  border-radius  :        8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);


}

.intro-block {
     background: #fff;
    padding:4rem 2rem; 
	
     }

.container-width {
  max-width: 1200px;
    margin: 0 auto;

}

.intro-block h2 {


  font-size: 2rem;
	 text-align: center;
    margin-bottom: 1.5rem;
    color: #1a252f; 
}

.intro-block p     {
   text-align: center;
    font-size   : 1.1rem;
    color: #546e7a;
  max-width: 800px;
  margin     :    0 auto 3rem;
}


.stats-row {
   display: flex;
       justify-content:    space-around;
    flex-wrap :       wrap;
  gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
		 text-align: center;
  display: flex;
  flex-direction: column;
}

.stat-number {
      font-size: 3rem;
    font-weight: 700;
    color: #2980b9;
}

.stat-label {

	    font-size: 1rem;
    color: #546e7a;
    margin-top: 0.5rem;


     }

.services-showcase {
    padding: 4rem 2rem;
	  background :    #ecf0f1;

}

.services-showcase h2 {
     text-align: center;
               font-size: 2rem;
    margin-bottom   :       3rem;
  color:  #1a252f;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card	{
   background: #fff;
               border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
   transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-card img {
	width: 100%;
  height: 220px;
   object-fit: cover;
}

.service-card h3 {
  font-size: 1.3rem;
 color   :#1a252f;
    padding: 1.5rem 1.5rem 0.5rem;
}

.service-card p {
  padding: 0 1.5rem 1.5rem;
   color: #546e7a;
	line-height: 1.7;
}

.approach-section    {
      padding: 4rem 2rem;
         background: #fff;
     }

.approach-content 
 {
   display: grid; 
   grid-template-columns:1fr 1fr; 
  gap :3rem; 
    align-items:  center;
}

.approach-text h2 {
   font-size: 2rem;
	   margin-bottom: 1.5rem;
	  color: #1a252f;
}

.approach-text p {
   margin-bottom: 1.5rem;
    color: #546e7a;
    line-height: 1.7;
}

.approach-list {
 list-style: none;
       padding: 0;
}


.approach-list li   {
   padding-left  :1.5rem;
   color   :      #546e7a;
   position:  relative;
    line-height: 1.6;
   padding    : 0.8rem 0;
}



.approach-list li:before 
 {
  content: "✓";
	  position     :    absolute;
	  left: 0;
	   color: #27ae60;
	    font-weight: bold;
}

.approach-image img {
   width :  100%;
    border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.cta-section {
  background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
    padding: 5rem 2rem;
         text-align: center;
}

.cta-content h2	{

   font-size: 2.5rem;
    color: #fff;
  margin-bottom: 1rem;}

.cta-content p {

	color: #ecf0f1;
  font-size: 1.2rem;
  margin-bottom  :  2rem;
     }

.cta-button {
	    background: #fff;
   color: #2980b9;
        padding: 1rem 2.5rem;
    text-decoration  :      none;
  border-radius: 5px;
   font-weight   :  700;
  font-size: 1.1rem;
  display: inline-block;
   transition: all 0.3s;}

.cta-button:hover    {
	  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.webinar-info {
         padding  :    4rem 2rem; 
   background   :      #f8f9fa;
}

.webinar-info h2 {
        text-align: center;

	  font-size: 2rem;

		 margin-bottom    :       3rem;

	  color: #1a252f;
}

.events-container {
		 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.event-box {
      background: #fff;
   padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid #2980b9;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
     }

.event-box h3 {
    color    :    #1a252f;
   margin-bottom   :    0.5rem;
	font-size: 1.3rem;
}

.event-date
	{
   color  :       #e74c3c;
   font-weight   : 600;
   margin-bottom     : 1rem;
}

.event-box p {
      color: #546e7a;
   line-height: 1.7;
}

.contact-section {
   padding :     4rem 2rem;

	   background: #fff;
}

.contact-section h2

{
  text-align: center;
   font-size:        2rem;
    margin-bottom: 3rem;
    color:       #1a252f;
}

.contact-layout {
	display: grid;
	grid-template-columns    :   1fr 1.5fr;
  gap: 3rem;
}

.contact-info h3 {
	   color: #2980b9;
                    font-size: 1.5rem;
   margin-bottom: 1rem;


}



.info-line {
    margin-bottom:       0.8rem;
	 color:  #546e7a;
}

.contact-description {
    line-height: 1.7;
    margin-top: 1.5rem;
   color: #546e7a;
}

.contact-form {
      background: #f8f9fa;
       -webkit-border-radius: 8px;
    padding: 2rem;
    border-radius: 8px;}

.form-group{
   margin-bottom: 1.5rem;
}



.form-group label {
	 margin-bottom: 0.5rem;
    font-weight: 500;
    display    : block;
  color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
		width    :   100%;
  padding: 0.8rem;
    border: 1px solid #bdc3c7;
    border-radius    :  4px;
  font-size     :    1rem;
    font-family: inherit;
    transition:   border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
	 border-color: #2980b9;

}

.submit-btn {
	border: none;
    width: 100%;
  background: #2980b9;
    font-size:1rem;
    font-weight: 600;
 color: #fff;
	cursor    :       pointer;
  transition: all 0.3s;
   border-radius: 5px;
   padding: 1rem 2rem;
}

.submit-btn:hover {
  background: #3498db;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(41,128,185,0.3);
}

.site-footer {
   background: #1a252f;
   color: #ecf0f1;
               padding: 3rem 2rem 1rem;
}

.footer-content {
   max-width  :   1200px;
    margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
    height: 40px;
   margin-bottom  :        1rem;
  filter: brightness(0) invert(1);
}

.footer-description {
    color: #95a5a6;
  line-height :     1.7;
}

.footer-column h4 {
  color: #fff;
   margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-links {
   list-style :    none;


}

.footer-links li {
  margin-bottom     :     0.5rem;
}

.footer-links a  {
  color: #95a5a6;
    text-decoration: none;
    transition :        color 0.3s;
}

.footer-links a:hover {
   color: #3498db;
}  

.footer-column p {
    color: #95a5a6;
     line-height: 1.7;
}

.footer-bottom
	{
		text-align: center;
   padding-top: 2rem;
   border-top: 1px solid #34495e;
   color: #95a5a6;}@media (max-width: 768px) {
.mobile-trigger {
display: flex;
}

.nav-links {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: #fff;
flex-direction: column;
padding: 1rem 2rem;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
display: none;
}

.nav-links.active {
display: flex;
}

.hero-section {
grid-template-columns: 1fr;
padding: 2rem 1rem;
}

.hero-content h1 {
font-size: 2rem;
}

.hero-actions {
flex-direction: column;
}

.approach-content {
grid-template-columns: 1fr;
}

.contact-layout {
grid-template-columns: 1fr;
}

.services-grid {
grid-template-columns: 1fr;
}

.events-container {
grid-template-columns: 1fr;
}
}

@media (max-width: 480px) {
.hero-content h1 {
font-size: 1.6rem;
}

.stat-number {
font-size: 2rem;
}

.cta-content h2 {
font-size: 1.8rem;
}
}.policySection {
   padding: 80px 2rem;
  background: #f8f9fa;
}

.policyContainer {
  text-align     :   left;
    max-width: 800px;
    margin :   0 auto;
}

.policyContainer h2

{
   font-size: 2.5rem;

  color   :        #2c3e50;

	 margin-bottom: 1.5rem;

  font-weight    :      700;
}

.policyContainer p {
   line-height: 1.7;
    margin-bottom: 1.5rem;
  color: #7f8c8d;
    font-size     :       1.1rem; 

}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}.about-hero {
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
   padding: 5rem 2rem;
   text-align: center;
  color: #fff;

}

.about-hero-content h1  
  {

	          font-size: 3rem;
       margin-bottom: 1.5rem;
}

.hero-lead {
	font-size: 1.3rem;
  max-width: 800px;
    margin:   0 auto;
    line-height: 1.8;
  color: #ecf0f1;
}

.mission-block {

	     padding: 4rem 2rem;
        background: #fff;


}

.mission-layout {
   display: grid;
  grid-template-columns: 1.2fr 1fr;
   gap: 3rem;
  align-items: center;
}

.mission-text h2 {
	font-size: 2.2rem;
    margin-bottom :    1.5rem;
    color: #1a252f;
}

.mission-text p {
    margin-bottom: 1.3rem;
	color    :       #546e7a;
   line-height: 1.8;
  font-size: 1.05rem;
}

.mission-visual img


{
               width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.values-section {
  padding: 4rem 2rem;
	 background: #f8f9fa;
}

.values-section h2 {
  text-align     :center;
  font-size: 2.2rem;
    margin-bottom  : 3rem;
  color: #1a252f;
}

.values-grid {
       display    :      grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap :     2rem;
     }

.value-item {
  background: #fff;
	 padding: 2rem;
    border-radius   : 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s;
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.value-item h3 {
   color   :     #2980b9;
   margin-bottom: 1rem;
    font-size: 1.4rem;
}

.value-item p {
   color: #546e7a;
    line-height: 1.7;
}

.story-section {


  padding:       4rem 2rem;
   background: #fff;

}

.story-section h2  {
    text-align: center;
                    font-size :   2.2rem;
	margin-bottom: 3rem;
   color   : #1a252f;
}

.story-content {
     display: grid;
		grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
  align-items: start;


}

.story-content img

{
    width: 100%;
   border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.story-text p {
   margin-bottom: 1.5rem;
   color : #546e7a;
  line-height: 1.8;
  font-size: 1.05rem;
	}

.approach-details {
	   padding  :     4rem 2rem;
    background: #ecf0f1; 
	
	}

.approach-details h2 {
         text-align: center;
    font-size: 2.2rem;
	margin-bottom: 3rem;
   color: #1a252f;
}

.approach-steps {
        display   :   grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap   :2rem;
}

.step-card

{
      background: #fff;
               padding: 2rem;
    border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
     position: relative;
}

.step-number {
		top: -15px;
   font-weight: 700;
   width: 50px;
   background: #2980b9;
    display: flex;
   right: 20px;
  position: absolute;
         align-items: center;
    justify-content: center;
	font-size     :     1.5rem;
    border-radius  :     50%;
   height: 50px;
	 color     :      #fff; 

}

.step-card h3 {


  color: #1a252f;
    margin-bottom: 1rem;
  font-size  :1.3rem;

}

.step-card p {
    color: #546e7a;
        line-height: 1.7;
}  

.expertise-area {
	 padding   :  4rem 2rem;
      background: #fff;
}


.expertise-area h2 {
       text-align: center;
  font-size     :     2.2rem;
   margin-bottom: 3rem;
	 color: #1a252f;


} 

.expertise-columns
{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
} 

.expertise-col {
  background  :        #f8f9fa;
   padding: 2rem;
    border-left: 4px solid #e74c3c;
  border-radius: 4px;
}

.expertise-col h3     {
  color: #1a252f;
    margin-bottom: 1rem;
   font-size:       1.4rem;
}

.expertise-col p {
   color: #546e7a;
   line-height: 1.7;

}

.commitment-block {
 padding: 4rem 2rem;
    background: #2c3e50;
                    color: #fff;
}

.commitment-content h2 {
  text-align: center;
  font-size: 2.2rem;
   margin-bottom: 1.5rem;
                    color: #fff;


}

.commitment-content > p {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 2rem;
    color: #ecf0f1;
}

.commitment-list {
    max-width :   800px;
   margin: 0 auto;
          list-style: none;
  padding: 0;
}

.commitment-list li	{
   padding: 1rem 0;
  padding-left: 2rem;
   position: relative;
  color: #ecf0f1;
   line-height: 1.7;
  font-size: 1.05rem;
}

.commitment-list li:before {
  content: "✓";
  position     :   absolute;
  left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.3rem;
}



.final-cta {
   padding   :    5rem 2rem;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    text-align: center;
}

.final-cta-wrapper h2 {
      color:     #fff;
    font-size: 2.5rem;
	margin-bottom:        1rem;
	
}

.final-cta-wrapper p {


	 color: #ecf0f1;
  font-size: 1.2rem;
               margin-bottom: 2rem;
      max-width: 700px;
  margin-left: auto;
   margin-right: auto;
	}

.cta-action-btn {
    background: #fff;
   color: #e74c3c;
    padding: 1rem 2.5rem;
   text-decoration  :none;
	border-radius: 5px;
  font-weight :       700;
   font-size: 1.1rem;
  display    :     inline-block;
   transition: all 0.3s;
}

.cta-action-btn:hover {
     transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);


}

.thankyou-hero


{

  background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
   padding: 5rem 2rem;
	text-align: center;
  color: #fff;

}

.thankyou-container {
   max-width     :        700px;
   margin  :        0 auto;
}

.success-icon {
   margin: 0 auto 2rem;
    display:   flex;
  justify-content     :     center;
}

.thankyou-hero h1 {
	  font-size: 3rem;
                    margin-bottom  :    1.5rem;

}

.thankyou-message
{
   color: #ecf0f1;
  line-height: 1.8;
  font-size: 1.2rem;
}

.next-steps {

  padding: 4rem 2rem;
   background: #fff;}

.next-steps h2 {
	 text-align: center;
   font-size: 2.2rem;
  margin-bottom: 3rem;
	color: #1a252f;
}

.steps-timeline

{
   max-width: 900px;
	margin: 0 auto;
}

.timeline-item 
 {
   display: grid;
	grid-template-columns: 80px 1fr;
		gap: 2rem;
	 margin-bottom :        3rem;
}

.timeline-marker {
   width  :    60px;
  height: 60px;
   background: #2980b9;
	color   :        #fff;
      border-radius: 50%;
	 display: flex;
        align-items: center;
    justify-content: center;
    font-size: 1.8rem;
   font-weight: 700; 

}

.timeline-content h3 {
  color    :     #1a252f;
    margin-bottom: 0.8rem;
  font-size: 1.4rem;


}

.timeline-content p {
  color   :   #546e7a;

   line-height: 1.7;


}

.while-waiting {
	     padding:    4rem 2rem;
  background: #f8f9fa;}

.while-waiting h2 {
    text-align: center;
    font-size: 2.2rem;
   margin-bottom: 3rem;
    color: #1a252f;

}

.waiting-cards  {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
         gap    : 2rem;
}

.waiting-card {
  background: #fff;
    padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.waiting-card h3 {


   color    :        #2980b9;
  margin-bottom    : 1rem;
	font-size: 1.3rem;


}

.waiting-card p     {
  color: #546e7a;
	margin-bottom: 1.5rem;
   line-height: 1.7;
}

.card-link
	{
                    color: #2980b9;
   text-decoration: none;
   font-weight: 600;
  transition: color 0.3s;
}

.card-link:hover		{
  color:        #3498db;
 text-decoration: underline;
}

.contact-info-section {
	padding: 4rem 2rem;
    background: #fff;
}

.info-box {
  max-width: 700px;
  margin: 0 auto;
		 text-align: center;
}

.info-box h2
	{
  font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.info-box > p {
   font-size: 1.1rem;
   color: #546e7a;
  margin-bottom     :  2rem;
}  

.contact-details 
 {
    display:       grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap   :      2rem;
	 margin-top: 2rem;
}

.detail-item

{
 background  :       #f8f9fa;
   padding    :1.5rem;
	border-radius: 8px;
	}

.detail-item strong {
     color :  #2980b9;
   display: block;
   margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.detail-item p {
        color: #546e7a;
  line-height: 1.6; 

}

.return-home {
    padding: 4rem 2rem;
   background: #ecf0f1;
   text-align: center;
}

.return-wrapper p {
       font-size  :   1.1rem;
    color: #546e7a;
    margin-bottom: 2rem;
}

.return-buttons  {
   display: flex;
	gap: 1rem;
    justify-content: center;
  flex-wrap:    wrap;
}

.btn-primary-alt, .btn-secondary-alt {
    padding:    0.9rem 2rem;
	  text-decoration: none;
	   border-radius: 5px;
	    -moz-border-radius: 5px;
	   font-weight: 600;
	    transition: all 0.3s;
	      display: inline-block;

	}

.btn-primary-alt {
      color: #fff;
        background: #2980b9;

}

.btn-primary-alt:hover {
	background: #3498db;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(41,128,185,0.3);


}

.btn-secondary-alt {
	  background: transparent;
	    color: #2980b9;
	      border: 2px solid #2980b9;
     }

.btn-secondary-alt:hover {
  background: #2980b9;
    color: #fff;
}@media (max-width: 768px) {
.about-hero-content h1 {
font-size: 2rem;
}

.hero-lead {
font-size: 1.1rem;
}

.mission-layout {
grid-template-columns: 1fr;
}

.story-content {
grid-template-columns: 1fr;
}

.approach-steps {
grid-template-columns: 1fr;
}

.expertise-columns {
grid-template-columns: 1fr;
}

.timeline-item {
grid-template-columns: 1fr;
gap: 1rem;
}

.timeline-marker {
width: 50px;
height: 50px;
font-size: 1.5rem;
}

.thankyou-hero h1 {
font-size: 2rem;
}

.waiting-cards {
grid-template-columns: 1fr;
}

.contact-details {
grid-template-columns: 1fr;
}

.return-buttons {
flex-direction: column;
}
}