* {
  margin: 0;
    padding: 0;
   box-sizing: border-box;
	
}

/* Auto-generated CSS */

body {
	  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
   line-height: 1.6;
  color: #333;}

.navbar {
    background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
   top: 0;
   z-index: 100;
}

.nav-container {
  max-width     : 1200px;
  margin  :  0 auto;
   padding: 0 20px;
  display: flex;
  justify-content: space-between;
   align-items: center;
	 height: 74px;
}

.nav-logo a
{
   display: flex;
    align-items:center;
  text-decoration: none;
}

.logo-img {
  width :      auto;
  height: 74px;
}

.burger-menu {
   display: none;
  background: none;
    border: none;
    cursor: pointer;
  flex-direction: column;
    gap: 6px;
    padding:  8px;
}

.burger-line {
   width: 28px;

    height: 3px;

   background: #333;

  border-radius  : 2px;

  transition: all 0.3s ease;
} 

.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) 
 {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
 display   :       flex;
   list-style: none;
   gap: 0;
}

.nav-item {


  margin: 0;
	}

.nav-link {
   display: block;
    padding :      12px 28px;
  text-decoration: none;
    color: #333;
    font-weight: 500;
  font-size: 16px;
   transition: all 0.3s ease;
   position: relative;
}

/* Hack for old browsers */

.nav-link:after {

  content: '';
   -webkit-transition    :  width 0.3s ease;
   position: absolute;
   bottom: 6px;
          left: 28px;
  width: 0;
   height: 3px;
    background: #e74c3c;
  transition: width 0.3s ease;
	}
/* Colors and backgrounds */


/* Production ready */


	/* Auto-generated CSS */


.nav-link:hover:after {
     width: calc(100% - 56px);}

.nav-link:hover {
   color: #e74c3c;
}
@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 74px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-item {
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-link {
        padding: 16px 20px;
    }

    .nav-link:after {
        display: none;
    }

    .nav-link:hover {
        background: #f9f9f9;
    }
}.hero {
   max-width  :1200px;
   margin: 0 auto;
   padding: 80px 20px;
    display:    flex;
   align-items: center;
                    gap: 60px;
}

.hero-content {
  flex: 1;
}

.hero h1 {
	font-size: 48px;
   font-weight: 700;
   line-height: 1.2;
    margin-bottom: 20px;
        color: #1a1a1a;
}

.hero-subtitle {
   font-size    :        18px;
	    color: #666;
	  margin-bottom: 35px;
	  line-height: 1.6;
}

.hero-cta {
    display: inline-block;
  padding :  14px 38px;
  background  :      #e74c3c;
    color: #ffffff;
   text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
   transition: all 0.3s ease;
}

.hero-cta:hover {
   background: #d93d2b;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(231, 76, 60, 0.3);
}

.hero-image {
  flex: 1;
   width: 100%;
    height: auto;
    border-radius: 12px;
               object-fit: cover;
}@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 40px 20px;
        gap: 30px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }
}.section-content  
  {
   max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}  

.why-us  {
  background: #f8f9fa;
  padding: 80px 20px;
}

.why-us h2 {
   font-size: 42px;
   margin-bottom: 50px;
  text-align: center;
  color: #1a1a1a;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 30px;


}

.why-card


{
  background: #ffffff;
    padding: 30px;
   border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	transition  :all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);

}

.why-card h3 {
   font-size:      20px;

   margin-bottom    :12px;

   color: #e74c3c; 

}

.why-card p {
  color: #666;
  font-size: 15px;
               line-height: 1.7;
}

.services-preview {
  padding: 80px 20px;
}

.services-preview h2 {
	font-size: 42px;
    margin-bottom: 50px;
    text-align   :     center;
}

.services-grid {

    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;

}

.service-card {
    border-radius: 12px;
    overflow    :  hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
   background: #ffffff;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);


}

.service-image {
   object-fit: cover;
  height: 240px;
  width: 100%;
}

.service-card h3 {
    font-size: 20px;
    padding: 25px 20px 12px;
    color: #1a1a1a;
}

.service-card p {
    padding: 0 20px 25px;
  color: #666;
  font-size: 15px;
	 line-height: 1.7;
}

