* {
	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-color: #ffffff;
}

.container {
    max-width   :  1200px;
   margin: 0 auto;
   padding: 0 20px;
}

.main-navigation

{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: fixed;
  top: 0;
                    width: 100%;
   z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
  margin: 0 auto;
    display    : flex;
   justify-content: space-between;
	 align-items: center;
   padding: 1rem 20px;
}

.nav-logo {
   height: 45px;
     width: auto;
}

.nav-links {
   gap: 2rem;
   display: flex;
}

.nav-item {
 color: white;
  text-decoration: none;
    font-weight   :     500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-item:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.burger-menu {
    display:    none;
    flex-direction: column;
   cursor: pointer;
   padding  :5px;
}

.burger-menu span {
  width: 25px;
	height:    3px;
    background: white;
   margin: 3px 0;
  transition   :     0.3s;
   border-radius: 2px;
}

.hero-section {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);

	   padding:     120px 0 80px;

	   margin-top: 70px;
}

.hero-content {
	max-width: 1200px;
    margin: 0 auto;
   display: grid;
    grid-template-columns: 1fr 1fr;
   gap  :   60px;
	align-items  :        center;
   padding :      0 20px;
}

.hero-text h1 {
  font-size: 3.5rem;
   color: white;
   margin-bottom: 1.5rem;
  font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

.hero-buttons {
    display: flex;
   gap: 20px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  padding: 15px 30px;
   border-radius  :   50px;
                    text-decoration: none;
  font-weight  :   600;
    transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background: white;
    color: #667eea;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}

.btn-secondary


{
    background: transparent;
   color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
  transform: translateY(-3px);
}

.hero-image img  
  {
                    width     :    100%;
  height: auto;
   border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.services-overview {
  background: #f8f9fa;
    padding: 100px 0;
}

.services-overview h2 {
   text-align: center;
   font-size: 2.8rem;
    margin-bottom: 60px;
   color :       #2c3e50;
}

.services-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;


}

.service-card {
	   background: white; 
	   padding:        40px 30px; 
	                    border-radius: 15px; 
	  box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
	  transition: transform 0.3s ease; 
	 text-align: center;
	}  

.service-card:hover {
  transform: translateY(-10px);
}

.service-card h3 {
   font-size: 1.5rem;
   margin-bottom:      20px;
   color: #667eea;
}

.service-card p {
  color: #666;
       line-height: 1.6;
}

.expertise-section {
    padding: 100px 0;
}

.expertise-content {
   align-items: center;
    display: grid;
  grid-template-columns: 1fr 1fr;
   gap    :     60px;
}

.expertise-text h2   {
                    font-size    :    2.5rem; 
	  margin-bottom: 30px; 
		color: #2c3e50;
}

.expertise-text > p   {


    font-size: 1.1rem;
   margin-bottom     :        40px;
	 color: #666;
	 line-height: 1.7;
	}

.expertise-points {
   display: flex;
   flex-direction:    column;
		 gap: 30px;
}

.point h4 {
	   color: #667eea;
  margin-bottom: 10px;
   font-size: 1.2rem;}

.point p		{
   color: #666;
    line-height: 1.6;
}

.expertise-image img {
      width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.workshop-section {
    padding: 100px 0;
          background: #f8f9fa;
}

.workshop-section h2 {
  text-align: center;
    font-size: 2.5rem;
  margin-bottom: 60px;
  color: #2c3e50;
}

.workshop-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));

   gap: 50px;
}

