* {
   padding  :    0;
      box-sizing: border-box;
		 margin: 0;
}

html {

  scroll-behavior: smooth;


}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
     background-color   :     #f8f9fa;
}  

.navbar {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 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;
}

.nav-logo-section {
  flex :    0 0 auto;
}

.nav-logo {
  height: 64px;
    width: auto;
  filter: brightness(0) invert(1);
}

.nav-menu {
  display: flex;
  list-style: none;
    gap: 2rem;
}

.nav-link {
  color: #fff;
    text-decoration   :        none;
                    font-weight: 500;
    transition: opacity 0.3s ease;
   position: relative;
}

.nav-link::after {
  content: '';
   position: absolute;
   bottom  :      -5px;
    left: 0;
   width: 0;
                    height: 2px;
   background: #fff;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
  width:      100%;
}

.nav-burger {
   display: none;
  flex-direction: column;
    background: none;
  border: none;
      cursor  :      pointer;
  gap: 5px;
}

.nav-burger span {
    width: 25px;
  height: 3px;
    background: #fff;
    border-radius    :        3px;
   transition: all 0.3s ease;


}

@media (max-width: 768px) {
    .nav-burger {
        display: flex;
    }

    .nav-burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(10px, 10px);
    }

    .nav-burger.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        right: 0;
        left: 0;
        flex-direction: column;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 300px;
        padding: 20px 0;
    }

    .nav-menu li {
        padding: 0 20px;
    }

    .nav-menu li a {
        display: block;
        padding: 12px 0;
    }
}.hero {
	 max-width: 1200px;
   margin: 0 auto;
  padding: 80px 20px;
  display: grid;
                    grid-template-columns: 1fr 1fr;
  gap     :    60px;
    align-items: center;
}

