* {
   margin: 0;
   padding: 0;
    box-sizing: border-box;
}

body {

	  font-family: 'Segoe UI', Tahoma, sans-serif;
    line-height: 1.6;
	color: #2c3e50;
   background: #ffffff;}

img {
   max-width: 100%;
    height: auto;
	 display: block;
}

a {


  text-decoration: none;
	color: inherit;
        transition: color 0.3s;

}

ul {
   list-style: none;


}

.site-header {
   background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
    z-index: 1000;
  padding: 1.2rem 0;
}

.header-container {
    max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
   justify-content: space-between;
    align-items: center; 

}

.brand-logo  {
	height: 45px;
    width: auto;
}

.main-navigation ul {
   display: flex;
  gap: 2.5rem;
}

.main-navigation a {
   font-size: 1.05rem;
         font-weight: 500;
   color: #34495e;
    position: relative;
}

.main-navigation a:hover {
   color: #5d4e87;
}



.main-navigation a::after {
	  content: '';
   position: absolute;
   bottom: -5px;
	left: 0;
     width: 0;
	height: 2px;
  background: #5d4e87;
          transition  :width 0.3s;
	}

.main-navigation a:hover::after {
   width: 100%;
}

.menu-trigger {
      display: none;
  background: none;
  border: none;
    cursor: pointer;
                    flex-direction     : column;
  gap: 5px;
    padding: 8px;
}

.burger-line {
  width: 28px;
  height: 3px;
		 background: #34495e;
  transition: all 0.3s;
}

.hero-area {
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
	padding: 80px 20px;
}

.hero-content-wrapper {
   max-width   :      1200px;
    margin: 0 auto;
    display: grid;
   grid-template-columns    :       1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text-block h1     {
    font-size: 3rem;
      color: #2c3e50;
      margin-bottom: 1.5rem;
       line-height: 1.2;
      font-weight: 700;


} 

.hero-description


{
    font-size: 1.2rem;
     color: #546e7a;
       margin-bottom: 2rem;
       line-height: 1.8;
}

.hero-action-btn {
	   display: inline-block;
   background: #5d4e87;
   color    :      white;
  padding    :     16px 40px;
  border-radius: 6px;
    font-weight: 600;
  font-size:1.1rem;
	 transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(93,78,135,0.3);
	
     }

.hero-action-btn:hover {
    background: #4a3d6b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(93,78,135,0.4);
}

.hero-img {
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12); 

}

.approach-section {
               padding: 100px 20px;
  background: #ffffff;
}

.approach-wrapper {
  max-width: 1200px;
   margin   :     0 auto;

}

.approach-wrapper h2 {
  font-size: 2.5rem;
    text-align: center;
   margin-bottom: 60px;
    color: #2c3e50;
}

.approach-grid {

   display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
	}


.approach-card {
    padding: 40px 30px;
	background: #f8f9fa;
    border-radius: 10px;
    transition:     all 0.3s;
}

.approach-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.1); 

}

.card-icon-holder {
                    width: 70px;
  height: 70px;
    margin-bottom :     25px;
}

.approach-icon {
   width: 100%;
  height:   100%;
    stroke: #5d4e87;
	fill: none;
		 stroke-width: 2;
   stroke-linecap: round;
    stroke-linejoin: round;
}

.approach-card h3  
  {
                    font-size: 1.5rem;
   margin-bottom: 15px;
    color: #2c3e50;
}

.approach-card p {
	 color: #546e7a; 
	   line-height: 1.7;
}

.transformation-showcase


