* {
    margin: 0; padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6; color: #333;
    overflow-x: hidden;
}

.topnav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navContainer {
    max-width: 1200px; margin: 0 auto;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logoLink .navLogo {
    height: 45px; width: auto;
}

.navMenu {
    display: flex; gap: 2rem;
}

.navMenu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.navMenu a:hover {
    color: #3498db;
}

.navMenu a::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0;
    width: 0; height: 2px;
    background: #3498db;
    transition: width 0.3s ease;
}

.navMenu a:hover::after {
    width: 100%;
}

.burgerMenu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.burgerLine {
    width: 25px; height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s ease;
}

.heroSection {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex; align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.heroSection::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="300" r="100" fill="rgba(255,255,255,0.1)"/><circle cx="800" cy="700" r="150" fill="rgba(255,255,255,0.08)"/></svg>');
    background-size: cover;
}

.heroContent {
    max-width: 1200px; margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center;
    position: relative; z-index: 2;
}

.heroTextBlock {
    color: white;
}

.heroTitle {
    font-size: 3.2rem; font-weight: 700;
    line-height: 1.2; margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.heroSubtext {
    font-size: 1.2rem; margin-bottom: 2.5rem;
    opacity: 0.9; line-height: 1.7;
}

.heroButtons {
    display: flex; gap: 1rem;
    flex-wrap: wrap;
}

.primaryBtn, .secondaryBtn {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.primaryBtn {
    background: #e74c3c;
    color: white;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.primaryBtn:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.secondaryBtn {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.secondaryBtn:hover {
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.5);
}

.heroImageBlock {
    position: relative;
}

.heroImage {
    width: 100%; height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transform: rotate(2deg);
    transition: transform 0.3s ease;
}

.heroImage:hover {
    transform: rotate(0deg) scale(1.02);
}

.servicesOverview {
    padding: 6rem 0;
    background: #f8f9fa;
}

.containerFluid {
    max-width: 1200px; margin: 0 auto;
    padding: 0 2rem;
}

.sectionHeading {
    font-size: 2.5rem; font-weight: 700;
    text-align: center; margin-bottom: 3rem;
    color: #2c3e50;
    position: relative;
}

.sectionHeading::after {
    content: '';
    position: absolute;
    bottom: -10px; left: 50%;
    transform: translateX(-50%);
    width: 80px; height: 4px;
    background: #3498db;
    border-radius: 2px;
}

.servicesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.serviceCard {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.serviceCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.serviceImage {
    width: 100%; height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.serviceTitle {
    font-size: 1.4rem; font-weight: 600;
    margin-bottom: 1rem; color: #2c3e50;
}

.serviceDesc {
    color: #7f8c8d;
    line-height: 1.6;
}

.aboutPreview {
    padding: 6rem 0;
    background: white;
}

.aboutContainer {
    max-width: 1200px; margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center;
}

.aboutHeading {
    font-size: 2.3rem; font-weight: 700;
    margin-bottom: 1.5rem; color: #2c3e50;
}

.aboutParagraph {
    font-size: 1.1rem; line-height: 1.8;
    color: #555; margin-bottom: 2rem;
}

.statsBlock {
    display: flex; gap: 2rem;
}

.statItem {
    text-align: center;
}

.statNumber {
    display: block;
    font-size: 2.5rem; font-weight: 700;
    color: #3498db;
}

.statLabel {
    font-size: 0.9rem;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.aboutImage {
    width: 100%; height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ctaSection {
    background: linear-gradient(45deg, #2c3e50, #34495e);
    padding: 5rem 0;
    text-align: center;
}

.ctaWrapper {
    max-width: 800px; margin: 0 auto;
    padding: 0 2rem;
}

.ctaHeading {
    font-size: 2.5rem; font-weight: 700;
    color: white; margin-bottom: 1.5rem;
}

.ctaText {
    font-size: 1.2rem; color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem; line-height: 1.7;
}

.ctaButton {
    background: #e74c3c;
    color: white; padding: 1.2rem 3rem;
    text-decoration: none; border-radius: 50px;
    font-weight: 600; font-size: 1.1rem;
    display: inline-block;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.3);
    transition: all 0.3s ease;
}

.ctaButton:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.conferenceSection {
    padding: 6rem 0;
    background: #f8f9fa;
}

.conferenceContainer {
    max-width: 1000px; margin: 0 auto;
    padding: 0 2rem;
}

.conferenceHeading {
    font-size: 2.3rem; font-weight: 700;
    text-align: center; margin-bottom: 3rem;
    color: #2c3e50;
}

.eventsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.eventCard {
    background: white;
    padding: 2.5rem; border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.eventCard:hover {
    transform: translateY(-5px);
}

.eventTitle {
    font-size: 1.3rem; font-weight: 600;
    color: #2c3e50; margin-bottom: 0.5rem;
}

.eventDate {
    color: #3498db; font-weight: 500;
    margin-bottom: 1rem;
}

.eventDescription {
    color: #666; line-height: 1.6;
}

.contactFormSection {
    padding: 6rem 0;
    background: white;
}

.contactContainer {
    max-width: 800px; margin: 0 auto;
    padding: 0 2rem;
}

.contactHeading {
    font-size: 2.5rem; font-weight: 700;
    text-align: center; margin-bottom: 1rem;
    color: #2c3e50;
}

.contactSubheading {
    text-align: center; font-size: 1.1rem;
    color: #7f8c8d; margin-bottom: 3rem;
}

.contactForm {
    background: #f8f9fa;
    padding: 3rem; border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.formRow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem; margin-bottom: 1.5rem;
}

.formGroup {
    display: flex; flex-direction: column;
}

.formLabel {
    font-weight: 600; color: #2c3e50;
    margin-bottom: 0.5rem;
}

.formInput, .formSelect, .formTextarea {
    padding: 1rem; border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.formInput:focus, .formSelect:focus, .formTextarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.formTextarea {
    resize: vertical; min-height: 120px;
}

.submitButton {
    background: #3498db;
    color: white; padding: 1.2rem 3rem;
    border: none; border-radius: 50px;
    font-size: 1.1rem; font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%; margin-top: 1rem;
}

.submitButton:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.footerSection {
    background: #2c3e50;
    color: white; padding: 4rem 0 2rem;
}

.footerContent {
    max-width: 1200px; margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footerLogo {
    height: 50px; width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}

.footerDescription {
    color: #bdc3c7; line-height: 1.6;
    font-size: 0.95rem;
}

.columnTitle {
    font-size: 1.1rem; font-weight: 600;
    margin-bottom: 1rem; color: white;
}

.linkColumn a {
    display: block; color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.linkColumn a:hover {
    color: #3498db;
}

.contactItem {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footerBottom {
    max-width: 1200px; margin: 2rem auto 0;
    padding: 2rem 2rem 0;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #95a5a6; font-size: 0.9rem;
}

@media (max-width: 768px) {
    .navMenu {
        position: fixed; top: 70px;
        left: -100%; width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }
    
    .navMenu.active {
        left: 0;
    }
    
    .burgerMenu {
        display: flex;
    }
    
    .burgerMenu.active .burgerLine:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .burgerMenu.active .burgerLine:nth-child(2) {
        opacity: 0;
    }
    
    .burgerMenu.active .burgerLine:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .heroContent {
        grid-template-columns: 1fr;
        gap: 2rem; text-align: center;
    }
    
    .heroTitle {
        font-size: 2.5rem;
    }
    
    .aboutContainer {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .statsBlock {
        justify-content: space-around;
        flex-wrap: wrap;
    }
    
    .servicesGrid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .eventsGrid {
        grid-template-columns: 1fr;
    }
    
    .formRow {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footerContent {
        grid-template-columns: 1fr;
        gap: 2rem; text-align: center;
    }
    
    .ctaHeading {
        font-size: 2rem;
    }
    
    .heroButtons {
        justify-content: center;
    }
    
    .navContainer {
        padding: 0.8rem 1rem;
    }
    
    .containerFluid,
    .aboutContainer,
    .ctaWrapper,
    .conferenceContainer,
    .contactContainer {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .heroTitle {
        font-size: 2rem;
    }
    
    .heroSubtext {
        font-size: 1rem;
    }
    
    .primaryBtn, .secondaryBtn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .sectionHeading {
        font-size: 2rem;
    }
    
    .contactForm {
        padding: 2rem 1.5rem;
    }
}.pageSpacing {
   height: 80px;
} 

.aboutHero {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
   padding: 4rem 0;
  color: white;
}

.aboutHeroContainer {
     max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
   display   :     grid;
   grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;}

.aboutPageTitle {
    font-size: 2.8rem;
   font-weight: 700;
   line-height: 1.3;
   margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.aboutPageSubtitle {
   font-size: 1.2rem;
  line-height  :    1.7;
   opacity  :      0.9;
}

.heroImageAbout {
	width: 100%;
   height: auto;
   border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
  transform: rotate(-2deg);
  transition: transform 0.3s ease;
}  

.heroImageAbout:hover  {
  transform: rotate(0deg) scale(1.02);
}

.companyStory {
    background: #f8f9fa;
    padding: 6rem 0;
}

.storyContainer   {

    max-width: 1200px;
	margin: 0 auto;
  padding: 0 2rem;
}

.storyHeading		{
    font-size: 2.5rem; 
   font-weight : 700; 
   text-align: center; 
    margin-bottom: 3rem; 
   color: #2c3e50; 
   position     :    relative;
}

.storyHeading::after 
 {
	  content: '';
      position:  absolute;
   bottom: -10px;
   left: 50%;
  transform: translateX(-50%);
   width: 80px;
    height: 4px;
    background    :        #3498db;
  border-radius: 2px;


}

.storyContent  {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
  align-items: center;
}

.storyParagraph {
	 font-size: 1.1rem;
  line-height: 1.8;
    color: #555;
	margin-bottom: 1.5rem;
}

.storyImage		{
  width: 100%; 
   height: auto; 
  border-radius: 15px; 
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ourApproach
{
   background: white;
  padding: 6rem 0;
}

.approachContainer {
    max-width: 1200px;
   margin: 0 auto;
	padding   :       0 2rem;
}

.approachTitle {
   font-size: 2.3rem;
    font-weight: 700;
    text-align    :        center;
  margin-bottom: 3rem;
   color :#2c3e50;
}

.approachGrid {

	  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;

}

.approachCard {
  background: #f8f9fa;
		padding: 2.5rem 2rem;
  border-radius: 15px;
    text-align   :  center;
   transition: all 0.3s ease;
   position: relative;


}

.approachCard:hover {


  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    background: white;
     }  

.approachNumber {
    width: 60px;
   height: 60px;
    background :  #3498db;
    color: white;
  border-radius: 50%;
    display: flex;
  align-items: center;
  justify-content: center;
   font-size: 1.5rem;
   font-weight :       700;
  margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.approachCard:hover .approachNumber {
    background: #e74c3c; 
	  transform: scale(1.1);
}

.approachCardTitle{
  font-weight: 600;
   font-size   :1.3rem;
  margin-bottom: 1rem;
    color: #2c3e50;
}

.approachDescription {
    color: #666;
  line-height: 1.6;
	font-size: 0.95rem;
}


.teamSection {
   padding: 6rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.teamContainer  {
    max-width: 1000px;
   margin: 0 auto;
   padding: 0 2rem;
 text-align: center;
}

.teamHeading {
   font-size: 2.3rem;
    font-weight   :      700;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.teamDescription {
    font-size: 1.1rem;
   line-height    :1.8;
  opacity :      0.9;
    margin-bottom: 3rem;
   max-width: 800px;
    margin-left: auto;
   margin-right: auto;
}

.teamStats {
  display:   flex;
   justify-content     :  center;
    gap: 3rem;
   margin-bottom: 3rem;
  flex-wrap: wrap;
}

.teamStatItem {
  text-align    : center;


} 

.teamStatNumber
{
               display: block;
  font-size: 2.8rem;
     font-weight: 700;
  color     :    white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.teamStatLabel {
   font-size: 0.9rem;
    opacity: 0.8;
   text-transform: uppercase;
   letter-spacing: 0.5px;
}

.teamPhoto {
  width: 100%;
  max-width: 600px;
   height: auto;
          margin: 0 auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.valuesSection {
    padding: 6rem 0;
   background: #f8f9fa;
}

.valuesContainer {
  max-width: 1000px;
         margin    : 0 auto;
    padding    :        0 2rem;
}

.valuesHeading
	{
       font-size: 2.3rem;
   font-weight    :       700;
  text-align: center;
    margin-bottom: 3rem;
         color: #2c3e50; 
	
}

.valuesList {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2.5rem;
}

.valueItem {
  background: white;
    padding: 2.5rem;
    border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
	 transition: transform 0.3s ease;
}

.valueItem:hover {


  transform: translateY(-5px);
     }

.valueTitle {
  margin-bottom: 1rem;
  color: #3498db;
  font-weight  :  600;
    font-size: 1.4rem;
}

.valueDescription {
    line-height: 1.7;
  color: #666;
	font-size: 1rem;
}


.achievementsSection {
   padding: 6rem 0;
   background: white;
}

.achievementsContainer    {


	 max-width : 1200px;
	 margin: 0 auto;
  padding: 0 2rem;
	}

.achievementsTitle {
	 font-size: 2.3rem;
    font-weight: 700;
  text-align: center;
    margin-bottom  :  3rem;
  color  :       #2c3e50;
}

.achievementsContent
	{
  display: grid;
       grid-template-columns: 2fr 1fr;
      gap: 4rem;
   	align-items   :     center;
}

.achievementItem


{

	   margin-bottom: 2rem;}

.achievementTitle {
	font-size: 1.3rem;
    font-weight: 600;
    color   :        #2c3e50;
  margin-bottom: 0.8rem;
}

.achievementDesc {
  color: #666;
    line-height    :   1.7;
   font-size: 1rem;
}

.achievementPhoto {
   width: 100%;
   height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.missionSection {
  padding: 6rem 0;
   background: #2c3e50;
          color     :       white;

	}

.missionContainer {
    max-width  :       1200px;
	margin: 0 auto;
    padding: 0 2rem;
}

.missionTitle {

  font-size: 2.3rem; 
   font-weight: 700; 
   text-align    : center; 
   margin-bottom: 3rem; 
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);


}

.missionContent {
   display: grid;
  grid-template-columns: 2fr 1fr;
    gap: 4rem;
          align-items :  center;


}

.missionText {
  font-size: 1.1rem;
   line-height: 1.8;
  opacity: 0.9;
   margin-bottom: 1.5rem;
}

.missionPhoto {
  width: 100%;
   height: auto;
   border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.thankyouHero {
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 4rem 0;
   color: white;
}



.thankyouContainer {
         max-width: 1200px;
   margin   :    0 auto;
   padding   : 0 2rem;
   display: grid;
	grid-template-columns: 2fr 1fr;
    gap: 4rem;
   align-items: center;
} 

.thankyouContent     {
    text-align: center;
}

.thankyouIcon {
	    margin-bottom: 2rem;

}

.checkmarkCircle    {
    width: 100px;
    height: 100px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
    display: flex;
  align-items :  center;
  justify-content: center;
    margin  :       0 auto;
    animation: pulse 2s infinite;
}

.checkmark {
	width: 40px;
  height: 20px;
   border-left   :   4px solid white;
    border-bottom: 4px solid white;
  transform: rotate(-45deg);
}@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}.thankyouTitle {
    font-size: 2.8rem;
  font-weight: 700;
        margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.thankyouSubtitle {
 font-size: 1.3rem;
    margin-bottom: 2rem;
  opacity: 0.9;
}

.thankyouMessage {
  background: rgba(255,255,255,0.1);
  padding   :    2rem;
   border-radius: 15px;
    margin-bottom: 2.5rem;
  backdrop-filter: blur(10px);
}

.thankYouText {
    font-size: 1.1rem;
  line-height: 1.7;
    margin-bottom  :       1rem;
}

.thankyouActions {
  flex-wrap: wrap;
   display: flex;
  gap: 1rem;
  justify-content: center;
}

.thankyouBtn {
   padding: 1rem 2rem;
    text-decoration: none;
  border-radius: 50px;
   font-weight: 600;
   transition: all 0.3s ease;
    display: inline-block;
}

.thankyouBtn.primary
{
   background: white;
        color: #27ae60;
}

.thankyouBtn.primary:hover {
    background: #f8f9fa;
  transform: translateY(-2px);
}

.thankyouBtn.secondary {
  background: rgba(255,255,255,0.2);
                    color: white;
  border: 2px solid rgba(255,255,255,0.3);


}

.thankyouBtn.secondary:hover {
  background: rgba(255,255,255,0.3);
  border-color: rgba(255,255,255,0.5);
}

.thankyouImage {
   width: 100%;
    height: auto;
   border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
     }

.nextStepsSection {
    padding: 6rem 0;
    background: #f8f9fa;
}

.nextStepsContainer {
    max-width  :  1000px;
   margin: 0 auto;
  padding: 0 2rem;
}

.nextStepsTitle {
    font-size: 2.3rem;
   font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
        color: #2c3e50;
}

.stepsTimeline {
 position: relative;
}

.stepsTimeline::before {
  content: '';
   position: absolute;
  left    :  30px;
   top: 0;
  bottom   :      0;
  width    :      3px;
   background: #3498db;
   opacity: 0.3;
} 

.timelineStep {

	display: flex;
   gap: 2rem;
    margin-bottom: 3rem;
   position    :        relative;
}

.stepNumber {
  width :        60px;
    height: 60px;
  background: #3498db;
   color: white;
   border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
    font-size   : 1.5rem;
  font-weight     :    700;
 flex-shrink: 0;
  z-index: 2;
}

.stepContent {
    background: white;
    padding     :2rem;
  border-radius    :   15px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    flex-grow: 1;
}

.stepTitle  {
   font-size: 1.3rem;
  font-weight: 600;
    color: #2c3e50;
	 margin-bottom: 0.8rem;
}

.stepDescription {
  color: #666;
      line-height: 1.6;
  margin-bottom: 1rem;
}

.stepTime {
  color: #3498db;
   font-weight: 500;
   font-size: 0.9rem;
       text-transform: uppercase;
    letter-spacing: 0.5px;
}

.whileWaitingSection {
    background: white;
   padding: 6rem 0;
}

.waitingContainer {
    max-width: 1200px;
  margin     :  0 auto;
  padding   : 0 2rem;
}

.waitingTitle {
    font-weight   :        700;
         text-align: center;
         font-size: 2.3rem;
    color: #2c3e50;
  margin-bottom   :  3rem;
}

.waitingGrid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap  : 2rem;
}



.waitingCard {
    background: #f8f9fa;
   -webkit-border-radius: 15px;
  border-radius: 15px;
  overflow    : hidden;
   transition: all 0.3s ease;
      -moz-transition: all 0.3s ease;
}

.waitingCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.waitingImage {
       width: 100%;
   height: 200px;
     object-fit: cover;
	}

.waitingCardTitle {
   font-size: 1.3rem;
   font-weight: 600;
  color: #2c3e50;
   margin: 1.5rem 1.5rem 1rem;
}

.waitingDescription {
	color: #666;
  line-height: 1.6;
  margin: 0 1.5rem 1.5rem;
}

.waitingLink {
	  display: inline-block;
       color   :        #3498db;
     text-decoration: none;
   	 font-weight: 500;
   	 margin: 0 1.5rem 1.5rem;
       transition: color 0.3s ease;
} 

.waitingLink:hover {
    color: #2980b9;
}

.urgentNeedsSection {
	padding: 4rem 0;
    background: #34495e;
   color: white;
}

.urgentContainer {
  max-width: 800px;
    margin: 0 auto;
     padding: 0 2rem;
    text-align: center;
}

.urgentTitle {
  font-size: 2rem;
   font-weight: 700;
   margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);


}

.urgentText {
   font-size: 1.1rem;
    line-height: 1.7;
    opacity     :     0.9;
   margin-bottom: 2.5rem;
}

.urgentContact {
    display: flex;
  justify-content: center;
   gap: 3rem;
   flex-wrap: wrap;
}

.contactOption{
  background: rgba(255,255,255,0.1);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  min-width: 200px;
}

.contactTitle {
    font-size: 1.2rem;
  font-weight: 600;
   margin-bottom: 0.8rem;
  color  :    #3498db;
}

.contactDetails {
  font-size: 1rem;
  margin-bottom: 0.5rem;
    font-weight: 500;
}

.contactHours {
  font-size : 0.9rem;

   opacity: 0.7;
}@media (max-width: 768px) {
    .aboutHeroContainer,
    .storyContent,
    .achievementsContent,
    .missionContent,
    .thankyouContainer {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .aboutPageTitle {
        font-size: 2.3rem;
    }
    
    .thankyouTitle {
        font-size: 2.2rem;
    }
    
    .approachGrid,
    .valuesList {
        grid-template-columns: 1fr;
    }
    
    .teamStats,
    .thankyouActions,
    .urgentContact {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .timelineStep {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .stepsTimeline::before {
        display: none;
    }
    
    .waitingGrid {
        grid-template-columns: 1fr;
    }
    
    .thankyouContent {
        order: 1;
    }
}

@media (max-width: 480px) {
    .pageSpacing {
        height: 70px;
    }
    
    .aboutPageTitle {
        font-size: 2rem;
    }
    
    .thankyouTitle {
        font-size: 1.8rem;
    }
    
    .checkmarkCircle {
        width: 80px; height: 80px;
    }
    
    .stepNumber {
        width: 50px; height: 50px;
        font-size: 1.2rem;
    }
    
    .stepContent,
    .contactOption {
        padding: 1.5rem;
    }
}