* {
   margin: 0;
   	padding: 0;
      box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     line-height: 1.6;
  color: #333;
   background-color :    #ffffff;
}

.container {
  padding: 0 20px;
  margin: 0 auto;
   max-width: 1200px;
}

.nav-container {
  position  :       fixed;
    top: 0;
    width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
   z-index     :        1000;
    transition: all 0.3s ease;
  border-bottom: 1px solid #e0e0e0;
}

.nav-container.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-wrapper

{
   max-width: 1200px; 
		margin: 0 auto; 
	    display: flex; 
	        justify-content: space-between; 
	    align-items: center; 
	    padding: 15px 20px;
}

.company-logo {
  height: 45px;
    width: auto;

}

.nav-links {
   display: flex;
   gap: 35px;
   transition: all 0.3s ease;
}

.nav-link {
   text-decoration: none;
  color: #333;
   font-weight: 500;
	 transition: color 0.3s ease;
   position: relative;
}

.nav-link:hover {
   color: #2c5aa0;
}

.nav-link::after {
  content: '';
   position: absolute;
  width: 0;
   height: 2px;
    bottom: -5px;
   left: 0;
        background-color: #2c5aa0;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.burger-menu {
    display: none;
   flex-direction: column;
   cursor: pointer;
   gap: 4px;
}

.burger-menu span {
	 width: 25px;
  background-color :  #333;
   transition  : all 0.3s ease;
        height: 3px;
}

.burger-menu.active span:nth-child(1) {
	  transform: rotate(45deg) translate(5px, 5px);

}

.burger-menu.active span:nth-child(2) {
   opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.hero-section {
   margin-top: 80px;
   padding   :80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); 

}

.hero-content {
    max-width: 1200px;
  margin: 0 auto;
  padding    :  0 20px;
	 display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  align-items: center;
}

.hero-text h1 {
    font-size: 3.2rem;
 font-weight: 700;
    color: #1a1a1a;
	margin-bottom: 25px;
    line-height: 1.2;
	
}

.hero-text p  {
   font-size: 1.2rem;
   color   :   #666;
  line-height: 1.6;
   margin-bottom: 35px;
}

.hero-buttons {
   display: flex;
   gap :    20px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding  : 15px 30px;
   text-decoration: none;
          border-radius: 8px;
   font-weight: 600;
  transition: all 0.3s ease;
  display  :     inline-block;
  text-align: center; 

}

.btn-primary {
    background-color: #2c5aa0;
    color: white;
  border: 2px solid #2c5aa0;
}

.btn-primary:hover {
   background-color: #1e4080;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #2c5aa0;
    border: 2px solid #2c5aa0;
}

.btn-secondary:hover {

   background-color: #2c5aa0;
   color: white;
  transform: translateY(-2px);
     }

.hero-image img {
    width: 100%;
    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.services-overview {
   padding: 100px 0;
   background-color: #ffffff;
}

.services-overview h2 {
	text-align: center;
    font-size:       2.5rem;
  margin-bottom   :       60px;
  color: #1a1a1a;
   font-weight: 700;

}

.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 40px;
}

.service-card {
	background: #ffffff;
   border-radius: 15px;
   overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
} 

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-card img {
	width: 100%;
  height    : 220px;
  object-fit: cover;
}

.service-card h3 {
           font-size   :    1.4rem;
    margin: 25px 25px 15px 25px;
  color: #2c5aa0;
   font-weight :      600; 

}

.service-card p {
     padding: 0 25px 25px 25px;
   color: #666;
   line-height: 1.6;

}

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #2c5aa0 0%, #1e4080 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
   font-weight: 700;
}

.cta-content p {

	  font-size: 1.2rem;
    margin-bottom: 35px;
   opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
     }

.btn-cta {
   background-color: white;

	   color: #2c5aa0;

	    padding: 18px 40px;

	    text-decoration: none;

	 border-radius: 8px;

	   font-weight: 600;

		font-size: 1.1rem;

	   transition: all 0.3s ease;

	  display: inline-block;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.workshops-section {

	  padding: 100px 0;
  background-color: #f8f9fa;
}

.workshop-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 60px;
  align-items: center;
}

.workshop-text h2 {
    font-size: 2.3rem;
               margin-bottom: 25px;
   color: #1a1a1a;
    font-weight: 700;
}

.workshop-text p {
	font-size  :        1.1rem;
   color: #666;
  margin-bottom :30px;
  line-height: 1.7;
}

.workshop-benefits {
    list-style: none;
    padding: 0;
}

.workshop-benefits li {
  padding: 10px 0;
      position   :   relative;
   	padding-left: 25px;
       color: #555;
}

.workshop-benefits li::before {
  content: "✓";
   position: absolute;
	 left: 0;
   color: #2c5aa0;
  font-weight: bold;
}