{
  background: linear-gradient(135deg, #e8ecf1 0%, #f5f7fa 100%);
   padding: 100px 20px;
}

.transformation-container {
	max-width: 1200px;
   margin: 0 auto;
   display   :  grid;
   grid-template-columns: 1fr 1fr;
   gap: 60px;
          align-items: center;
}

.transformation-img

{
	border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.transformation-content h2 {
  font-size: 2.5rem;
   margin-bottom:      25px;
   color     :   #2c3e50;
}

.transformation-content p {


   font-size:1.1rem;
  color   :     #546e7a;
    margin-bottom   :     20px;
          line-height: 1.8;

}

.transformation-benefits {
  margin-top     :   30px; 

}  

.transformation-benefits li {
    padding: 12px 0 12px 35px;
	position: relative;
  color: #34495e;
	font-size: 1.05rem;
}

.transformation-benefits li::before {
     color: #5d4e87;
  position: absolute;
  content: '✓';
   font-size   :  1.3rem;
  left: 0;
    font-weight: bold;
}

.program-offerings {


    background: #ffffff;
   padding: 100px 20px;
     }

.offerings-wrapper {
    max-width :    1200px;
  margin: 0 auto;
}

.offerings-wrapper h2{
  font-size: 2.5rem;
   text-align: center;
   margin-bottom: 60px;
  color: #2c3e50;
}

.programs-grid {
	gap: 50px;

  display  :     grid;
}

.program-item {
	align-items: center;
    border-radius: 10px;
    gap: 40px;
   grid-template-columns:        400px 1fr;
  padding: 30px;
          display :        grid;
   background: #f8f9fa;
}

.program-item:nth-child(even)  
  {
   grid-template-columns: 1fr 400px;
}

.program-item:nth-child(even) .program-img
{
  order: 2;
}

.program-img {
   border-radius: 8px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}

.program-details h3		{
  font-size: 1.8rem;
    margin-bottom: 15px;
  color: #2c3e50;
}

.program-details p {

	    color: #546e7a;
    font-size: 1.05rem;
 line-height: 1.8;}

.cta-banner {
  background: linear-gradient(135deg, #5d4e87 0%, #4a3d6b 100%);
	padding: 80px 20px;
	 text-align: center;
   color: white;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;


}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px; 
	
}

.cta-content p {
          font-size: 1.2rem; 
   margin-bottom: 35px; 
   opacity: 0.95;
}

.cta-button {
   display  :inline-block;
  background: white;
 color  :  #5d4e87;
   padding: 16px 45px;
    border-radius:6px;
       font-weight: 600;
    font-size :     1.1rem;
    transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(255,255,255,0.3);
}



.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255,255,255,0.4);
}

.contact-area {
    padding: 100px 20px;
   background: #f8f9fa;
}

.contact-wrapper {
	    max-width: 1200px;
    margin: 0 auto;
	display: grid;
 grid-template-columns: 1fr 1.2fr;
    gap: 60px;

     }

.contact-info-block h2	{
      font-size:     2.5rem;
 margin-bottom: 20px;
	 color    : #2c3e50;
}



.contact-info-block > p {
  margin-bottom: 40px;
  color :   #546e7a;
    font-size: 1.1rem;
   line-height: 1.8;
}

.info-details {
         display: flex;
  flex-direction: column;
   gap: 30px;
}

.detail-item {
    display: flex;
    gap: 20px;
  align-items   :   flex-start;
}

.detail-icon {


  stroke-width: 2;
    stroke: #5d4e87;
  stroke-linecap     :   round;
          fill: none;
  height: 45px;
    stroke-linejoin  :    round;
   width   :       45px;
  flex-shrink: 0;
}

.detail-item strong {
      display     :       block;
    color: #2c3e50;
   font-size: 1.1rem;
    margin-bottom: 5px;
}

.detail-item p {
	    color: #546e7a;
	  line-height: 1.6;

}