.transformation {
  background: linear-gradient(135deg, #f5f7fa 0%, #f0f4f8 100%);
    padding: 80px 20px;
}

.transformation h2
	{
    font-size: 42px;
  margin-bottom: 50px;
   text-align: center;
}

.transform-content {
  display: flex;
                    align-items: center;
   gap: 60px;
}

.transform-text {
    flex: 1;
	
}

.transform-text h3 {
    font-size: 28px;
  margin-bottom: 20px;
         color: #e74c3c;

}

.transform-text p     {
    font-size: 16px;
    line-height: 1.8;
  color: #555;
    margin-bottom: 20px;
}

.transform-image {
   flex: 1;
    border-radius    : 12px;
  width: 70%;
   height: auto;
}@media (max-width: 768px) {
    .transform-content {
        flex-direction: column;
        gap: 30px;
    }
}.webinar-section {
    padding: 80px 20px;
	
}

.webinar-section h2 {
   font-size: 42px;
  margin-bottom: 20px;
   text-align: center;
}

.section-description {
                    text-align: center;
    font-size: 18px;
    color: #666;
   margin-bottom: 50px;
}

.webinar-grid {
   display   :        grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 30px;
}

.webinar-item {
   background: #ffffff;
  border  :      1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
   transition: all 0.3s ease;
}

.webinar-item:hover {
   border-color: #e74c3c;
  box-shadow: 0 8px 20px rgba(231, 76, 60, 0.15);
}

.webinar-header 
 {
   margin-bottom    :       15px; 



}

.webinar-header h4


{
    font-size: 18px;
  margin-bottom: 8px;
      color: #1a1a1a;
}

.webinar-date {
   font-size: 14px;
   color: #e74c3c;
	font-weight: 600;
} 

.webinar-item p {
   font-size  :   15px;
   color    :      #666;
   line-height: 1.7;
}

.methodology {
  background: #f8f9fa;
    padding: 80px 20px;
}

.methodology h2 {
  font-size: 42px;
    margin-bottom: 50px;
    text-align:center;
}

.methodology-steps {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap    :        40px;
}

.step {
    text-align  :      center;
    padding: 30px;
}

.step-number {

  font-size: 48px;
  font-weight: 700;
  color: #e74c3c;
      margin-bottom: 15px;
    display   :       block;
     }  

.step h3 {
   font-size: 22px;
  margin-bottom: 15px;
   color: #1a1a1a;
}

.step p {
    font-size: 15px;
    color: #666;
	line-height: 1.7;
}

.cta-section {
  background: linear-gradient(135deg, #e74c3c 0%, #d93d2b 100%);
   padding: 80px 20px;
    text-align: center;
   color: #ffffff;
}

.cta-content h2 {


	font-size: 42px;
  margin-bottom: 20px;
}

.cta-content p {
		 font-size: 18px;
  margin-bottom :  40px;
    opacity  : 0.95;
  line-height: 1.7;
}

.cta-button {
         display: inline-block;
    padding: 14px 42px;
   background: #ffffff;
   color: #e74c3c;
   text-decoration: none;
   border-radius: 6px;
  font-weight: 600;
    font-size     :     16px;
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: scale(1.05);
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact {
	 padding: 80px 20px;
}

.contact h2
{
  font-size: 42px;
  margin-bottom: 50px;
    text-align: center;
}

.contact-wrapper {
	    display:     grid;
  grid-template-columns: 1fr 1fr;
   gap: 50px;
     }

.contact-form 
 {
  display: flex;
   flex-direction: column;
  gap:      20px;
}

.form-group {
   display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
   padding: 14px 16px;

	  border: 1px solid #ddd;

	  border-radius: 6px;

	   font-size: 15px;

	  font-family: inherit;

	   transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
   outline: none;
   border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.submit-button  
  {
   padding: 14px 30px;
	background: #e74c3c;
    color: #ffffff;
    border: none;
  border-radius: 6px;
   font-weight: 600;
    font-size: 16px;
  cursor: pointer;
    transition:      all 0.3s ease;
    margin-top :     10px;
}

.submit-button:hover
	{
  transform: translateY(-2px);
 background: #d93d2b;
}

.contact-info {
	background: #f8f9fa;
   padding: 40px;
     border-radius: 10px;
}

.contact-info h3 {
   font-size     : 24px;
	margin-bottom: 30px;
   color: #1a1a1a;
}

.info-item {
    margin-bottom: 25px;
}

.info-item h4 {
    font-size: 15px;
   color: #e74c3c;
    margin-bottom: 8px;
  font-weight: 600;
}

.info-item p {
  color: #666;
   font-size: 15px;
    line-height: 1.7;
}@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}.footer {
  background: #1a1a1a;
   color    :#ffffff;
  padding: 60px 20px 20px;
}

.footer-container {
   max-width: 1200px;
   margin: 0 auto;
}

.footer-content {
    display     :   grid;
   grid-template-columns: auto 1fr;
   gap: 60px;
  margin-bottom: 40px;
}

.footer-logo-img {
     height :   96px;
   width: auto;
  filter: brightness(0) invert(1);
}

.footer-info {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 40px;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: 600;
  color: #ffffff;
}  

.footer-section ul {

	  list-style: none;}

.footer-section ul li {
   margin-bottom: 10px;
}

.footer-section a {
   transition: all 0.3s ease;
	font-size: 14px;
   text-decoration: none;
  color: #bbb;
}

.footer-section a:hover {
   color: #e74c3c;
}

.footer-section p {
   color: #bbb;
  font-size: 14px;
  line-height: 1.8;
}

.footer-bottom {
  padding-top: 20px;
    border-top: 1px solid #333;
    text-align: center;
    color: #888;
   font-size: 14px;
}@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-info {
        grid-template-columns: 1fr;
    }
}

.services-hero {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 120px 20px;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="white" opacity="0.1"/><circle cx="80" cy="80" r="2" fill="white" opacity="0.1"/><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    opacity: 0.5;
}

.services-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.services-hero h1 {
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.services-hero p {
    font-size: 18px;
    color: #ddd;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .services-hero {
        padding: 60px 20px;
    }

    .services-hero h1 {
        font-size: 32px;
    }

    .services-hero p {
        font-size: 16px;
    }
}.services-detailed {
     padding: 80px 20px;
}

.service-detail-card {
    margin-bottom: 80px;
  background: #ffffff;
  border-radius: 12px;
   overflow   : hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-detail-header {
  background: linear-gradient(135deg, #e74c3c 0%, #d93d2b 100%);
    padding: 40px;
  color: #ffffff;
}

.service-detail-header h2  {
    font-size: 32px;
   margin: 0;
    font-weight: 700;

}

.service-detail-body {
	display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 40px;
  padding: 40px;
    align-items    :       center;
	
}

.service-detail-image {
     width: 100%;
    -webkit-border-radius: 10px;
	border-radius: 10px;
   object-fit: cover;
  height: 350px;
     }

.service-detail-text h3

{
    font-size   :    26px;
  margin-bottom: 15px;
    color: #1a1a1a;
}

.service-detail-text p {
    font-size: 16px;
  color: #555;
   line-height: 1.8;
    margin-bottom: 15px;
}

.service-list {
 list-style: none;
   margin   :  20px 0;
}

.service-list li {
    padding: 10px 0 10px 30px;
     color: #666;
  font-size: 15px;
	 line-height: 1.7;
   position: relative;
}

.service-list li:before {
  content: '→'; 
	   position: absolute; 
	               left: 0; 
	   color: #e74c3c; 
	  font-weight: bold;
}

.highlight-text {
       background: #f8f9fa;
   padding: 15px;
  border-left: 4px solid #e74c3c;
  border-radius: 4px;
   margin-top: 20px;
    font-style: italic;
    color: #444;
}@media (max-width: 768px) {
    .service-detail-body {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }

    .service-detail-header {
        padding: 25px;
    }

    .service-detail-header h2 {
        font-size: 24px;
    }

    .service-detail-text h3 {
        font-size: 20px;
    }

    .service-detail-image {
        height: 250px;
    }
}.service-packages {
	    padding: 80px 20px;
  background   : #f8f9fa;
}

.service-packages h2 {
   font-size    :      42px;
    margin-bottom: 15px;
   text-align: center;
} 

.packages-intro {
    text-align: center;
   font-size :18px;
  color:   #666;
   margin-bottom: 50px;

}

.packages-grid {


  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
         gap: 30px;


}

.package-card {
   background    :       #ffffff;
    padding: 35px;
   border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.package-card.featured {
    border: 2px solid #e74c3c;
  transform: scale(1.05);
}

.featured-badge {
  position: absolute;
	top: -15px;
          left: 50%;
  transform: translateX(-50%);
  background: #e74c3c;
  color: white;
   padding: 6px 20px;
   border-radius: 20px;
               font-size: 12px;
  font-weight     :    600;
  text-transform: uppercase; 

}



.package-card h3 {
   font-size: 22px;
       margin-bottom: 10px;
    color: #1a1a1a;
}

.package-price {
    font-size:       14px;
	color: #e74c3c;
  font-weight: 600;
   margin-bottom: 20px;
  text-transform: uppercase;
}

.package-list {
          list-style: none;
   margin: 20px 0;
}

.package-list li
	{
   padding: 8px 0 8px 25px;
    color: #666;
  font-size: 15px;
    position: relative;
        line-height: 1.6;
}

.package-list li:before {
  content: '✓';
  position: absolute;
    left: 0;
  color: #e74c3c;
    font-weight: bold;
}

.package-duration {
    margin-top: 20px;
        padding-top: 20px;
    border-top: 1px solid #eee;
   color: #999;
                    font-size: 14px;
}@media (max-width: 768px) {
    .package-card.featured {
        transform: scale(1);
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }
}.service-process {
   padding    : 80px 20px;
}

.service-process h2 {
  font-size: 42px;
   margin-bottom: 60px;
  text-align: center;
}

.process-timeline {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap  :     30px;
  position: relative;
}

.process-step {
	       position:     relative;
	   padding: 30px;
	                    background: #f8f9fa;
	  border-radius: 10px;
	  text-align :        center;
     }

.process-marker {
   background:#e74c3c;
   color: white;
    padding: 12px 24px;
   border-radius: 25px;
  font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
  display: inline-block;
}

.process-step p {
   color   :   #666;
    font-size: 15px;
   line-height: 1.7;
}@media (max-width: 768px) {
    .process-timeline {
        grid-template-columns: 1fr;
    }
}.why-choose-us-detail {
   padding: 80px 20px;
   background    :    #ffffff;
}

.why-choose-us-detail h2 {
  font-size: 42px;
   margin-bottom  : 50px;
    text-align:  center;
}

.benefits-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 30px;
}

.benefit-item {
   padding: 30px;
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f4f8 100%);
  border-radius: 10px;
    border-left: 4px solid #e74c3c;
      transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); 
	
}

.benefit-item h3 {
    font-size: 20px;
   margin-bottom: 12px;
  color: #1a1a1a;
}

.benefit-item p {
  font-size: 15px;
  line-height: 1.7;
    color: #666;
}

.faq-section {
  padding: 80px 20px;
  background: #f8f9fa;
	
}  

.faq-section h2 {
	font-size: 42px;

	   margin-bottom: 50px;

	   text-align: center; 
	
}

.faq-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 25px;
}

.faq-item {
	background: #ffffff;
      padding: 25px;
   border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	transition :     all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.faq-item h3 {
    font-size: 18px;
  margin-bottom: 12px;
    color: #e74c3c;
}

.faq-item p {
   color: #666;
   font-size: 15px;
    line-height: 1.7;
}

.thankyou-container {
  min-height: calc(100vh - 300px);
   padding: 80px 20px;
   display     :  flex;
   align-items: center;
  justify-content: center;
}

.thankyou-content {
    max-width: 700px;
    width: 100%;
    background: #ffffff;
  padding: 60px;
	 border-radius: 12px;
    text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.success-checkmark {
   margin-bottom: 30px;
}

.success-checkmark svg {
   width: 80px;
    height  : 80px;
  color: #e74c3c;
  animation   :        scaleIn 0.5s ease-out;
}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-content h1  {
       font-size: 42px;
   margin-bottom: 15px;
       color: #1a1a1a;
}

.greeting {
  font-size: 18px;
          color: #e74c3c;
         font-weight: 600;
  margin-bottom: 10px;
}

.message {
	 font-size: 16px;
    color: #666;
    line-height: 1.8;
   margin-bottom: 40px;
}

.submitted-info {
    padding: 30px;
  text-align: left;
  margin-bottom  :    30px;
  background: #f8f9fa;
   border-radius: 10px;
}

.submitted-info h3     {
          font-size: 18px;
    color: #1a1a1a;
   margin-bottom: 20px;
	text-align: center;
}

.info-display {
  display: flex;
    flex-direction: column;
  gap: 12px;
}

.info-row {
  display: grid;
          grid-template-columns: 1fr 1fr;
   gap: 15px;
   padding: 12px 0;
   border-bottom: 1px solid #eee;
}

.info-row:last-child {
   border-bottom: none;
}

.info-label {
  font-weight: 600;
               color: #1a1a1a;
}

.info-value {
    color: #666;
}

.next-steps {
	  margin-bottom: 30px;
  padding: 30px;
  text-align: left;
   background: #f0f7ff;
    border-radius: 10px;
	}


.next-steps h3		{
    font-size: 18px;

	   color: #1a1a1a;

	   margin-bottom: 15px;

	   text-align: center;
}

.steps-list {

	   list-style: none;
    display: flex;
   flex-direction: column;
   gap  :   10px;


}

.steps-list li {
  padding: 10px 0 10px 30px;
  color:        #666;
    font-size: 15px;
  position: relative;
}

.steps-list li:before {
  content: '→';
    position : absolute;
  left: 0;
  color: #e74c3c;
   font-weight    :bold;
}

.additional-info {


    background: #fff8f7;
   padding    :     25px;
    border-radius: 10px;
  margin-bottom: 40px;
    border-left: 4px solid #e74c3c;
}

.additional-info p {
    color: #666;
    line-height: 1.6;
	font-size: 15px;
  margin-bottom: 10px;
}

.contact-phone {

  font-size: 18px;
   color: #e74c3c;
   margin: 15px 0;


}

.action-buttons   {
          display: flex;
  gap: 15px;
   justify-content: center;
   flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
   display     :      inline-block;
   padding: 14px 35px;
  border-radius    :     6px;
    text-decoration: none;
    font-weight: 600;
   font-size: 16px;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #e74c3c;
   color  :       #ffffff;
}

.btn-primary:hover {
    background: #d93d2b;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(231, 76, 60, 0.3);
}

.btn-secondary {
   background: #f0f0f0;
   color: #1a1a1a;
    border: 2px solid #e74c3c;
	
}  

.btn-secondary:hover {
  background: #e74c3c;
   color: #ffffff;
  transform: translateY(-2px);
}@media (max-width: 768px) {
    .thankyou-content {
        padding: 30px;
    }

    .thankyou-content h1 {
        font-size: 28px;
    }

    .success-checkmark svg {
        width: 60px;
        height: 60px;
    }

    .submitted-info,
    .next-steps,
    .additional-info {
        padding: 20px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}.policySection {
  padding: 80px 20px;
  background: #f8f9fa;
	min-height: 70vh;
}

.policyContainer {
  max-width: 900px;
    margin: 0 auto;
   text-align: left;
         background: #ffffff;
  padding: 50px;
    border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.policyContainer h1 {
    font-size    :42px;

	   color: #1a1a1a;

	    margin-bottom: 40px;

	  font-weight: 700;

	   border-bottom   :  3px solid #e74c3c;

	  padding-bottom: 15px;
}

.policyContainer h2		{
  font-size: 26px;
  color  :   #2c3e50;
  margin-top: 35px;
   margin-bottom: 15px;
               font-weight: 600;
}

.policyContainer p {
    color: #555;
   margin-bottom: 18px;
    line-height: 1.8;
  font-size: 16px;
	text-align: justify; 

}

.policyContainer p:last-of-type {
		margin-bottom: 0;
}@media (max-width: 1024px) {
    .policyContainer {
        padding: 40px;
    }

    .policyContainer h1 {
        font-size: 36px;
    }

    .policyContainer h2 {
        font-size: 24px;
    }

    .policyContainer p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .policySection {
        padding: 50px 15px;
    }

    .policyContainer {
        padding: 25px;
        border-radius: 8px;
    }

    .policyContainer h1 {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .policyContainer h2 {
        font-size: 20px;
        margin-top: 25px;
        margin-bottom: 12px;
    }

    .policyContainer p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 15px;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 12px;
    }

    .policyContainer {
        padding: 20px;
    }

    .policyContainer h1 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .policyContainer h2 {
        font-size: 18px;
        margin-top: 20px;
    }

    .policyContainer p {
        font-size: 13px;
        margin-bottom: 12px;
    }
}