.workshop-image img {
       width: 100%;
   border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);

}

.contact-section {
    padding: 100px 0;

   background-color: #ffffff;
}

.contact-section h2 {
   text-align: center;
   font-size: 2.5rem;
  margin-bottom: 60px;
  color: #1a1a1a;
   font-weight: 700;
}

.contact-wrapper {
    gap: 60px;
   display: grid;
   grid-template-columns: 1fr 2fr;
}

.contact-info h3 {
    font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 30px;
	color: #2c5aa0;
}

.contact-detail {
   margin-bottom: 25px;
}

.contact-detail strong  {
  display: block;
  color: #333;
   margin-bottom: 8px;
  font-weight: 600;
}

.contact-detail p {
   color: #666;
   line-height: 1.5;
}

.contact-form 
 {
   background: #f8f9fa;
   padding :        40px;
  border-radius: 15px;
}


.form-group {
    margin-bottom: 25px;


}

.form-group label {
   display: block;
  margin-bottom: 8px;
   color: #333;
   font-weight  :    500;
}


.form-group input,
.form-group select,
.form-group textarea {
	               background-color: white;
   border-radius: 8px;
  padding: 12px 15px;
    transition: border-color 0.3s ease;
    border: 2px solid #e0e0e0;
	 width: 100%;
   font-size: 16px;
     }



.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
   border-color: #2c5aa0;
}

.btn-submit {
   background-color : #2c5aa0;
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 8px;
     font-size: 16px;
   font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
   width: 100%;
}

.btn-submit:hover {
   background-color: #1e4080;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
}

.footer {
   background-color: #1a1a1a;
  color: white;
    padding    :     60px 0 20px 0;
}

.footer-content {
  display: grid;
			grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
	height: 40px;
  width: auto;
   margin-bottom: 15px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: #ccc;
    line-height    :       1.6;
}

.footer-links h4,
.footer-legal h4,
.footer-contact h4 {
   margin-bottom: 20px;
    color: white;
  font-weight: 600;
}

.footer-links ul,
.footer-legal ul


{
	list-style: none;
}

.footer-links li,
.footer-legal li
	{
  margin-bottom: 10px; 
	
}

.footer-links a,
.footer-legal a {
   text-decoration    :   none;
		transition: color 0.3s ease;
   color: #ccc;
}

.footer-links a:hover,
.footer-legal a:hover {
   color: #2c5aa0; 

}


.footer-contact p {
   color: #ccc;
    margin-bottom: 8px;
    line-height: 1.5;

}

.footer-bottom {
   border-top: 1px solid #333;
   padding-top: 20px;
    text-align: center;
   color: #999;


}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        flex-direction: column;
        background: white;
        width: 250px;
        height: calc(100vh - 80px);
        padding: 30px 20px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .workshop-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .services-overview h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .services-overview,
    .workshops-section,
    .contact-section {
        padding: 60px 0;
    }
    
    .cta-section {
        padding: 60px 0;
    }
}.nav-link.active {
  color: #2c5aa0;
      font-weight: 600;
}

.nav-link.active::after {
   width: 100%;
}