.hero-content h1 {
      font-size: 3.5rem;

	   line-height: 1.2;

	  margin-bottom:     30px;

	   color: #1a1a1a;

	  background: linear-gradient(135deg, #667eea, #764ba2);

	   background-clip: text;


	}

.hero-content p {
    font-size    :  1.2rem;
    color: #555;
	margin-bottom: 40px;
   line-height: 1.8;
}

.cta-button 
 {
       display: inline-block;
  background: linear-gradient(135deg, #667eea, #764ba2);
   color: #fff;
    padding: 15px 40px;
      border-radius: 50px;
	 text-decoration: none;
	font-weight: 600;
                    transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

.hero-image {
 width: 100%;
 height: auto;
    border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 60px 20px;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}.benefits-section {
    max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
   text-align: center;
     }

.benefits-section h2 {
  font-size: 2.8rem;
  margin-bottom: 60px;
  color: #1a1a1a;
}

.benefits-grid {

  grid-template-columns: repeat(3, 1fr);
	 display: grid;
   gap: 40px;

}

.benefit-card {
   background: #fff;
  padding: 40px;
    border-radius   :   15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.benefit-card:hover {

	  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
     }

.benefit-card h3 {
    font-size: 1.5rem;
  margin-bottom: 20px;
    color: #667eea;
}



.benefit-card p {
     color: #666;
   line-height: 1.8;
	}@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefits-section h2 {
        font-size: 2rem;
    }
}.features-section {
    max-width: 1200px;
   margin  :  0 auto;
   padding   :80px 20px;
}

.feature-item {
   display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
   align-items: center;
         margin-bottom: 100px;
}

.feature-reverse {
   grid-template-columns: 1fr 1fr;
}

.feature-reverse .feature-text {
   order:        1;
}

.feature-reverse .feature-image {
  order   :      2;
}

.feature-text h2 {
    font-size : 2.5rem;
    margin-bottom: 25px;
				 color: #1a1a1a;
}

.feature-text p {
	 line-height: 1.9;
	 font-size: 1.1rem;
	color     :       #666;
}

.feature-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
	
	}@media (max-width: 768px) {
    .feature-item,
    .feature-reverse {
        grid-template-columns: 1fr;
    }

    .feature-text h2 {
        font-size: 2rem;
    }

    .feature-item {
        margin-bottom: 60px;
    }
}.workshop-section {

	  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
  padding  :  80px 20px;
	text-align: center;
     }

.workshop-section h2 {
  color  :  #1a1a1a; 
    margin-bottom: 20px; 
                    font-size: 2.8rem;
}

.section-subtitle {
	font-size: 1.2rem;
   color: #666;
    margin-bottom: 60px;
     max-width: 600px;
    margin-left: auto;
    margin-right:   auto;
}

.workshop-grid {
    max-width: 1200px;
  margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(2, 1fr);
    gap: 40px;
	
}

.workshop-card

{
    background: #fff;
	border-radius: 15px;
  overflow:   hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.workshop-card:hover  {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.workshop-image {
  width: 100%; 
   height: 250px; 
   object-fit   :      cover;
}

.workshop-card h3


{
  font-size: 1.5rem;
      padding: 25px 25px 15px;
      color: #667eea;
}

.workshop-card p {
  padding: 0 25px 25px;
	    color: #666;
	   line-height:   1.8;
}@media (max-width: 768px) {
    .workshop-grid {
        grid-template-columns: 1fr;
    }

    .workshop-section h2 {
        font-size: 2rem;
    }
}.services-overview {
  max-width: 1200px;
    margin: 0 auto;
         padding: 80px 20px;
}

.services-overview h2 {
	 font-size: 2.8rem;
  margin-bottom     :  60px;
    text-align  :      center;
				 color: #1a1a1a;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-item {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  padding: 35px;
    border-radius: 12px;
  border-left :      5px solid #667eea;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
   transition: all 0.3s ease;
}

.service-item:hover {
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
  transform: translateX(5px);
}

.service-item h3 {
  font-size: 1.4rem;
 margin-bottom: 15px;
   color: #667eea;
}

.service-item p {
  color: #666;
    line-height: 1.8;
}@media (max-width: 768px) {
    .services-list {
        grid-template-columns: 1fr;
    }

    .services-overview h2 {
        font-size: 2rem;
    }
}.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

   color: #fff;

   padding: 80px 20px;

   text-align: center; 
	
}

.cta-section h2 {
    font-size:      2.8rem;
   margin-bottom: 25px;
}

.cta-section p {
   margin-right: auto;
  max-width: 600px;
   margin-left: auto;
    font-size: 1.2rem;
  opacity: 0.95;
   margin-bottom: 40px;
}

.cta-button-large  {
    display: inline-block;
   background: #fff;
  color: #667eea;
    padding: 16px 50px;
    border-radius:       50px;
   text-decoration     :none;
   font-weight : 700;
 transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-button-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}@media (max-width: 768px) {
    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section p {
        font-size: 1rem;
    }
}.testimonials-section {
    max-width: 1200px;
  margin    :    0 auto;
  padding: 80px 20px;
}

.testimonials-section h2 {
    font-size: 2.8rem;
  margin-bottom: 60px;
   text-align  :      center;
  color: #1a1a1a;
}

.testimonials-grid    {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
   gap: 35px; 

}

.testimonial-card {
  background: #fff;
     padding:    35px;
    border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #667eea;
   transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.15);
}

.testimonial-card p {
   font-size:1rem;
   color     :   #666;
  margin-bottom: 20px;
        font-style: italic;
   line-height     :        1.8;
}

.testimonial-author   {
  display: block;
   color: #667eea;
   font-weight: 600;
  font-style: normal; 
	
}@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-section h2 {
        font-size: 2rem;
    }
}.contact-section {
  max-width: 1200px;
      margin    :      0 auto;
  padding: 80px 20px;
  text-align: center;
}

.contact-section h2 {
   font-size: 2.8rem;

	   margin-bottom: 20px;

	    color: #1a1a1a;
}

.contact-section > p {
	font-size: 1.1rem;
   color: #666;
    margin-bottom: 50px;
  max-width: 600px;
  margin-left  :     auto;
   margin-right: auto;
}

.contact-form {
  background: #fff;
  padding: 50px;
     border-radius:        15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 600px;
	margin: 0 auto;
}

.form-group {
  margin-bottom: 25px;
   text-align: left;
}

.form-group label {
  display: block;
    margin-bottom: 10px;
   font-weight: 600;
   color     :  #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
   width: 100%;
   padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
   font-family: inherit;
   font-size    :     1rem;
	 transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;

	  border-color: #667eea;

	  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-submit {
   width: 100%;
  padding    :  14px;
  background: linear-gradient(135deg, #667eea, #764ba2);
    color :    #fff;
    border  :        none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
   cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 15px;
}

.form-submit:hover {
     transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);}@media (max-width: 768px) {
    .contact-section h2 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 30px;
    }
}.footer {
   background: #1a1a1a;
    color     :   #fff;
  padding: 60px 20px 30px;
    margin-top: 100px;
}

.footer-container  {
   max-width   :       1200px;
    margin: 0 auto;
   display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
   margin-bottom: 50px;
}

.footer-logo-section {
      display: flex;
     align-items: flex-start;

}
/* Typography */
/* TODO: optimize for mobile */

.footer-logo {


   height: 86px;
                    width: auto;
  filter: brightness(0) invert(1); 


}

.footer-content {
      display   :     grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.footer-column h4 {
                    font-size: 1.2rem;
	  margin-bottom: 20px;
	  color: #fff;
}

.footer-links {
  list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bbb;
   text-decoration: none;
  transition  :        color 0.3s ease; 

}

.footer-links a:hover {
    color: #667eea;
}

.footer-address,
.footer-phone {
  margin-bottom  :       12px;
	color: #bbb;
  line-height: 1.6;
}

.footer-column p {
  color    :#bbb;
    line-height: 1.8;
}

/* Hack for old browsers */

.footer-bottom {
    text-align: center;
               padding-top: 30px;
   border-top: 1px solid #333;
		 color: #888;
}
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-logo-section {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem !important;
    }

    h2 {
        font-size: 1.5rem !important;
    }

    p {
        font-size: 0.95rem;
    }
}.services-hero {

	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

   color: #fff;

    padding   :   100px 20px;

  text-align: center; 

	}


.services-hero-content h1 {
          font-size: 3.2rem;
  margin-bottom     :      20px;
	 line-height: 1.2;
}

.services-hero-content p {
  font-size: 1.3rem;
    max-width: 700px;
   margin: 0 auto;
    opacity: 0.95;
  line-height: 1.8;
}

.services-detailed {
    max-width: 1200px;
	margin: 0 auto;
  padding: 80px 20px;
}

.services-container {
  display    :     flex;
    flex-direction: column;
  gap: 100px;
}

.service-card-detailed {
       display: grid;
    grid-template-columns: 1fr 1fr;
	 gap:       60px;
    align-items: center;
     }

.service-card-reversed {
   direction: rtl;
}  

.service-card-reversed > * {
    direction: ltr;
}

.service-card-image {
   overflow: hidden;
}

.service-detail-image {
    width: 100%;
       height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card-detailed:hover .service-detail-image {
  transform: scale(1.05);
}

.service-card-content h2 {
    font-size: 2.2rem;
   color: #667eea;
        margin-bottom: 15px;
}

.service-price {
   font-size: 1.8rem;
    color: #764ba2;
               font-weight    :700;
    margin-bottom    :       20px;
}

.service-description {
	    line-height: 1.8;
  margin-bottom: 30px;
   font-size :       1.1rem;
    color: #666;
}

.service-features {
      list-style: none;

   margin-bottom :        30px;
}



.service-features li {
  padding: 10px 0;
   padding-left : 30px;
    position: relative;
  color: #555;
  line-height: 1.6;
}

.service-features li::before {
  content: '✓';
  position: absolute;
	 left: 0;
    color: #667eea;
  font-weight: 700;
    font-size: 1.2rem;
}

.service-cta {
   display:     inline-block;
	  background: linear-gradient(135deg, #667eea, #764ba2);
	  color: #fff;
		padding  :      13px 35px;
	  border-radius: 50px;
	    text-decoration: none;
	    font-weight: 600;
	    transition   :all 0.3s ease;
	  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.service-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2.2rem;
    }

    .services-hero-content p {
        font-size: 1.1rem;
    }

    .service-card-detailed,
    .service-card-reversed {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-card-reversed {
        direction: ltr;
    }

    .service-card-content h2 {
        font-size: 1.8rem;
    }

    .service-price {
        font-size: 1.5rem;
    }
}.pricing-comparison     {
  padding: 80px 20px;
   text-align: center;
  background   :      #f8f9fa; 
	
}

.pricing-comparison h2 {

	   font-size: 2.8rem;
  margin-bottom     :  60px;
	color: #1a1a1a;

}

.comparison-table		{
                    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
}

table	{
   width: 100%;
	border-collapse   :collapse;
   background: #fff;
   border-radius: 12px;
         overflow  :   hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

thead {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color:       #fff;
}

th
{
      padding: 20px;
    text-align: center;
   font-weight: 700;
   font-size:0.95rem;
	}

td {
       border-bottom: 1px solid #e9ecef;
   color: #666;
    text-align: center;
   padding: 15px 20px;
}

tbody tr:last-child td {
	border-bottom: none;
}

tbody tr:nth-child(odd) {
  background: #fafbfc; 

}

tbody tr:hover {
   background: #f0f2ff;
}

td:first-child {
	font-weight: 600;
    color: #1a1a1a;
    text-align: left;
}

.check		{
                    color: #2ecc71;
  font-weight: 700;
    font-size: 1.1rem;
	
}

.times {
   font-weight: 600;
  color    :        #bbb;
}@media (max-width: 768px) {
    .pricing-comparison h2 {
        font-size: 2rem;
    }

    th, td {
        padding: 12px 8px;
        font-size: 0.85rem;
    }

    th {
        font-size: 0.8rem;
    }
}.faq-section {
  padding: 80px 20px;
   margin: 0 auto;
    max-width     :  1000px;
	}

.faq-section h2   {
  font-size: 2.8rem;
  margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

.faq-container {
    display: grid;
  grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.faq-item {
    background: #fff;
          padding: 30px;
    border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
   border-left: 5px solid #667eea;
	 transition: all 0.3s ease;
}

.faq-item:hover  {
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
  transform: translateY(-5px);


}

.faq-item h3  {
       font-size: 1.3rem;
   color: #667eea;
  margin-bottom: 15px;

}

.faq-item p


{
   color: #666;
  line-height: 1.8;
  font-size  :       0.95rem;
}@media (max-width: 768px) {
    .faq-container {
        grid-template-columns: 1fr;
    }

    .faq-section h2 {
        font-size: 2rem;
    }

    .faq-item h3 {
        font-size: 1.1rem;
    }
}.cta-services
{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     color: #fff;
  padding:        80px 20px;
         text-align: center;
}

.cta-services h2 {
  font-size: 2.8rem;
  margin-bottom     : 25px;
}

.cta-services p {


   font-size: 1.2rem;

  margin-bottom: 40px;

	 max-width: 600px;

   margin-left :    auto;

    margin-right: auto;

    opacity   :       0.95;}@media (max-width: 768px) {
    .cta-services h2 {
        font-size: 2rem;
    }

    .cta-services p {
        font-size: 1rem;
    }
}.thankyou-section   {

  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    padding :100px 20px;
	min-height: 70vh;
          display     :  flex;
  align-items: center;
  justify-content: center;


}
	/* Browser compatibility */


	/* Custom modifications */


.thankyou-container {
    max-width: 600px;
       background   :   #fff;
    padding: 60px 50px;
    border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thankyou-icon {

	    margin-bottom:      30px;


}

/* Generated styles */

.success-svg {
    width: 100px;
    height: 100px;
   margin: 0 auto;
  animation: popIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
@keyframes popIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-container h1 {
		font-size: 2.5rem;
       color:       #667eea;
         margin-bottom: 10px;
	line-height: 1.2;
}

.thankyou-subtitle {


      font-size: 1.2rem;
   color: #764ba2;
   margin-bottom: 30px;
  font-weight: 600;
}

.thankyou-content  
  {
   text-align :left;
    margin-bottom: 40px;
	
}

.thankyou-content p {
   color: #666;
   line-height: 1.8;
  margin-bottom: 20px;
    font-size: 1rem;
}

.thankyou-content strong {
   color: #1a1a1a;
	font-weight: 700;
}

.thankyou-steps {
  list-style    :   none;
  margin: 25px 0;
   padding: 0;
   background: #f8f9fa;
  padding: 25px;
  border-radius: 12px;
    border-left   :   5px solid #667eea;
}

.thankyou-steps li  {
	padding: 12px 0;
  color: #555;
	 position     :      relative;
  padding-left: 30px;
}

.thankyou-steps li::before {
  content: '→'; 
	        position  :     absolute; 
	    left  :       0; 
	    color: #667eea; 
		font-weight: 700; 
	   font-size: 1.1rem; 

}

.thankyou-actions {
    gap: 20px;
   display: flex;
   margin-bottom: 30px;
}

.thankyou-button-primary {


   flex: 1;
    display: block;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color  :   #fff;
    padding     : 14px 20px;
   border-radius: 8px;
	 text-decoration: none;
   font-weight: 700;
   transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);}

.thankyou-button-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

.thankyou-button-secondary {
    font-weight: 700; 
   padding: 14px 20px; 
  border-radius: 8px; 
   display: block; 
  flex: 1; 
	text-decoration:  none; 
  transition: all 0.3s ease; 
               border:       2px solid #667eea; 
  color: #667eea; 
    background: #e9ecef;
}

.thankyou-button-secondary:hover {
  background: #667eea;
    color: #fff;
}

.thankyou-info	{
        padding-top: 30px;
    border-top: 2px solid #e9ecef;
  color: #666;
}

.thankyou-info p {
	 margin     :        0;
   font-size: 0.95rem;
}

.next-steps-section {
  max-width: 1200px;
   margin: 0 auto;
  padding: 80px 20px;
}

.next-steps-section h2 {
    font-size: 2.8rem;
  margin-bottom: 60px;
    text-align: center;
  color: #1a1a1a;
}

.next-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.next-step-card {
	background: #fff;
   padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
	 transition: all 0.3s ease;
}

.next-step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.next-step-card h3 {
   font-size   : 1.5rem;
   color :       #667eea;
    margin-bottom : 15px;
}

.next-step-card p {
  color: #666;
    line-height: 1.8;
	 margin-bottom   :       25px;
}

.next-step-link {
    display :        inline-block;
   color: #667eea;
   text-decoration: none;
  font-weight: 700;
    padding: 8px 0;
   border-bottom: 2px solid #667eea;
    transition: all 0.3s ease;
}

.next-step-link:hover {
   color: #764ba2;
    border-bottom-color: #764ba2;
}@media (max-width: 768px) {
    .thankyou-container {
        padding: 40px 30px;
    }

    .thankyou-container h1 {
        font-size: 2rem;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .next-steps-grid {
        grid-template-columns: 1fr;
    }

    .next-steps-section h2 {
        font-size: 2rem;
    }
}.policy-hero		{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
   padding:       80px 20px;
   text-align: center;
	
}

.policy-hero h1 {
   font-size: 3rem;
  line-height: 1.2;
  margin: 0;


}

.policy-section {
	 background: #f8f9fa;

    padding: 80px 20px;
}

.policy-container {
    max-width     :     900px;
               margin   :    0 auto;
  text-align: left;
   background  : #fff;
  padding: 60px;
   border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.policy-container h2 {
  font-size: 2rem;
   color: #667eea;
    margin-top: 40px;
	 margin-bottom: 20px;
   font-weight: 700;
}

.policy-container h2:first-child {
   margin-top: 0;
}

.policy-container p {
	 color    :       #555;
    margin-bottom   :   20px;
   line-height: 1.8;
    font-size: 1.05rem;
}



.policy-container strong {
   color: #2c3e50;
  font-weight: 700;
}

.policy-container a {
   color     :   #667eea; 
	text-decoration: none; 
  transition: color 0.3s ease;
}

.policy-container a:hover {
    color :  #764ba2;
    text-decoration: underline; 
	
}@media (max-width: 768px) {
    .policy-hero h1 {
        font-size: 2.2rem;
    }

    .policy-container {
        padding: 40px 25px;
    }

    .policy-container h2 {
        font-size: 1.6rem;
        margin-top: 30px;
    }

    .policy-container p {
        font-size: 0.95rem;
    }

    .policy-section {
        padding: 60px 15px;
    }
}

@media (max-width: 480px) {
    .policy-hero h1 {
        font-size: 1.8rem;
    }

    .policy-container {
        padding: 30px 20px;
        border-radius: 8px;
    }

    .policy-container h2 {
        font-size: 1.4rem;
        margin-top: 25px;
    }

    .policy-container p {
        font-size: 0.9rem;
    }
}