.inquiry-form  {
  background: white;
    padding: 40px;
  border-radius  :      10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-group {
	    margin-bottom:   25px;
}

.form-group label {

  display: block;
   margin-bottom: 8px;
    color: #34495e;
    font-weight: 500;
	}

.form-group input,
.form-group select,
.form-group textarea {
   width :        100%;
        padding    :     14px;
    border: 2px solid #e0e0e0;
   border-radius: 6px;
   font-size: 1rem;
  font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline  :  none;
  border-color: #5d4e87; 

}

.form-group textarea {


    resize: vertical;
     }

.submit-btn {
  width: 100%;
    -moz-border-radius: 6px;
  background :     #5d4e87;
  color: white;
               padding:16px;
  border: none;
   border-radius :  6px;
    font-size  :       1.1rem;
  font-weight   :     600;
  cursor: pointer;
    transition: all 0.3s;
  -moz-transition: all 0.3s;
    -o-transition     :     all 0.3s;
}

.submit-btn:hover {
   background: #4a3d6b;
  transform: translateY(-2px);
}  

.site-footer {
  background: #2c3e50;
  color: white;
    padding     : 60px 20px 0;
}

.footer-container {
  max-width: 1200px;
   margin: 0 auto;
    display     : grid;
       grid-template-columns: 1.5fr 2fr;
   gap: 60px;
  padding-bottom: 40px;
}

.footer-brand p {
  color: #bdc3c7;
  line-height: 1.7;
  margin-top: 20px;
}

.footer-logo {
   height: 40px;
   width: auto;
  filter: brightness(0) invert(1);
}

.footer-links-section		{
    display: grid;
  grid-template-columns: repeat(3, 1fr);
   gap :   40px;
}

.footer-column h4 {
   margin-bottom: 20px;
   font-size :        1.1rem;
}

.footer-column ul {
		 display: flex;
  flex-direction: column;
  gap: 12px;
} 

.footer-column a {

	  color: #bdc3c7;
  transition: color 0.3s;
     }

.footer-column a:hover {
    color: white;
}

.footer-column li {
  color: #bdc3c7;
   font-size: 0.95rem;
}

.footer-bottom
	{
  border-top: 1px solid #34495e;
    padding: 25px 0;
               text-align: center;
}

.footer-bottom p	{
  color: #95a5a6;
	 font-size: 0.9rem;
}@media (max-width: 968px) {
    .menu-trigger {
        display: flex;
    }

    .main-navigation {
        position: fixed;
        top: 76px;
        left: -100%;
        width: 100%;
        background: white;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        transition: left 0.3s;
        padding: 20px;
    }

    .main-navigation.active {
        left: 0;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 0;
    }

    .main-navigation li {
        border-bottom: 1px solid #ecf0f1;
        padding: 15px 0;
    }

    .hero-content-wrapper,
    .transformation-container,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text-block h1 {
        font-size: 2.2rem;
    }

    .approach-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .program-item,
    .program-item:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .program-item:nth-child(even) .program-img {
        order: 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .hero-text-block h1 {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .approach-wrapper h2,
    .offerings-wrapper h2,
    .transformation-content h2,
    .contact-info-block h2,
    .cta-content h2 {
        font-size: 1.8rem;
    }

    .inquiry-form {
        padding: 25px;
    }
}.policySection  {
  padding: 80px 2rem;
   background: #f8f9fa; 

}

.policyContainer {
    max-width: 800px;
      margin :        0 auto;
        text-align: left;
}

.policyContainer h2 {
    margin-bottom:        1.5rem; 
  font-size: 2.5rem; 
        font-weight: 700; 
	color    :   #2c3e50;
	
}

.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, #5d4e87 0%, #4a3d6b 100%);
  padding: 120px 20px 80px;
	 text-align: center;
  color: white;
}

.services-hero-content h1 {
  font-size: 3rem;
	margin-bottom :     20px;
   font-weight    :       700;}

.services-hero-content p {
	font-size: 1.3rem;
  max-width: 700px;
   margin: 0 auto;
	opacity : 0.95;
}

.services-overview {

    background: #ffffff;
  padding: 100px 20px; 
	}  

.services-container {
    max-width: 1200px;
  margin: 0 auto;
	display: flex;
   flex-direction    : column;
   gap: 80px;
}

.service-detailed-card {
   align-items: start;
          grid-template-columns: 450px 1fr;
  gap: 50px;
  display: grid;
}

.service-detailed-card.reverse {
  grid-template-columns   :1fr 450px;
}

.service-detailed-card.reverse .service-card-image {
  order: 2;
}



.service-card-image img {
     width: 100%;
   border-radius     :   12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}



.service-card-content h2 {
	   font-size: 2.2rem;
               color: #2c3e50;
   margin-bottom     :   15px;
	


}

.service-meta {
	    display   :  flex;
   gap: 20px;
    margin-bottom    :    20px;
    flex-wrap: wrap;
     }


.meta-item{
    background: #f0f3f7;
    padding: 8px 18px;
   border-radius: 20px;
   font-size    :0.9rem;
	color: #5d4e87;
   font-weight: 500;
}

.service-card-content > p {
  font-size: 1.1rem;
  color: #546e7a;
   line-height: 1.8;
      margin-bottom: 30px;
	}

.service-features,
.service-benefits {
    margin-bottom: 25px;
}

.service-features h3,
.service-benefits h3 {
  font-size: 1.3rem;
   color    :        #2c3e50;
                    margin-bottom :   15px;
}

.service-features ul {
	 display  :flex;
    flex-direction: column;
  gap:    10px;
}

.service-features li {
    padding-left: 30px;
          position  :relative;
  color: #34495e;
    line-height: 1.6;
}



.service-features li::before {
  content: '→';
    position: absolute;
  left: 0;
   color: #5d4e87;
   font-weight: bold;
}

.service-benefits p {

	  color: #546e7a;
  line-height: 1.8;

}

.additional-services {
  background    :      #f8f9fa;
   padding: 100px 20px;
}

.additional-services-wrapper {
	  max-width :  1200px; 
  margin:   0 auto;


}

.additional-services-wrapper h2 {
   font-size: 2.5rem;
   text-align: center;
		margin-bottom: 60px;
    color: #2c3e50;
}

.additional-grid {
   display: grid;
  grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.additional-card {
        background: white;
    padding: 35px;
    border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s;
}

.additional-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
} 

.additional-icon {
    width: 60px;
    height: 60px;
   margin-bottom: 20px;
}

.additional-icon svg {
  width: 100%;
     height: 100%;
	stroke: #5d4e87;
  fill: none;
   stroke-width: 2;
   stroke-linecap  :        round;
   stroke-linejoin: round; 
	


}

.additional-card h3 {
  font-size: 1.4rem;
  color   :     #2c3e50;
   margin-bottom: 12px; 
	
}

.additional-card p {
	  color: #546e7a;
   line-height:     1.7;

}

.process-section


{
	   padding: 100px 20px;
	background: white;
     }

.process-wrapper {
   max-width: 1000px;
  margin: 0 auto; 

}

.process-wrapper h2 {


      font-size    :  2.5rem;
  margin-bottom:        60px;
  color: #2c3e50;
        text-align: center;
	}

.process-timeline {
  display: flex;
  flex-direction: column;
	gap: 40px; 

}

.timeline-item {
    display: grid;
					 grid-template-columns: 80px 1fr;
				gap: 30px;
	   align-items: start;
}

.timeline-number {
  width: 80px;
   height: 80px;
  background: linear-gradient(135deg, #5d4e87 0%, #4a3d6b 100%);
   color: white;
   border-radius: 50%;
   display  :   flex;
       align-items: center;
    justify-content: center;
   font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(93,78,135,0.3);
}

.timeline-content h3 {
   font-size: 1.6rem;
          color: #2c3e50;
  margin-bottom: 10px;
}

.timeline-content p {
    color: #546e7a;
	line-height: 1.8;
  font-size    :1.05rem;
	}

.testimonials-section {
  background: linear-gradient(135deg, #e8ecf1 0%, #f5f7fa 100%);
	padding: 100px 20px;
}

.testimonials-wrapper {

		max-width: 1200px;
    margin: 0 auto;
     }

.testimonials-wrapper h2 {
	font-size: 2.5rem;

    text-align: center;

  margin-bottom: 60px;

     color   :    #2c3e50;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
   gap: 35px;
}


.testimonial-card {
    background   :    white;
    padding: 35px;
    border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
         flex-direction    :       column;
	 justify-content  : space-between;
}

.testimonial-text 
 {
    color: #34495e;
  line-height: 1.7;
   font-size: 1.05rem;
    margin-bottom: 25px;
   font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
    gap: 5px; 
	
}

.testimonial-author strong {
   color: #2c3e50;
          font-size: 1.1rem;
}

.testimonial-author span {
   color: #7f8c8d; 
	   font-size: 0.9rem;
}

.cta-services {
  background: linear-gradient(135deg, #5d4e87 0%, #4a3d6b 100%);
  padding: 80px 20px;
  text-align: center;
}  

.cta-services-content {
  max-width :      800px;
    margin: 0 auto;
    color: white;
}

.cta-services-content h2    {
     font-size:        2.5rem;
    margin-bottom: 20px;
}

.cta-services-content p {
  font-size: 1.2rem;
  margin-bottom: 35px;
   opacity: 0.95;
}

.cta-services-btn {
   display: inline-block;
    background: white;
                    color: #5d4e87;
	padding     :       16px 45px;
   border-radius :      6px;
         font-weight :       600;
  font-size :   1.1rem;
   transition    :     all 0.3s;
}  

.cta-services-btn:hover {
  transform: translateY(-3px);
     box-shadow: 0 6px 25px rgba(255,255,255,0.4);
	
}

.thankyou-main {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
  min-height: calc(100vh - 200px);
}

.thankyou-container {
	               max-width:  900px;
  margin: 0 auto;
	 text-align: center;
	}

.thankyou-icon-wrapper {
   width:      120px;
	height: 120px;
    margin: 0 auto 30px;
  background: linear-gradient(135deg, #5d4e87 0%, #4a3d6b 100%);
    border-radius :    50%;
    display: flex;
   align-items :     center;
	justify-content: center;
  box-shadow: 0 8px 30px rgba(93,78,135,0.3);
}

.thankyou-check-icon {

	    width: 70px;
    height: 70px;
                    stroke: white;
    fill: none;
  stroke-width: 3;
  stroke-linecap: round;
   stroke-linejoin: round; 


}

.thankyou-container h1 {
   font-size: 2.8rem;
      color: #2c3e50;
  margin-bottom: 20px;
}



.thankyou-message {
  font-size  :1.2rem;
   color: #546e7a;
   line-height: 1.8;
    margin-bottom: 60px;
  max-width: 700px;
	margin-left: auto;
  margin-right   :auto; 
	
}

.thankyou-next-steps {
    margin-bottom: 50px;
}

.thankyou-next-steps h2 {
          font-size: 2rem;
       color: #2c3e50;
	 margin-bottom: 40px;


}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
	 gap: 35px;
    text-align: left;
}

.step-item {
  background    :white;
    padding: 30px;
	border-radius     :       10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	} 

.step-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}

.step-icon svg {
       width: 100%;
  height: 100%;
  stroke: #5d4e87;
    fill: none;
  stroke-width: 2;
                    stroke-linecap: round;
    stroke-linejoin: round;

}

.step-item h3 {
  font-size: 1.3rem;
  color: #2c3e50;
          margin-bottom: 10px;
}

.step-item p
	{
   color: #546e7a;
  line-height: 1.7;
    font-size: 0.95rem;
}

.thankyou-info-box {
   background: white;
 padding: 35px;
	border-radius  : 10px;
    margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.thankyou-info-box h3 {
      font-size: 1.5rem;
	color: #2c3e50;
    margin-bottom: 15px;
}

.thankyou-info-box p {
    color: #546e7a;
  line-height: 1.8;
    font-size: 1.05rem;
}

.thankyou-actions {
    gap: 20px;
     margin-bottom  :   50px;
   	display    :flex;
     justify-content: center;
}

.action-btn {

		padding   :      14px 35px;
  border-radius     :    6px;
	 font-weight: 600;
  font-size: 1.05rem;
    transition  :   all 0.3s;
  display: inline-block;}

.action-btn.primary {


                    background: #5d4e87;
   color: white;
	}

.action-btn.primary:hover {
  -ms-transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
     background: #4a3d6b;
  transform: translateY(-2px);
}

.action-btn.secondary {
  background: white; 
	    color: #5d4e87; 
	    border: 2px solid #5d4e87;
}

.action-btn.secondary:hover {
	 background: #5d4e87;
   color   :      white;
  transform: translateY(-2px);
}

.thankyou-visual {
      margin-top: 50px;

}

.thankyou-img {
   border-radius: 12px;

	  box-shadow: 0 8px 30px rgba(0,0,0,0.12);

	  max-width: 600px;

	  margin: 0 auto;


}@media (max-width: 968px) {
    .services-hero-content h1 {
        font-size: 2.2rem;
    }

    .service-detailed-card,
    .service-detailed-card.reverse {
        grid-template-columns: 1fr;
    }

    .service-detailed-card.reverse .service-card-image {
        order: 0;
    }

    .additional-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-container h1 {
        font-size: 2rem;
    }

    .thankyou-actions {
        flex-direction: column;
        align-items: center;
    }

    .action-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 640px) {
    .services-hero-content h1 {
        font-size: 1.8rem;
    }

    .services-hero-content p {
        font-size: 1.1rem;
    }

    .service-card-content h2 {
        font-size: 1.7rem;
    }

    .timeline-item {
        grid-template-columns: 60px 1fr;
        gap: 20px;
    }

    .timeline-number {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    .thankyou-container h1 {
        font-size: 1.6rem;
    }

    .thankyou-message {
        font-size: 1rem;
    }
}