.about-hero {
   margin-top: 80px;
         padding: 120px 0;
  background: linear-gradient(135deg, #2c5aa0 0%, #1e4080 100%);
    color: white;
               text-align:center;
}

.about-hero-content h1 {
   font-size: 3.5rem; 
    font-weight: 700; 
  margin-bottom: 30px; 
	line-height: 1.2;
}

.about-hero-content p {
 font-size: 1.3rem;
   max-width    :   800px;
  margin: 0 auto;
    line-height: 1.7;
  opacity: 0.95;
}

.company-story {
    padding: 120px 0;
    background-color: #ffffff;
}

.story-content {
  display: grid;
   grid-template-columns  :  1.2fr 1fr;
   gap: 70px;
  align-items: center;
}

.story-text h2 {
  font-size: 2.8rem;
    margin-bottom: 30px;
  color: #1a1a1a;
   font-weight: 700;
}

.story-text p {
  font-size: 1.1rem;
    color: #666;
  margin-bottom: 25px;
  line-height: 1.8;
}

.story-stats {


    display: flex;
  gap: 40px;
   margin-top: 50px;


}

.stat-item {
   text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
   color   :   #2c5aa0;
   font-weight: 700;
  margin-bottom     :      8px;

}

.stat-item p {
      color: #888;
  font-size: 0.95rem;
  font-weight: 500;
}

.story-image img {
  width: 100%;
    border-radius:  15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.expertise-areas {

    padding: 120px 0;
    background-color: #f8f9fa;
}

.expertise-areas h2 
 {
       text-align: center;
	 font-size: 2.8rem;
   margin-bottom: 70px;
   color:    #1a1a1a;
  font-weight    :  700;
}

.expertise-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 35px;
}

.expertise-card {
   background: white;
  padding: 40px 30px;
    border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid #2c5aa0;
}

.expertise-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.expertise-card h3 {
   font-size:    1.5rem;
    color: #2c5aa0;
    margin-bottom     :20px;
   font-weight: 600;
}


.expertise-card p {
    color    :    #666;
    line-height: 1.7;
}

.methodology-section {
   padding: 120px 0; 
	  background-color: #ffffff;
}

.methodology-content {
  display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
         align-items: center; 

} 

.methodology-image img {
   width: 100%;
    border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
	
}

.methodology-text h2  
  {
   font-size: 2.8rem;
  margin-bottom: 30px;
    color: #1a1a1a;
  font-weight     :   700;
}

.methodology-text > p {
  font-size: 1.1rem;
     color: #666;
  margin-bottom: 40px;
   line-height: 1.8;
}

.methodology-steps {
	    display: flex;
   flex-direction: column;
   gap: 30px;
     }

.step-item {
    display: flex;
       gap: 20px;
	align-items: flex-start;
}

.step-number {
    background: #2c5aa0;
   color: white;
    width: 45px;
	height: 45px;
    border-radius: 50%;
  display: flex;
          align-items :      center;
    justify-content: center;
  font-weight: 700;
   font-size: 1.1rem;
   flex-shrink:0;


}

.step-content h4


{

	   font-size :  1.3rem;
    color: #1a1a1a;
   margin-bottom:   8px;
  font-weight: 600;
}

.step-content p


{
   color     :        #666;
   line-height: 1.6;
}

.values-section {
   padding: 120px 0;
	 background-color: #f8f9fa;
}

.values-section h2 {
   font-size: 2.8rem;
  text-align: center;
  font-weight: 700;
	 margin-bottom: 70px;
    color: #1a1a1a; 
	
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.value-card {
  background: white;
  padding: 40px 30px;
		 border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
	 transition :  transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
}

.value-card h3	{
          font-size: 1.5rem;
   color: #2c5aa0;
   margin-bottom: 20px;
   font-weight: 600;
}

.value-card p {
	color: #666;
   line-height     :    1.7;
}

.workshop-approach {
     padding: 120px 0;
  background-color: #ffffff;
     }

.workshop-approach-content {
	 display: grid;
    grid-template-columns: 1.2fr 1fr;
  gap: 70px;
    align-items: center;
}

.approach-text h2 {

  font-size     :        2.8rem;
   margin-bottom: 30px;
    color: #1a1a1a;
  font-weight: 700;
	}

.approach-text > p {
   font-size: 1.1rem;
      color: #666;
  margin-bottom: 25px;
    line-height: 1.8;
}

.approach-highlights {
   margin-top: 40px;
   display     :      flex;
    flex-direction: column;
    gap: 25px;
}

.highlight-item h4 {
       font-weight: 600;
    color  :      #2c5aa0;
   margin-bottom: 8px;
   font-size: 1.2rem; 
	
}

.highlight-item p {
  color    :    #666;
                    line-height: 1.6;
}

.approach-image img {
                    width: 100%;
   border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
} 

.thankyou-section {
    margin-top: 80px;
   padding: 120px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 70vh;
}

.thankyou-content {
	   display: grid;
    grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;}

.success-icon {
   text-align: center;
       margin-bottom: 40px;
}  

.checkmark-circle   {
   width: 80px;
   height: 80px;
	 background: #28a745;
    border-radius: 50%;
   display: inline-flex;
   align-items: center;
    justify-content: center;
  animation: pulse 2s infinite;
}

.checkmark {
   width     :  30px;
    height: 15px;
   border: 4px solid white;
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
}@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}.thankyou-main h1 {
  font-size    :    3.2rem;
  text-align: center;
    margin-bottom: 25px;
  color: #1a1a1a;
   font-weight: 700;
}

.thankyou-message {
   	 font-size:  1.2rem;
  text-align: center;
    color: #666;
    margin-bottom: 60px;
   line-height: 1.7;
   max-width: 600px;
   margin-left: auto;
  margin-right: auto;
	}



.next-steps h2     {
  font-size: 2.2rem;
  margin-bottom   :40px;
  color: #1a1a1a;
  font-weight: 600;
   text-align: center; 

}

.steps-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap   : 30px;
	margin-bottom: 60px;
}

.step-card {
   background: white;
  padding: 30px 25px;
   border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
   text-align: center;
    transition: transform 0.3s ease;
}

.step-card:hover		{

  transform: translateY(-5px);


}

.step-card .step-number {
    background: #2c5aa0;
	color: white;
	width: 40px;
   height  :40px;
    border-radius: 50%;
  display: inline-flex;
  align-items: center;
   justify-content: center;
	font-weight: 700;
  margin-bottom:       20px;
}

