* {
       margin: 0;
  padding  :  0;
   box-sizing: border-box;
} 

body     {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
	line-height: 1.6; 
   color: #2c3e50; 
  background: #f8f9fa; 

}

.main-navbar  
  {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
      padding: 1.2rem 0;
       position: sticky;
      top    :      0;
      z-index: 1000;
     box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.nav-container {

	    max-width:      1200px;
    margin: 0 auto;
   padding: 0 20px;
   display: flex;
    justify-content: space-between;
   align-items: center;
	}

.brand-link {
   display: flex;
       align-items: center;
}

.nav-logo {
  height: 45px;
   width: auto;
  filter: brightness(0) invert(1);
}

.nav-links {

	  display:       flex;
   list-style  :      none;
	gap: 2.5rem;
  align-items: center;
     }

.nav-links a {
  color: #ecf0f1; 
	  text-decoration: none; 
	    font-size: 1.05rem; 
	   font-weight :       500; 
	    transition: color 0.3s ease; 
	  position: relative;



}

.nav-links a::after {

  content: '';
  position: absolute;
    bottom: -5px;
	 left: 0;
  width: 0;
    height: 2px;
   background: #3498db;
   transition: width 0.3s ease;
     }

.nav-links a:hover {
      color: #3498db;
}

.nav-links a:hover::after {
    width :100%;
}

.burger-menu {
   display: none;
   flex-direction: column;
    cursor: pointer;
   gap: 5px;
}

.burger-menu span {
   width: 28px;
   height: 3px;
    background: #ecf0f1;
     transition: all 0.3s ease;
  border-radius: 2px;
}

.burger-menu.active span:nth-child(1)     {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.hero-section {

   display  :    grid;
   grid-template-columns   :  1fr 1fr;
               max-width: 1200px;
   gap     :      50px;
  align-items: center;
   margin: 60px auto;
    padding: 0 20px;}

.hero-content h1 {
    font-size: 3.2rem;
	 color: #1a1a2e;
  margin-bottom: 20px;
   line-height    :   1.2;
}

.hero-subtitle {
                    font-size :1.25rem;
  color: #555;
  margin-bottom: 35px;


}

.hero-actions {
    display: flex;
     gap: 20px;
}

.btn-primary, .btn-secondary, .btn-cta, .btn-submit {
   padding: 14px 32px;
  text-decoration: none;
    border-radius: 8px;
  font-size:       1.05rem;
    font-weight    :   600;
    transition: all 0.3s ease;
    display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
	  color    :     white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(52,152,219,0.3);
}

.btn-secondary {
   background     :     transparent;
    color   :#3498db;
	border: 2px solid #3498db;
}

.btn-secondary:hover  
  {
    background: #3498db;
    color: white;
}

.hero-visual img  {
	 width: 100%;
	border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.intro-section, .programs-showcase, .approach-section, .contact-section {
	    padding: 80px 20px;}

.content-wrapper {
	   max-width: 1200px;
    margin: 0 auto;
	

}

h2
{
                    font-size: 2.5rem;
   color: #1a1a2e;
  margin-bottom    :25px;
  text-align: center;
}  

.intro-section p {
     font-size: 1.15rem;
       color    :  #555;
      text-align: center;
          max-width: 800px;
      margin     :       0 auto 50px;}

.stats-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
    margin-top : 50px;
}  

.stat-item		{
   background: white;
    padding: 35px;
               border-radius  :     12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  text-align: center;
   transition: transform 0.3s ease; 

}

.stat-item:hover {
  transform: translateY(-8px);


}

.stat-icon {
    width: 60px;
    height: 60px;
   margin-bottom: 20px;
    stroke   :       #3498db;
        fill: none;
                    stroke-width: 2;
    stroke-linecap  :     round;
    stroke-linejoin    :    round;
}

.stat-item h3 {
		 font-size   :   1.4rem;
  color: #2c3e50;
    margin-bottom: 15px;
}

.stat-item p {
  color: #666;
    font-size :  1rem;
}

.programs-showcase{
  background: linear-gradient(135deg, #ecf0f1 0%, #ffffff 100%);
}

.programs-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap     :  35px;
    margin-top: 50px;
}

.program-card {
   background: white;
               border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.program-card:hover {
  transform: translateY(-10px); 
	
}

.program-image img
{

	   width: 100%;
      height: 250px;
      object-fit: cover;}

.program-details {
    padding: 30px;
}

.program-details h3   {
  font-size     : 1.5rem;
    margin-bottom: 15px;
      color: #1a1a2e;
}

.program-details p {

	   color: #666;
    margin-bottom: 20px;
  line-height: 1.7;

}

.learn-more {
    color: #3498db;
  text-decoration: none;
  font-weight:        600;
        font-size :     1.05rem;
  transition     :  color 0.3s ease;
} 

.learn-more:hover {
    color: #2980b9;
}

.cta-banner {
  background: linear-gradient(135deg, #2c3e50 0%, #1a1a2e 100%);
	padding: 70px 20px;
   display: grid;
   grid-template-columns: 1.2fr 1fr;
   gap: 50px;
    align-items   :   center;
	max-width: 1200px;
  margin: 0 auto;
	border-radius: 15px;
}

.cta-content 
 {
    color: white;
}

.cta-content h2 {
  color: white;
    text-align: left;
   margin-bottom: 20px;
}

.cta-content p		{
  font-size: 1.15rem;
	                    margin-bottom: 30px;
	    opacity: 0.9;
}

.btn-cta {
    color: white;
    background: #3498db;
}

.btn-cta:hover {
  background    :  #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(52,152,219,0.4);
}

.cta-image img
	{
	   width: 100%;
               border-radius  :      10px;


}

.approach-content {
    max-width: 900px;
        margin     :     0 auto; 
	
}

.approach-text p {
    font-size:      1.1rem;
  color: #555;
	margin-bottom: 20px;
	line-height   : 1.8;
}

.approach-features {


    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap    :  25px;
   margin-top: 40px;
	

}

.feature-item {
   display: flex;
         align-items: center;
   gap: 15px;
    background: #f8f9fa;
  padding: 20px;
   border-radius: 8px;
}

.feature-icon {
   width: 40px;
   height: 40px;
          stroke    :      #3498db;
    fill: none;
  stroke-width: 2;
    stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-item span {
   font-weight  :    600;
         color :      #2c3e50;
     }

.contact-intro {
	text-align: center;
   margin-bottom: 50px;
}

.contact-intro p {
  font-size  :       1.1rem;
	color: #666;
  max-width: 700px;
    margin :    0 auto;
}

.contact-container {
    display: grid;
  grid-template-columns: 1.5fr 1fr;
    gap   :  50px;
   align-items: start;
}

.contact-form {

    background: white;
     padding: 40px;
	border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);


}

.form-group {
  margin-bottom: 25px;
}


.form-group label {
  display: block;
    margin-bottom     :   8px;
    color: #2c3e50;
    font-weight:     600;
}

.form-group input,
.form-group select,
.form-group textarea {
   width: 100%;
  padding: 12px 15px;
          border: 2px solid #e0e0e0;
   border-radius: 6px;
                    font-size: 1rem;
  transition: border-color 0.3s ease;
   font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

	      outline:       none;
  border-color: #3498db;
}

.btn-submit   {
    width: 100%;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
}

.btn-submit:hover {


  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52,152,219,0.3);

}

.contact-info {
  display:        flex;
    flex-direction: column;
               gap: 30px;
}

.info-block {
	display: flex;
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius :12px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.info-icon {
    width: 45px;
    height   :45px;
    stroke: #3498db;
   fill: none;
  stroke-width    :    2;
  stroke-linecap   :round;
   stroke-linejoin: round;
    flex-shrink: 0;
}

.info-block h3 {
  font-size    : 1.2rem;
	      color: #1a1a2e;
	  margin-bottom: 10px; 
	
}

.info-block p {
   line-height: 1.7;
  color: #666;
}

.site-footer {
  background: #1a1a2e;
  color: #ecf0f1;
    padding: 50px 20px 20px;
}

.footer-content {
      max-width: 1200px;
     margin: 0 auto;
   display: grid;
  grid-template-columns: 1.5fr 2fr;
    gap: 50px;
    margin-bottom: 40px;
	
} 

.footer-brand p {
  margin-top: 15px;
  color: #bdc3c7;
}

.footer-logo {

     height: 50px;
    width: auto;
  filter: brightness(0) invert(1);
     }

.footer-links  {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
   gap: 40px;
}

.footer-column h4 {
  color: white;
  margin-bottom: 20px;
   font-size: 1.1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
	margin-bottom: 12px; 
	
}

.footer-column a {
      color: #bdc3c7;
     text-decoration: none;
     transition: color 0.3s ease;

}

.footer-column a:hover {

	    color: #3498db;
     }

.footer-bottom    {
     text-align   :     center;
   padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color  :#95a5a6;
}@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #16213e;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 30px 0;
        gap: 1.5rem;
    }

    .nav-links.active {
        left: 0;
    }

    .burger-menu {
        display: flex;
    }

    .hero-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .cta-banner {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .stats-grid,
    .programs-grid {
        grid-template-columns: 1fr;
    }

    .approach-features {
        grid-template-columns: 1fr;
    }
}.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;
    }
}.services-hero	{
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
  padding: 120px 20px 80px;
   text-align  :     center;
  color: white;
}

.services-hero-content h1 {

  font-size  :3rem;
  margin-bottom  :       20px;
  color: white;}

.services-hero-content p {
   font-size     :     1.3rem;
  opacity     :   0.9;
  max-width: 700px;
   margin: 0 auto;
}

.services-overview {
  padding: 80px 20px;
   background  :      #f8f9fa;
}

.overview-intro  
  {
   text-align: center;
  margin-bottom: 60px;
}

.overview-intro p {

	  color: #666;
 line-height: 1.8;
  max-width: 850px;
   margin: 20px auto 0;
   font-size: 1.15rem;

     }

.services-detailed {
  display: flex;
	flex-direction: column;
  gap: 50px;
	max-width: 1100px;
  margin: 0 auto;
}

.service-card {
      background: white;
    border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
					gap: 0;
   transition: transform 0.3s ease, box-shadow 0.3s ease;}

.service-card:hover {
  transform: translateY(-5px); 
	  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
     }

.service-card.featured {

    border     :  3px solid #3498db;}

.service-image {
   height: 100%;
}

.service-image img {
   width: 100%;
 height: 100%;
   object-fit: cover;
	
}

.service-content {
  padding: 40px;


}

.service-tag


{
  display: inline-block;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 6px 18px;
 border-radius: 20px;
   font-size: 0.85rem;
	font-weight: 600;
    margin-bottom: 15px;
}

.service-content h3 {
    color: #1a1a2e;
    font-size: 2rem;
    margin-bottom: 20px;
}

.service-content > p {
	font-size: 1.05rem;
    color  :     #555;
	line-height: 1.7;
    margin-bottom: 30px;


}

.service-features {

	        display: flex;
    flex-direction: column;
  gap     :    15px;
   margin-bottom: 30px; 
	
}

.feature-point {
  display: flex;
       align-items: center;
   gap: 12px;
}

.check-icon {

    width: 24px;
	height: 24px;
	stroke: #27ae60;
   fill: none;
   stroke-width: 2.5;
  stroke-linecap: round;
   stroke-linejoin: round;
   flex-shrink: 0;


}

.feature-point span     {
   color: #2c3e50;
   font-size:        1rem;
}

.service-cta {
  margin-top: 25px;
}

.btn-service {
       display: inline-block;
    padding: 14px 35px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   color: white;
    text-decoration: none;
   border-radius: 8px;
               font-weight: 600;
    font-size: 1.05rem;
  transition: all 0.3s ease;
}

.btn-service:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(52,152,219,0.3);
	
}

.additional-services {

   padding: 80px 20px;
   background: white;

}

.extra-services-grid {
        display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 35px;
   margin-top: 50px;
}

.extra-service {
  background: #f8f9fa;
 padding   :    40px 30px;
   border-radius    :        12px;
    text-align: center;
  transition   :       all 0.3s ease;
}

.extra-service:hover {
    background: white;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transform: translateY(-5px);
} 

.extra-icon {
   height  :  60px;
	 stroke-linejoin: round;
  width: 60px;
   margin: 0 auto 25px;
	fill: none;
	 stroke-linecap: round;
  stroke: #3498db;
  stroke-width: 2;
}

.extra-service h3 {
   font-size: 1.5rem;
               color: #1a1a2e;
  margin-bottom:      15px;
}

.extra-service > p {
   line-height: 1.7;
    margin-bottom: 25px;
    color: #666;
}

.workshop-topics {
   padding: 0;
   list-style: none;
    text-align: left;
}

.workshop-topics li {
  padding: 10px 0 10px 25px;
   color: #555;
  position: relative;
   border-bottom: 1px solid #e0e0e0;
}

.workshop-topics li:last-child  {
    border-bottom: none;
}

.workshop-topics li::before

{
  content: "→";
	    position: absolute;
	   left: 0;
	   color: #3498db;
	    font-weight: bold;
}

.process-section {
   padding: 80px 20px;
  background: linear-gradient(135deg, #ecf0f1 0%, #ffffff 100%);
}

.process-steps {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 40px;
     margin-top: 50px;
}

.process-step {
               background: white;
				 padding: 35px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: translateY(-8px);
}

.step-number {

					opacity: 0.2;
         font-weight: 700;
    font-size: 3rem;
   color: #3498db;
    margin-bottom  :        20px;


}

.step-content h3	{
    font-size :      1.4rem;
    margin-bottom: 15px;
    color: #1a1a2e;
} 

.step-content p {
  color: #666;
      line-height: 1.7;
}

.testimonials-section {
      padding :      80px 20px;
   background  : white;
}

.testimonials-grid {
               display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap   :35px;
  margin-top     :    50px;

}

.testimonial-card {
   background: #f8f9fa;
  padding: 35px;
  border-radius: 12px;
    border-left: 4px solid #3498db;
    transition: all 0.3s ease;
}

.testimonial-card:hover


{
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transform: translateY(-5px); 

}

.testimonial-content p {
    font-size: 1.05rem;
   color:        #555;
   line-height: 1.8;
    font-style: italic;
   margin-bottom: 25px;
} 

.testimonial-author strong {
  color: #1a1a2e;
    margin-bottom: 5px;
                    font-size: 1.1rem;
  display: block;
}

.testimonial-author span {

  color: #888;
  font-size:      0.95rem;
	}

.cta-services {
  background: linear-gradient(135deg, #2c3e50 0%, #1a1a2e 100%);
			padding    : 80px 20px;
   text-align: center;
	
}

.cta-services-content {
   max-width: 800px;
    margin: 0 auto;
}

.cta-services-content h2
{
  margin-bottom: 20px;
  font-size: 2.5rem;
    color: white;
}



.cta-services-content p {
  color: rgba(255,255,255,0.9);

	    font-size: 1.2rem;

	   margin-bottom: 35px;
}

.btn-large{
  display: inline-block;
    padding:      18px 45px;
  background: #3498db;
   color: white;
  text-decoration: none;
    border-radius: 8px;
  font-size: 1.15rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-large:hover {
   background: #2980b9; 
  transform: translateY(-3px); 
  box-shadow: 0 10px 25px rgba(52,152,219,0.4);
}

.thankyou-section {
    min-height: 70vh;
   display: flex;
  align-items: center;
  justify-content: center;
    padding :        80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.thankyou-container {
  text-align   : center;
  max-width: 900px;
    margin: 0 auto;
}

.thankyou-icon {
	 margin-bottom: 30px;
}

.success-icon {
  width: 100px;
   height:     100px;
   stroke: #27ae60;
  fill: none;
    stroke-width: 2;
  stroke-linecap: round;
	stroke-linejoin: round;
  animation: successPulse 1.5s ease-in-out;
}@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}.thankyou-container h1
{
  font-size :   2.8rem;
    color   :     #1a1a2e;
   margin-bottom: 20px;
}

.thankyou-message {
   font-size: 1.2rem;
  color: #666;
    margin-bottom:   50px;
   line-height: 1.7;
}

.thankyou-details {
	background: white;
   padding: 50px;
	 border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  margin-bottom: 40px;

}

.thankyou-details h2 {
  font-size: 2rem;

   color: #1a1a2e;

  margin-bottom: 40px;
}

.next-steps {
   display :        grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  text-align: left;
}

.next-step-item {
  display: flex;
   gap: 20px;
  align-items: start;

}

.step-icon {

  flex-shrink    :      0;
	}

.step-img


{
  width: 50px;
  height: 50px;
   stroke: #3498db;
   fill: none;
   stroke-width: 2;
    stroke-linecap: round;
		stroke-linejoin: round;
}

.step-text h3
	{
   font-size: 1.2rem;
	color: #1a1a2e;
	 margin-bottom  :       10px;
}

.step-text p {
	 color: #666;
  font-size: 0.95rem;
    line-height: 1.6;
}

.thankyou-actions {
   margin-bottom: 50px;
         justify-content:   center;
   display     :  flex;
   gap: 20px;
}

.thankyou-info {
    background : #f8f9fa;

	  padding  :       35px;

	    border-radius: 12px;
}

.thankyou-info h3 {
    font-size   :  1.5rem;
   color     :#1a1a2e;
    margin-bottom: 15px;
}

.thankyou-info > p   {
	color: #666;
  margin-bottom: 25px;
}

.quick-contact {
  gap: 30px;
    flex-wrap: wrap;
   justify-content: center;
  display: flex;
}

.contact-method {
          display: flex;
    align-items: center;
  gap: 12px;
}

.contact-icon {
  width: 30px;
    height: 30px;
   stroke: #3498db;
  fill: none;
    stroke-width: 2;
	stroke-linecap: round;
          stroke-linejoin: round;
}

.contact-method span {
   color: #2c3e50;
    font-weight  :       600; 

}

.explore-section {
    padding     :    80px 20px;
    background: white; 

}

.explore-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
  margin-top: 50px;
}

.explore-card {
    background: white;
    border-radius: 12px;
                    overflow:hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-decoration: none;
    transition: all 0.3s ease;


}

.explore-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.explore-card img {
   width: 100%;
   height: 200px;
         object-fit: cover;
}

.explore-content {
          padding     :        25px;
}

.explore-content h3 {
     color: #1a1a2e;
   margin-bottom: 10px;
  font-size: 1.4rem;
}



.explore-content p
	{
  color: #666;
  line-height :1.6;
} @media (max-width: 968px) {
    .services-hero-content h1 {
        font-size: 2.3rem;
    }

    .service-card {
        grid-template-columns: 1fr;
    }

    .service-image {
        height: 250px;
    }

    .thankyou-container h1 {
        font-size: 2.2rem;
    }

    .thankyou-details {
        padding: 30px 20px;
    }

    .next-steps {
        grid-template-columns: 1fr;
    }

    .thankyou-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .quick-contact {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .services-hero-content h1 {
        font-size: 1.8rem;
    }

    .services-hero-content p {
        font-size: 1.1rem;
    }

    .service-content {
        padding: 25px;
    }

    .service-content h3 {
        font-size: 1.5rem;
    }

    .thankyou-container h1 {
        font-size: 1.8rem;
    }

    .success-icon {
        width: 70px;
        height: 70px;
    }
}