* {
    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;
}

.topbar-navigation {
  background: #1a252f;
    padding: 1rem 0;
   position: sticky;
	top: 0;
         z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navigation-wrapper {
   max-width: 1200px;
    margin: 0 auto;
   padding: 0 20px;
    display: flex;
                    justify-content: space-between;
    align-items  :     center;
}

.brand-section .brand-image {
    height: 45px;
   width: auto;
    display:  block; 

}

.links-container {
   display: flex;
    gap: 2rem;
}

.nav-item {
	font-weight: 500;
   transition: color 0.3s;
  color: #ecf0f1;
   font-size: 16px;
   text-decoration: none;
}

.nav-item:hover {
  color: #3498db;
}

.mobile-trigger {


  display: none;
    background: transparent;
   border    :        none;
  cursor   :      pointer;
   flex-direction: column;
  gap: 5px;
    padding:    5px;
}

.burger-line	{
  width: 25px;
   height: 3px;
  background: #ecf0f1;
  transition: all 0.3s;
   border-radius: 3px;

}


.hero-block {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

	    padding: 80px 20px;

		color: white;
}

.hero-content-wrap {
   align-items: center; 
   grid-template-columns: 1fr 1fr; 
    max-width: 1200px; 
  display: grid; 
   gap: 50px; 
 margin: 0 auto;
}

.main-headline {
   font-size: 48px;
   margin-bottom: 20px;
   line-height: 1.2;
  font-weight: 700;
}

.hero-description {
    font-size: 19px;
   margin-bottom: 30px;
   line-height: 1.7;
   opacity: 0.95;
}

.hero-buttons {
   display: flex;
   gap: 15px;
  flex-wrap: wrap;
}

.primary-cta, .secondary-cta {
    padding:    14px 32px;
    -moz-border-radius: 6px;
    text-decoration: none;
    -webkit-border-radius: 6px;
  border-radius: 6px;
   font-weight: 600;
     transition   :      all 0.3s;
    display: inline-block;
}

.primary-cta   {
  background: #fff;
         color: #667eea;
}

.primary-cta:hover {

	  transform: translateY(-2px);

  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
     }

.secondary-cta {
		 background: transparent;

   color: white;

          border: 2px solid white; 
	
     }

.secondary-cta:hover     {
  background: rgba(255,255,255,0.1);
}

.hero-img	{
  width :       100%;
  height: auto;
   border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.intro-segment 
 {
   padding     : 80px 20px;
    background: #f8f9fa;
}

.segment-container {
         max-width: 1200px;
               margin: 0 auto;
}

.section-header {
  font-size  :  38px;
 text-align: center;
  margin-bottom: 20px;
	color: #2c3e50;
  font-weight: 700;
}

.intro-text {


    text-align: center;
   font-size: 18px;
  max-width   : 800px;
   margin: 0 auto 50px;
   color: #555;
    line-height: 1.8;
     }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
       gap: 30px;
  margin-top:      40px;
}

.feature-box {
	    background: white;
  padding     :35px;
    border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.feature-box:hover   {
	  transform: translateY(-5px); 

	}

.feature-title {
    font-size    :   24px;
     margin-bottom: 15px;
  color: #667eea;
   font-weight: 600;


}

.feature-desc {

	    color: #666;
  line-height   :    1.7;
  font-size: 16px;
     }

.visual-proof-area {
	padding: 80px 20px;
	background: white;
}

.proof-container {
   max-width: 1200px;
	margin     :     0 auto;
  display :  grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
   align-items: center;
}



.proof-visual {
         width:       100%;
   height: auto;
    border-radius:8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.proof-heading {
  font-size: 36px;
   margin-bottom: 25px;
   color: #2c3e50;
    font-weight: 700;
}

.proof-paragraph {
   font-size: 17px; 
	margin-bottom: 20px; 
   color    : #555; 
  line-height: 1.8;
}

.methodology-block {
	padding: 80px 20px;
   background: #1a252f;
   color: white;
}

.method-wrap {
   max-width: 1200px;
   margin    :        0 auto;
}

.method-main-title	{
   font-size: 38px;
   text-align: center;
    margin-bottom    :      60px;
   font-weight :   700;
}

.method-steps  
  {
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
       gap: 30px;
}

.step-card	{
  background: rgba(255,255,255,0.05);
	   padding: 30px;
	    border-radius: 8px;
	  border: 1px solid rgba(255,255,255,0.1);
	  transition: all 0.3s;
     }

.step-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-3px);
}

.step-number {
        font-size: 48px;

    font-weight: bold;

    color: #667eea;

  margin-bottom: 15px;
}

.step-name {
   font-size: 22px;
    margin-bottom: 12px;
               font-weight: 600;
}

.step-info

{
    color: #ddd;
  line-height: 1.7;
  font-size: 15px;
}

.stats-showcase {
  padding: 70px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color  :    white;


}

.stats-inner {
	max-width: 1200px;
  margin: 0 auto;
}

.stats-title{
  font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
  font-weight: 700; 

}

.stats-row {
    display: grid; 
	  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
	  gap: 40px; 
	  text-align: center;
}

.stat-value {
	font-size: 56px;
	  font-weight  :    bold;
	   margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
   opacity: 0.9;
}

.image-content-split {
      padding: 80px 20px;
  background: #f8f9fa; 



}

.split-container {
      max-width: 1200px;
  margin: 0 auto;
    display: grid;
   grid-template-columns: 1fr 1fr;
         gap :    50px;
    align-items   :     center;

}

.split-image {
  width: 100%;
    height: auto;
   border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.split-heading {
   font-size: 36px;
    margin-bottom: 25px;
	 color: #2c3e50;
          font-weight: 700; 
	
}

.split-content {
    font-size :    17px;

	  margin-bottom: 20px;

	    color: #555;

	          line-height: 1.8;
}

.cta-banner {
    padding: 70px 20px;
    background: #e74c3c;
  color: white;
  text-align: center;
}


.cta-content-box


{
	max-width: 800px;
   margin: 0 auto;
}

.cta-headline {
   font-size: 42px;
  margin-bottom     :      20px;
    font-weight: 700;
}



.cta-subtext {
  font-size :19px;
   margin-bottom: 30px;
   line-height: 1.7;
  opacity: 0.95;
}

.cta-action-btn {
  display    :        inline-block;

	    padding:        16px 40px;

	   background: white;

	    color: #e74c3c;

	          text-decoration: none;

	    border-radius: 6px;

	  font-weight     :   600;

	    font-size: 18px;

	    transition: all 0.3s;
}

.cta-action-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.services-overview {
  padding     :   80px 20px;
    background: white;

}

.services-wrap {
  max-width: 1200px;

    margin: 0 auto;
}

.services-heading {
  font-size: 38px;
  text-align: center;
  margin-bottom: 50px;
   color     :#2c3e50;
	font-weight: 700;
}

.services-layout {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 30px;
}

.service-block {
	 background: #f8f9fa;
         padding: 30px;
   border-radius: 8px;
  border-left: 4px solid #667eea;
    transition: all 0.3s;
}

.service-block:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transform: translateX(5px);
}

.service-name {
  font-size: 22px;
  margin-bottom: 15px;
  color: #2c3e50;
 font-weight   :600;
}

.service-description {
  color: #666;
  line-height: 1.7;
    font-size: 16px;
}

.additional-visual-section {
    padding: 0;
   position     : relative;
}

.visual-section-container {
   position: relative;
       max-width   :  100%;
}

.full-width-visual {
  width: 100%;
               height: 500px;
  object-fit: cover;
  display: block;
}

.visual-overlay-text {
  position: absolute;
    top: 50%;
   left     :      50%;
  transform: translate(-50%, -50%);
   text-align: center;
   color     :     white;
  background: rgba(0,0,0,0.6);
  padding: 40px;
               border-radius  : 8px;
    max-width: 700px;
  width: 90%;
}

.overlay-title {
  font-size    : 32px;
         margin-bottom: 15px;
   font-weight: 700;
}

.overlay-description {
   font-size: 18px;
   line-height: 1.7;
}

.contact-section
	{
   padding: 80px 20px;
  background: #f8f9fa;
}

.contact-wrapper {
    max-width: 1200px;
	    margin: 0 auto;
	    display: grid;
	   grid-template-columns    : 1fr 1.2fr;
	   gap: 50px;
}

.contact-main-heading {
	font-size: 36px;
    margin-bottom     :20px;
	 color: #2c3e50;
  font-weight: 700;
}


.contact-intro-text {
   font-size: 17px;
    margin-bottom: 30px;
   color: #555;
    line-height: 1.8;
}



.contact-details-list {
  display: flex;
               flex-direction: column;
	gap: 20px;
}

.contact-detail-item strong {
    display: block;
  margin-bottom: 8px;
  color :#667eea;
    font-size: 18px;
}

.contact-detail-item p {

	   color: #666; 
   line-height: 1.6;

}

.main-contact-form {
    background: white;
  padding: 40px;
    border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.form-group {
   margin-bottom    :20px;
}

.form-group label {


  display     :block;
    margin-bottom :8px;
	color: #2c3e50;
    font-weight :    500;
   font-size: 15px;
	}

.form-input, .form-select, .form-textarea {
  width: 100%;
   padding: 12px 15px;
  border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 15px;
  font-family  :        inherit;
  transition  :       border-color 0.3s;
	

}

.form-input:focus, .form-select:focus, .form-textarea:focus  
  {
    outline: none;
   border-color: #667eea;
}

.form-textarea {
   resize: vertical; 
   min-height: 120px;
}

.form-submit-btn {
  width: 100%;
   padding: 14px;
     background: #667eea;
    color: white;
    border: none;
   border-radius: 5px;
    font-size: 17px;
  font-weight: 600;
  cursor     :       pointer;
    transition: all 0.3s;
}

.form-submit-btn:hover     {
  background: #5568d3; 
  transform: translateY(-2px); 
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.site-footer {
  padding:     50px 20px 20px;
  color: white;
 background: #1a252f;
}

.footer-content {
      max-width: 1200px;
    margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
	}

.footer-logo {
	height: 50px;
    width: auto;
         margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-text {
    color: #bbb;
               line-height: 1.7;
    font-size: 15px;
	margin-bottom: 10px;
}

.footer-heading {
    font-size: 20px;
  margin-bottom: 20px;
    color: white;
 font-weight: 600;


}

.footer-links {
    list-style: none;
}

.footer-links li {
	  margin-bottom   :      10px;
     }

.footer-links a {
  color: #bbb;
   text-decoration: none;
  transition: color 0.3s;
    font-size: 15px;
}

.footer-links a:hover
{
     color: #667eea;

}



.footer-bottom {
          max-width: 1200px;
  margin: 0 auto;
    padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.copyright-text {
               color: #888;
    font-size: 14px;
}@media (max-width: 768px) {
    .mobile-trigger {
        display: flex;
    }
    
    .links-container {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #1a252f;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        display: none;
        box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    }
    
    .links-container.active {
        display: flex;
    }
    
    .nav-item {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .hero-content-wrap {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .main-headline {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 17px;
    }
    
    .proof-container {
        grid-template-columns: 1fr;
    }
    
    .split-container {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-header {
        font-size: 28px;
    }
    
    .proof-heading, .split-heading {
        font-size: 28px;
    }
    
    .method-main-title {
        font-size: 28px;
    }
    
    .services-heading {
        font-size: 28px;
    }
    
    .stats-title {
        font-size: 28px;
    }
    
    .cta-headline {
        font-size: 30px;
    }
    
    .overlay-title {
        font-size: 24px;
    }
    
    .full-width-visual {
        height: 350px;
    }
    
    .visual-overlay-text {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .main-headline {
        font-size: 26px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .primary-cta, .secondary-cta {
        width: 100%;
        text-align: center;
    }
    
    .main-contact-form {
        padding: 25px;
    }
    
    .stat-value {
        font-size: 42px;
    }
}.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;
    }
}.about-hero-area {
  background: linear-gradient(to right, #2c3e50, #34495e);
  padding: 100px 20px;
	 text-align: center;
   color: #fff;}

.about-hero-inner {
      max-width: 900px;
  margin: 0 auto;
}


.about-main-title {
  font-size: 52px;
   margin-bottom: 20px;
   font-weight: 700;
}

.about-hero-text {
	  font-size: 21px;
  line-height: 1.6;
   opacity   :        0.92;
	}


.story-section {
      padding: 90px 20px;
   background:       #ffffff;
	}

.story-wrapper {
   max-width: 1200px;
    margin: 0 auto;
   display: grid;
    grid-template-columns :  1.2fr 1fr;
    gap: 55px;
  align-items: center;
}

.story-heading   {
   font-size   :      40px;
   margin-bottom: 30px;
   color: #2c3e50;
    font-weight: 700;
}

.story-paragraph {
	    font-size    :  17px;
  margin-bottom: 22px;
          color: #555;
        line-height: 1.8;
}

.story-image {
   width: 100%;
   height: auto;
   border-radius: 10px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.values-area     {
    padding: 85px 20px;
    background: #f4f6f8;
}

.values-container {
  max-width: 1200px;

	    margin: 0 auto;
}

.values-title
	{
    font-size: 40px; 
	  text-align: center; 
	  margin-bottom:        55px; 
	   color: #2c3e50; 
	    font-weight: 700;
}

.values-grid {
   display   :    grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

.value-card {
	 background    :  white;
                    padding: 35px;
    border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
	 transition: all 0.3s;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.value-name {


   font-size: 24px;
    margin-bottom: 16px;
	 color: #667eea;
	 font-weight    :       600;
     }

.value-text {
    color: #666;
   line-height     :    1.75;
    font-size: 16px;
}

.approach-block {
    padding: 90px 20px;
   background: white;
}

.approach-wrap


{
   max-width: 1200px;
	margin: 0 auto;
	 display: grid;
  grid-template-columns   : 1fr 1fr;
  gap:55px;
          align-items     :        center;
}

.approach-header {


  font-size: 38px; 
	    margin-bottom: 28px; 
	    color: #2c3e50; 
	        font-weight     :      700;
}

.approach-content {
   font-size: 17px;
          margin-bottom: 20px;
   color: #555;
    line-height: 1.8;
}

.approach-img {
   width: 100%; 
	    height: auto; 
	   border-radius: 10px; 
	  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.expertise-section {
   padding: 85px 20px;
     background: #1a252f;
   color: white;
}

.expertise-inner {
    max-width: 1200px;
   margin: 0 auto;
}

.expertise-heading {
	font-size: 40px;
  text-align: center;
    margin-bottom: 55px;
  font-weight: 700;}

.expertise-list {
    display :     grid;

  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

   gap: 30px;
}

.expertise-item {
  background: rgba(255,255,255,0.06);
    padding: 32px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
	transition: all 0.3s;
}

.expertise-item:hover {
  background: rgba(255,255,255,0.1);
}

.expertise-item-title {
   font-size: 22px;
   margin-bottom: 14px;
   font-weight: 600;
    color: #667eea;
}

.expertise-item-desc {
    color: #ddd;
	 line-height: 1.7;
   font-size: 15px;


}

.why-us-segment {
    padding: 85px 20px;

	   background: #f8f9fa;
}

.why-us-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-us-main-heading    {
   font-size: 40px;
    text-align: center;
	margin-bottom: 55px;
  color: #2c3e50;
    font-weight: 700;

}

.reasons-wrapper {
	   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 35px;

}

.reason-block {
   background :       white;
    padding: 38px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08); 

}

.reason-number {
   font-size     :        50px;
	font-weight: bold;
  color: #667eea;
	margin-bottom: 18px;
}

.reason-title {
         font-size: 24px;
   margin-bottom: 15px;
   color    :   #2c3e50;
   font-weight: 600;
}

.reason-description {
   color: #666;
   line-height: 1.75;
    font-size: 16px;
	}

.mission-vision-block {
	padding: 90px 20px;
  background: white;
}

.mission-vision-wrap {
  max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
  grid-template-columns: 1fr 1fr;
   display: grid;
}

.mission-heading, .vision-heading {
	    font-size: 36px;
    margin-bottom: 25px;
   color: #2c3e50;
    font-weight: 700;

}

.mission-text, .vision-text {
   font-size: 17px;
        color     :     #555;
    line-height: 1.8;

}

.mission-part {
	 padding: 40px;
           background: #f8f9fa;
       border-radius: 10px;
       border-left: 5px solid #667eea;
}

.vision-part {
   border-radius: 10px;
   padding: 40px;
	 border-left: 5px solid #e74c3c;
     background: #f8f9fa;
}

.cta-about-section	{
	    padding: 75px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  text-align: center;


}

.cta-about-box {
   max-width: 850px;
  margin  :0 auto;
}

.cta-about-title {
	        font-size: 44px;
	 margin-bottom: 22px;
   font-weight: 700;}

.cta-about-description {
  font-size: 19px; 
	  margin-bottom: 32px; 
	   line-height :  1.7; 
	  opacity     :0.95;
}

.cta-about-button {
        display: inline-block;
               -moz-border-radius: 6px;
     padding: 16px 42px;
   background: white;
  -webkit-border-radius: 6px;
	color: #667eea;
     text-decoration: none;
   border-radius: 6px;
   font-weight: 600;
  font-size: 18px;
    transition: all 0.3s;
}

.cta-about-button:hover {

	  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.25);

}

.thankyou-main-section  
  {
    padding: 90px 20px;
   background: #f8f9fa;
  min-height: 70vh;
}

.thankyou-container {
   max-width: 1200px;
  margin: 0 auto;
    display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 45px;
}

.thankyou-content-box {
	 background: white;
   padding: 50px;
   border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.success-icon-wrapper {
  text-align: center;
  margin-bottom: 35px;
}

.checkmark-circle {
   width: 90px;
    height   :     90px;
    border-radius     :      50%;
    background: #27ae60;
   position: relative;
  margin: 0 auto;
   animation: scaleIn 0.5s ease-in-out;
}@keyframes scaleIn {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}.checkmark-stem {
   position: absolute;
	 width: 4px;
  height: 26px;
  background: white;
  left: 50px;
   top: 28px;
  transform: rotate(45deg);
}

.checkmark-kick 
 {
	   position: absolute;
   width: 4px;
   height     :  14px;
         background: white;
    left: 38px;
   top: 45px;
  transform: rotate(-45deg);
}

.thankyou-heading {
	font-size: 42px;
    text-align: center;
   margin-bottom: 22px;
    color: #2c3e50;
  font-weight: 700;
}

.thankyou-message {

	    text-align: center;
   font-size: 18px;
    color: #666;
	margin-bottom: 45px;
  line-height: 1.7;

}

.next-steps-area {
   margin-bottom :      40px;
}

.next-steps-title 
 {
   font-size: 28px;
      margin-bottom: 28px;
    color: #2c3e50;
    font-weight:    600;
}

.steps-list
	{
   display: flex;
    flex-direction: column;
  gap: 22px;
}

.step-item {
  display: flex;
	gap: 18px;
  align-items: flex-start;
}

.step-icon {
   display: inline-block;
	 width: 42px;
   height: 42px;
   background: #667eea;
    color: white;
   border-radius: 50%;
  text-align: center;
    line-height: 42px;
    font-weight: bold;
    flex-shrink: 0;

}

.step-text   {


                    flex: 1;
    color: #555;
  line-height: 1.7;
   padding-top: 8px;


}

.thankyou-actions {
    display: flex;
    gap: 18px;
   justify-content: center;
  flex-wrap: wrap;
}

.btn-home, .btn-about {
    display: inline-block;
   	font-weight: 600;
     text-decoration: none;
   	 border-radius: 6px;
         transition: all 0.3s;
      padding: 14px 32px;
}

.btn-home
{
    background: #667eea;
   color: white;
}

.btn-home:hover {
    background: #5568d3;
  transform: translateY(-2px);
     }

.btn-about {
    background: transparent;
  color: #667eea;
   border: 2px solid #667eea;
}

.btn-about:hover    {
   background: #667eea;
	 color     :        white;
}

.thankyou-sidebar {
  display: flex;
	 flex-direction     :       column;
    gap: 25px;
}

.sidebar-card {
   background: white;
    padding: 30px;
 border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.sidebar-heading {
    font-size: 22px;
   margin-bottom     :  16px;
  color: #2c3e50;
   font-weight: 600;
}

.sidebar-text {
	color: #666;
	line-height: 1.7;
   font-size: 15px;
    margin-bottom    :       12px;
}

.sidebar-text:last-child {
  margin-bottom: 0;
}

.sidebar-info {
	background   :#f8f9fa;
}

.sidebar-image-block {
    border-radius: 10px;
   overflow   :        hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.sidebar-img {
	width: 100%;
   height: auto;
  display: block;
}

.related-resources {
	padding: 75px 20px;
  background    :       white;
}

.resources-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.resources-heading {
  font-size: 38px;
  text-align: center;
  margin-bottom: 50px;
   color    :  #2c3e50;
   font-weight: 700;

}

.resources-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap :    30px;
}

.resource-card  
  {
   background: #f8f9fa;
  -webkit-border-radius: 10px;
  padding: 32px;
   border-radius: 10px;
    border-top:   4px solid #667eea;
          transition:     all 0.3s;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.resource-name {
  font-size: 23px;
   margin-bottom: 15px;
   color: #2c3e50;
   font-weight: 600;
}

.resource-info {
    color :        #666;
    line-height: 1.7;
	font-size: 16px;
}@media (max-width: 768px) {
    .about-main-title {
        font-size: 36px;
    }
    
    .about-hero-text {
        font-size: 18px;
    }
    
    .story-wrapper {
        grid-template-columns: 1fr;
    }
    
    .approach-wrap {
        grid-template-columns: 1fr;
    }
    
    .mission-vision-wrap {
        grid-template-columns: 1fr;
    }
    
    .thankyou-container {
        grid-template-columns: 1fr;
    }
    
    .thankyou-content-box {
        padding: 35px;
    }
    
    .thankyou-heading {
        font-size: 32px;
    }
    
    .story-heading, .values-title, .approach-header, .expertise-heading, .why-us-main-heading {
        font-size: 30px;
    }
    
    .cta-about-title {
        font-size: 32px;
    }
    
    .thankyou-actions {
        flex-direction: column;
    }
    
    .btn-home, .btn-about {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-main-title {
        font-size: 28px;
    }
    
    .thankyou-heading {
        font-size: 26px;
    }
    
    .checkmark-circle {
        width: 70px;
        height: 70px;
    }
    
    .checkmark-stem {
        height: 20px;
        left: 39px;
        top: 22px;
    }
    
    .checkmark-kick {
        height: 11px;
        left: 30px;
        top: 35px;
    }
}