.workshop-item {
  background: white;
    border-radius: 20px;
    overflow:   hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.workshop-item:hover {
  transform: translateY(-8px);
}

.workshop-item img {
   width     :       100%;
   height: 250px;
	object-fit: cover;
}

.workshop-content {
   padding: 30px;
}

.workshop-content h3 {
          font-size: 1.4rem;
  margin-bottom: 15px;
               color: #667eea;
}

.workshop-content p {

   color: #666;
  line-height: 1.6;
     }

.cta-section {
       padding: 100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

}

.cta-content
{
  display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
	 align-items :      center;
}

.cta-text h2 {
    font-size: 2.5rem;
    color: white;
   margin-bottom: 25px;
}

.cta-text p {
     color: rgba(255,255,255,0.9);
	   font-size: 1.1rem;
	    margin-bottom: 30px;
	   line-height: 1.6;
	}

.btn-cta {
   background  :    white;
   color: #667eea;
    padding: 18px 40px;
    border-radius     :     50px;
         text-decoration: none;
   font-weight    :   600;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}

.cta-image img   {
   width: 100%;
         border-radius  :     15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.testimonials{
   padding: 100px 0;
    background: #f8f9fa;
}

.testimonials h2 {
    text-align: center;
   font-size: 2.5rem;
  margin-bottom: 60px;
  color: #2c3e50;
}


.testimonials-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap    :   40px;
}

.testimonial {
   background :        white;
  padding: 40px 30px;
  border-radius  :     15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.testimonial p {
   font-style: italic;
  font-size: 1.1rem;
   color    :      #555;
	margin-bottom: 25px;
    line-height: 1.6;
}

.testimonial cite
	{
	color  :   #667eea;
    font-weight: 600;
   font-style: normal;
}

.contact-section {
  padding: 100px 0;
   background: white;
}

.contact-section h2 {
   text-align: center;
    font-size: 2.5rem;
   margin-bottom: 60px;
   color: #2c3e50;
}

.contact-wrapper {
    display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 60px;
}

.contact-info h3 {
    margin-bottom: 20px;
    color: #667eea;
  font-size: 1.8rem;
}

.contact-info p {
	color: #666;
    font-size: 1.1rem;
  margin-bottom  :40px;
   line-height   : 1.6;
} 

.contact-details{
    display: flex;
   flex-direction: column;
  gap: 20px;
}

.detail {
    display  :    flex;
   flex-direction: column;
  gap: 5px;
}

.detail strong {
  color: #2c3e50;
   font-weight:     600;
	
}

.detail span {
   color: #666;
}

.contact-form {
   background: #f8f9fa;
 padding: 40px;
        border-radius: 15px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 20px;
          margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
   padding: 15px; 
	        -webkit-transition: border-color 0.3s ease; 
	  -o-transition: border-color 0.3s ease; 
	   -webkit-border-radius: 8px; 
	    -moz-border-radius: 8px; 
	    border  :      1px solid #ddd; 
	    border-radius: 8px; 
	  font-size: 1rem; 
	  transition: border-color 0.3s ease; 
	    background: white;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
   border-color    :      #667eea;
}

.contact-form textarea {
   min-height: 120px;
  grid-column    :1 / -1;
    resize: vertical;
}

.submit-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  padding: 18px 40px;
    border: none;
    border-radius: 50px;
  font-size: 1rem;
   font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
   width: 100%;
}

.submit-btn:hover {

	  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.main-footer {
    background: #2c3e50;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  max-width: 1200px;
    margin: 0 auto;
	padding: 0 20px;
       display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
       gap: 40px;
}

.footer-logo{
     height: 40px;
 margin-bottom     :      20px;
  filter: brightness(0) invert(1);
	

}

.footer-section h4 {
          margin-bottom: 20px;
  color: #667eea;
  font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
	margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover		{


   color: white;


}

.footer-section p {
    color: #bdc3c7;
  line-height: 1.6;

}

.footer-bottom {
   border-top: 1px solid #34495e;
    margin-top: 40px;
   padding-top: 20px;
    text-align: center;
   max-width: 1200px;
	margin-left: auto;
	 margin-right: auto;
    color: #bdc3c7;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-item {
        margin: 20px 0;
        font-size: 1.2rem;
    }

    .burger-menu.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

@media (max-width: 1024px) {
    .hero-content,
    .expertise-content,
    .cta-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text {
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .workshop-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .workshop-item {
        min-width: auto;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .services-overview,
    .expertise-section,
    .workshop-section,
    .testimonials,
    .contact-section {
        padding: 60px 0;
    }

    .services-overview h2,
    .expertise-text h2,
    .workshop-section h2,
    .testimonials h2,
    .contact-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary,
    .btn-cta {
        width: 100%;
        text-align: center;
    }

    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 1rem 15px;
    }
}.about-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	 padding: 120px 0 80px;
    margin-top     : 70px;
   text-align: center;
}

.about-hero .hero-content h1 {
  font-size: 3rem;
  margin-bottom:    1.5rem;
                    line-height: 1.3;
    color:       white;
    font-weight: 700;
} 

.hero-description {
                    font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
    max-width: 600px;
   margin    :       0 auto;
   line-height: 1.6;
}

.story-section {
  padding: 100px 0;
      background: white;
}

.story-content {
   display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 60px;
	align-items: center;
}

.story-text h2 {

		 font-size: 2.5rem;
	    margin-bottom: 30px;
	  color: #2c3e50;}

.story-text p {
    color: #666;
   line-height: 1.7;
   margin-bottom: 25px;
    font-size: 1.1rem;

}

.story-image img

{
    width: 100%; 
	border-radius: 15px; 
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.team-section {
    padding     :        100px 0;
    background: #f8f9fa;
	
}

.team-section h2 {

   text-align: center;
   font-size :     2.5rem;
    margin-bottom: 60px;
    color   :     #2c3e50;

}

.team-grid {
  display     :      grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
         gap: 40px;
}

.team-member {
  background: white;
   padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
          text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-8px);
}

.member-info h3 {
  font-size: 1.4rem;
     color: #667eea;
    margin-bottom: 10px;
}

.role
	{
    font-weight: 600;
  color: #2c3e50;
   margin-bottom: 20px !important;
}

.member-info p {
    color: #666;
  line-height: 1.6;
}

.methodology-section {
  padding: 100px 0;
 background   :  white;
}

.methodology-content {
               display: grid;
   grid-template-columns: 1fr 1fr;
 gap: 60px;
  align-items: flex-start;
} 

.method-text h2 {

   font-size: 2.5rem;
   margin-bottom: 40px;
   color   :#2c3e50;


}

.method-steps {
   display: flex;
  flex-direction: column;
  gap: 30px;
}

.step {
	    display   :    flex;
    align-items: flex-start;
	gap: 20px;

}

.step-number {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color   :   white;
   width: 50px;
    height: 50px;
      border-radius: 50%;
    display    :  flex;
   align-items: center;
          justify-content: center;
      font-weight:     bold;
   font-size  :   1.1rem;
   flex-shrink: 0;
}

.step-content h4 {
   	color: #667eea;
	  margin-bottom: 10px;
	  font-size: 1.2rem;
     }

.step-content p


{
 color: #666;
  line-height: 1.6;
}

.method-image img{
  width: 100%;
    border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.values-section 
 {
       padding     :      100px 0;
    background: #f8f9fa; 

}

.values-section h2 {
  text-align: center;
	font-size: 2.5rem;
  margin-bottom: 60px;
   color: #2c3e50;
}

.values-grid {
   display:    grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: 40px;
}

.value-card {

    background: white;
  padding: 40px 30px;
      border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
		 text-align: center;
    transition: transform 0.3s ease;


}

.value-card:hover {
     transform: translateY(-8px);
     }

.value-card h3 {
        font-size: 1.4rem;
    color: #667eea;
  margin-bottom: 20px; 

}

.value-card p {
    color: #666;
    line-height: 1.6;
}



.statistics-section {
  padding: 100px 0; 
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
 text-align: center;
}

.statistics-section h2 {
   color: white;
  font-size: 2.5rem;
   margin-bottom: 60px;
}

.stats-grid {
		 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap    :     40px;
     }

.stat-item {
	 color: white;
}

.stat-number {

    font-size: 3rem;
    font-weight: bold;
   margin-bottom: 15px;
  color: #f093fb;
	}

.stat-label {
      font-size  :       1.1rem;
   opacity : 0.9;
}

.experience-section {
  padding: 100px 0;

   background    :        white;
}

.experience-content {
   display :grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 60px; 
    align-items: center;
}

.exp-text h2		{
   font-size: 2.5rem;
  margin-bottom: 30px;
     color: #2c3e50;
}

.exp-text > p {
   font-size: 1.1rem;
  color: #666;
   line-height: 1.7;
   margin-bottom: 40px;
}

.advantages {
    display: flex;
   flex-direction: column;
    gap: 25px;
}

.advantage h4 {
	 color    :#667eea;
    margin-bottom: 10px;
		 font-size: 1.2rem;
}

.advantage p  {
   color: #666;
  line-height: 1.6;
}

.exp-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.nav-item.active {
  background: rgba(255,255,255,0.2);
   border-radius: 25px;
}

.thankyou-main {
   padding: 120px 0 60px;
         margin-top: 70px;
    background: #f8f9fa;
  min-height: calc(100vh - 200px);
}

.thankyou-content {
   max-width: 800px; 
	    margin: 0 auto; 
	  text-align   :   center;
}

.success-icon {
               margin-bottom: 40px;
}

.checkmark-circle {

	   width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
   display: flex;
    align-items: center;
    justify-content: center;
    margin   : 0 auto;
	 position: relative;
  animation: scaleIn 0.6s ease;
     }

.checkmark {
       width: 25px;
   height: 15px;
   border: 3px solid white;
  border-top: none;
    border-right: none;
  transform: rotate(-45deg);
  margin-top: -5px;
}@keyframes scaleIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}.thankyou-content h1{

    font-size: 2.8rem;
  color: #2c3e50;
  margin-bottom: 20px;
   font-weight     :      700;
	}

.main-message {
    font-size: 1.2rem;
  color :      #666;
    margin-bottom: 60px;
    line-height: 1.6;
}

.next-steps {
     margin-bottom: 60px;
  text-align: left;
	}

.next-steps h2 {
  font-size: 2.2rem;
   color: #2c3e50;
   margin-bottom   :   40px;
  text-align: center;
}

.steps-timeline {
               display: flex;
  flex-direction: column;
  gap: 30px;
}

.timeline-step {
         display: flex;
	gap  :  25px;
   align-items: flex-start;
  background: white;
         padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.step-icon {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
                    color: white; 
  width     :  45px; 
    height: 45px; 
    border-radius   :        50%; 
   display: flex; 
   align-items: center; 
    justify-content: center; 
   font-weight: bold; 
   flex-shrink: 0;
}

.step-details h3 {
   color: #667eea;
  margin-bottom: 12px;
    font-size: 1.3rem;
}

.step-details p {
  color: #666;
   line-height: 1.6;
  margin-bottom: 10px;
}

.timing {
   color: #f093fb;
    font-weight: 600;
   font-size: 0.9rem;

}

.preparation-tips {
   margin-bottom: 60px;
}

.preparation-tips h2 {
  font-size: 2rem;
  color: #2c3e50;
   margin-bottom: 40px;
}

.tips-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 30px;
}

.tip-card {
   background   :white;
  padding: 30px 25px;
   border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-align: center;
}

.tip-card h4 {
   color   :    #667eea;
   margin-bottom: 15px;
	 font-size: 1.1rem;
}

.tip-card p {
    color: #666;
    line-height: 1.6;
  font-size: 0.95rem;
	
}

.contact-reminder 
 {
  margin-bottom: 60px;
}

.reminder-content {
  background: white;
          border-radius: 20px;
   overflow  :   hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
   display: grid;
     grid-template-columns: 1fr 1fr;
    align-items: center;
}

.reminder-text {
     padding: 40px; 
	
}

.reminder-text h3 {
   color:  #667eea;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.reminder-text > p {
   color: #666;
    line-height :     1.6;
   margin-bottom: 25px;

}

.contact-info p {
    color: #2c3e50;
    margin-bottom: 8px; 

}

.contact-info strong {
  color    :        #667eea;
}

.reminder-image img {
       width: 100%;
  height: 250px;
   object-fit: cover;


     }

.additional-resources {
    margin-bottom: 60px;
}

.additional-resources h2 {
    font-size: 2rem;
     color: #2c3e50;
  margin-bottom: 40px;
}

.resources-content {
    background     :white;
    border-radius: 20px;
   overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    display: grid;
  grid-template-columns: 1fr 1fr;
    align-items: center;
}

.resource-text {
  padding: 40px;
}

.resource-text p {
   color: #666;
	 line-height    :      1.7;
    margin-bottom: 20px;
}

.resource-image img {
  width    :    100%;
  height: 250px;
  object-fit: cover;
}

.cta-return {

   display: flex;
    gap: 20px;
   justify-content: center;
  flex-wrap: wrap;
	}

.btn-return, .btn-learn {
   padding: 15px 30px;
  border-radius: 50px;
	text-decoration: none;
	 font-weight: 600;
    transition: all 0.3s ease;
    display    :     inline-block;
	
}

.btn-return {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-return:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.btn-learn 
 {
    background: transparent;
   color: #667eea;
    border: 2px solid #667eea;
}

.btn-learn:hover
{
  background: #667eea;
    color: white;
  transform: translateY(-3px);
}@media (max-width: 1024px) {
    .story-content,
    .methodology-content,
    .experience-content,
    .reminder-content,
    .resources-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-hero .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 100px 0 60px;
    }
    
    .about-hero .hero-content h1 {
        font-size: 2rem;
    }
    
    .story-section,
    .team-section,
    .methodology-section,
    .values-section,
    .statistics-section,
    .experience-section {
        padding: 60px 0;
    }
    
    .story-text h2,
    .method-text h2,
    .exp-text h2,
    .team-section h2,
    .values-section h2,
    .statistics-section h2 {
        font-size: 2rem;
    }
    
    .team-grid,
    .values-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .thankyou-content h1 {
        font-size: 2.2rem;
    }
    
    .timeline-step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-return {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-return,
    .btn-learn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-hero .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .thankyou-content h1 {
        font-size: 1.8rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .timeline-step,
    .tip-card,
    .team-member,
    .value-card {
        padding: 25px 20px;
    }
    
    .reminder-text,
    .resource-text {
        padding: 30px 25px;
    }
}.story-section {
	padding: 100px 0;
   background: #f8f9fa;
}

.story-content {
   display: grid;
        grid-template-columns: 1fr 1fr;
   gap: 60px;
  align-items: center;
}

.story-text h2 
 {
   font-size: 2.5rem;
  margin-bottom: 30px;
    color: #2c3e50;
}

.story-text p {
    font-size: 1.1rem;
	 color: #666;
   line-height: 1.7;
  margin-bottom: 25px;
	}

.story-image img {
   width:   100%;
   border-radius:  15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1); 

}@media (max-width: 1024px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .story-section {
        padding: 60px 0;
    }

    .story-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .story-text h2 {
        font-size: 1.8rem;
    }
}