.step-card h3


{
    font-size: 1.3rem;
    color: #1a1a1a;
  margin-bottom: 15px;
       font-weight: 600;
}

.step-card p  
  {
  color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}  

.useful-links h2 {
   font-size: 2.2rem;
   margin-bottom: 20px;
                    color: #1a1a1a;
     font-weight: 600;
  text-align: center;
}

.useful-links > p     {
  color: #666;
    text-align: center;
      font-size: 1.1rem;
    margin-bottom     :     30px;
}

.links-grid {
   display   :      grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 25px;
}

.link-card {
	 background: white;
  padding: 25px;
    border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid #2c5aa0;
}

.link-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.link-card h4 {
  color: #2c5aa0;
   margin-bottom: 10px;
   font-weight: 600;
    font-size: 1.2rem;
}

.link-card p
	{

	   color:     #666;
  line-height: 1.5;
  margin :   0;
	}

.thankyou-sidebar {
    display: flex;
	flex-direction: column;
   gap:       30px;
}

.contact-reminder,
.expertise-reminder {
    background: white;

	   padding: 30px;

	  border-radius     :  15px;

	  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.contact-reminder h3,
.expertise-reminder h3  
  {
   font-size: 1.4rem;
          color: #2c5aa0;
   margin-bottom: 20px;
    font-weight: 600;
}

.contact-info p {
   color: #666;
  margin-bottom: 15px;
    line-height: 1.6;
}

.contact-info strong {
	  color: #333;

  font-weight: 600;

}

.expertise-list {
    list-style: none;
   padding: 0;
}

.expertise-list li {
   padding: 8px 0;
   color: #666;
   position: relative;
    padding-left: 20px;
}

.expertise-list li::before
{
	  content: "•";
  color: #2c5aa0;
    position: absolute;
  left: 0;
  font-weight: bold;
	}

.testimonial-preview {
  padding: 80px 0;
	background-color :   #f8f9fa;
}

.testimonial-preview h2
{
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
    color: #1a1a1a;
         font-weight: 700;
}

.testimonial-grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap   :   40px;
}

.testimonial-card {
   background: white;
   padding: 35px;
  border-radius:  15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
   position: relative;
}

.testimonial-card::before {
  content: '"';
   font-size    : 4rem;
  color: #2c5aa0;
    position: absolute;
   top: 10px;
   left  :     25px;
    line-height   :   1;
  opacity: 0.3; 

}

.testimonial-card p {
   color: #666;
   line-height: 1.7;
   margin-bottom: 25px;
  font-style: italic;
  padding-top: 20px;

}

.testimonial-author strong {
	 color  :        #1a1a1a;
   font-weight: 600;
	display: block;
  margin-bottom: 5px;
}

.testimonial-author span {
    color: #888;
   font-size: 0.9rem;
}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-hero-content p {
        font-size: 1.1rem;
    }
    
    .story-content,
    .methodology-content,
    .workshop-approach-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .methodology-content {
        grid-template-columns: 1fr;
    }
    
    .methodology-image {
        order: -1;
    }
    
    .story-stats {
        justify-content: space-around;
        gap: 20px;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .expertise-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .methodology-steps {
        gap: 25px;
    }
    
    .thankyou-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .thankyou-main h1 {
        font-size: 2.5rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 80px 0;
    }
    
    .about-hero-content h1 {
        font-size: 2rem;
    }
    
    .story-text h2,
    .methodology-text h2,
    .approach-text h2 {
        font-size: 2.2rem;
    }
    
    .expertise-areas h2,
    .values-section h2 {
        font-size: 2.2rem;
    }
    
    .expertise-card,
    .value-card {
        padding: 30px 20px;
    }
    
    .story-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .thankyou-main h1 {
        font-size: 2rem;
    }
    
    .thankyou-section {
        padding: 80px 0;
    }
}.page-content {
    max-width     :  800px;
    margin: 0 auto;
  padding: 100px 20px;

}

.page-content h1 {
   font-size: 2.5rem;
   color: #1a1a1a;
   font-weight: 700;
	margin-bottom: 40px;
  text-align: center;
}

.page-content h2 {
    font-size   :1.8rem;
   color: #2c5aa0;
  font-weight: 600;
	margin: 30px 0 20px;
}  

.page-content p {
	font-size: 1.1rem;
   color: #666;
    line-height: 1.7;
   margin-bottom   :     20px;
}

.page-content ul {
   list-style: none;
  padding-left: 20px;

}

.page-content ul li {
  padding: 10px 0;
	position    : relative;
	padding-left: 25px;
}

.page-content ul li::before {
  content: "✓";
  position   :        absolute;
  color : #2c5aa0;
    left: 0;
    font-weight     :    bold;
}