* {
         margin  :       0;
  padding: 0;
		box-sizing: border-box;
}

html {
   scroll-behavior  :     smooth;
}

body {
	  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
    background-color: #ffffff;}

.navbar {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
          padding: 1rem 2rem;
    position   :      sticky;
          top: 0;
  z-index :      1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-container {


  max-width: 1200px;
      margin: 0 auto;
      display: flex;
                       justify-content: space-between;
      align-items: center;}

.nav-brand {
   display: flex;
         align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.logo-image


{
   height :   64px;
  width: auto;
  filter: brightness(0) invert(1);
}

.brand-text {
  color: #ecf0f1;
	font-size: 1.5rem;
  font-weight: 700;
   letter-spacing  :   0.5px;
}

.burger-menu     {
    display: none;
     flex-direction: column;
   	background: none;
       border: none;
      cursor: pointer;
     gap: 0.4rem;
}

.burger-menu span {
   width: 25px; 
    height: 3px; 
  background-color: #ecf0f1; 
	border-radius: 2px; 
                    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
   gap: 2rem;
}

.nav-menu a {
    color: #ecf0f1;
	text-decoration  :      none;
   font-weight: 500;
  transition: color 0.3s ease;
	 position: relative;
}

.nav-menu a:hover
	{
   color: #1abc9c;
}

.nav-menu a::after {
  content: '';
  position   :        absolute;
   bottom: -5px;
   left: 0;
	width    : 0;
   height: 2px;
  background-color: #1abc9c;
  transition :       width 0.3s ease; 
	
}

.nav-menu a:hover::after {
  width :        100%;
}

.hero {
  display: flex;
   align-items    :   center;
    justify-content: space-between;
  padding  :      4rem 2rem;
   max-width: 1200px;
	margin  :       0 auto;
    gap: 3rem; 

}


.hero-content {
	  flex: 1;
	 animation :       slideInLeft 0.8s ease;


}

.hero-content h1 {
  margin-bottom: 1rem;
    font-size: 3rem;
    color: #2c3e50;
   line-height: 1.2;
}

.hero-content p {

	    font-size    :    1.2rem;

    color: #7f8c8d;

  margin-bottom: 2rem;

}

.cta-button

{
   display: inline-block;
  background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
  color    :        white;
   padding: 1rem 2rem;
   border-radius: 8px;
  text-decoration: none;
  font-weight  :    600;
               transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(26, 188, 156, 0.3);
}

.cta-button:hover{

  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(26, 188, 156, 0.4);}

.hero-image {
   flex: 1;
    max-width: 100%;
    height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
   animation  : slideInRight 0.8s ease;
}@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}.section-wrapper    {
	padding: 0 2rem;
  max-width: 1200px;
   margin: 0 auto;
}

.benefits-section {

   padding: 5rem 2rem; 
  background: linear-gradient(180deg, #f8f9fa 0%, #ecf0f1 100%);
     }

.benefits-section h2     {
	font-size: 2.5rem;
  color: #2c3e50;
    margin-bottom: 3rem;
  text-align: center;
}

.benefits-grid {
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
  gap: 2rem;
}

.benefit-card {
  background: white;
   padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.benefit-card:hover  
  {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.benefit-card h3 {


    font-size :1.4rem;
  color: #2c3e50;
    margin-bottom    :    1rem;


}

.benefit-card p {
	 color: #7f8c8d;
    margin-bottom: 1.5rem;
    line-height: 1.8; 
	
	}

.benefit-card img {
   width: 100%;
     height: 200px;
        object-fit: cover;
      border-radius: 8px;
}

.workshops-section {
  padding: 5rem 2rem;
   background: white;
}

.workshops-section h2 {
  font-size: 2.5rem;
  color: #2c3e50;
    margin-bottom: 3rem;
   text-align: center;


}

.workshops-content {
   display    :       grid;
    grid-template-columns: 1fr;
  gap: 2rem;
}

.workshop-item {


   display: flex;
     gap: 2rem;
    align-items: center;
  padding: 2rem;
   background: #f8f9fa;
    border-radius: 12px;
    border-left: 5px solid #1abc9c;

}

.workshop-item h3 {
   font-size: 1.6rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}  

.workshop-item p {
          color: #7f8c8d;
     line-height: 1.8;
           flex: 1;
}

.workshop-item img {
    flex: 1;
  height: 300px;
    object-fit: cover;
  border-radius: 8px;
}

.coaching-process  
  {
     padding: 5rem 2rem;
  background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);


}  

.coaching-process h2 {
  font-size  :2.5rem;
    color: #2c3e50;
	margin-bottom: 3rem;
  text-align :    center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
	   background: white;
    padding: 2rem;
  border-radius: 12px;
    text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
    position: relative;
     }

.process-step:hover {
  transform: scale(1.05);
	
}

.step-number {
    font-size:  3rem;
  font-weight  :      700;
  color    :      #1abc9c;
  margin-bottom     :     1rem;
}

.process-step h3 {
    font-size: 1.3rem;
	color: #2c3e50;
  margin-bottom   :1rem;
}

.process-step p {
  color: #7f8c8d;
  line-height: 1.8;
}

.services-highlight {
  padding: 5rem 2rem;
	background: white;
}

.services-highlight h2 {
       font-size    :2.5rem;
	   color   : #2c3e50;
	  margin-bottom: 3rem;
	   text-align: center;}

.services-list {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-item {
     padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
	border-radius: 12px;
    border-top: 4px solid #1abc9c;
   transition     :     all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(26, 188, 156, 0.2);
}

.service-title {
    font-size: 1.3rem;
   font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-item p {
  color :  #7f8c8d; 
   line-height    :    1.8;
}

.cta-section {
       padding: 4rem 2rem;
  background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
  text-align: center;
}

.cta-content h2 {
  font-size: 2.2rem;
   color: white;
	margin-bottom: 1rem;
	
}

.cta-content p {
    font-size   :  1.1rem;
  color     : #ecf0f1;
    margin-bottom: 2rem;
}

.cta-button-primary {
    display: inline-block;

	   background     : white;

		color: #1abc9c;

	  padding: 1rem 2.5rem;

	    border-radius: 8px;

	    text-decoration: none;

	   font-weight: 600;

	   transition: all 0.3s ease;

	  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	


}

.cta-button-primary:hover {
     transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3); 
	
}

.contact-section {
                    padding: 5rem 2rem;
  background  : #f8f9fa;

}  

.contact-section h2 {
    font-size: 2.5rem;
	 color: #2c3e50;
	margin-bottom: 3rem;
	text-align   :        center;
}

.contact-form {


    display: grid;

	    max-width: 600px;

		 gap  : 1.5rem;

	    margin    :0 auto;
}

.form-group
	{
  display: flex;
    flex-direction  :   column;
}

.form-group label {
   font-weight: 600;
	      color: #2c3e50;
	   margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
    border: 2px solid #bdc3c7;
    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: #1abc9c;
  box-shadow: 0 0 0 3px rgba(26, 188, 156, 0.1);}

.submit-button {
    padding :     1rem 2rem;
  background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
    color: white;
    border: none;
  border-radius   :    8px;
    font-weight: 600;
    font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(26, 188, 156, 0.3);
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(26, 188, 156, 0.4);
}

.footer {
   background: #2c3e50;
   color: #ecf0f1;
  padding: 3rem 2rem 1rem;
}

.footer-wrapper {
	max-width: 1200px;
    margin   :     0 auto;
  display     :        grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
    margin-bottom: 2rem;
	
}



.footer-brand


{
      display: flex;
 align-items     :    center;
}

.footer-logo {
   height: 86px;
    width: auto;
  filter: brightness(0) invert(1);
}

.footer-contact h3,
.footer-links h3{
    font-size :       1.2rem;
  margin-bottom: 1rem;
	color: #1abc9c;
}

.footer-contact p,
.footer-links p     {
	color: #bdc3c7;
  line-height: 1.8;
}

.footer-links ul {
	list-style: none;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
  display: block;
   padding: 0.5rem 0;
}

.footer-links a:hover {

   color: #1abc9c;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
   text-align: center;
  color: #95a5a6;
	}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: #34495e;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-menu li {
        border-bottom: 1px solid #2c3e50;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
    }

    .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 {
        flex-direction: column;
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .workshop-item {
        flex-direction: column;
    }

    .workshop-item img {
        width: 100%;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .services-list {
        grid-template-columns: 1fr;
    }

    .footer-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .benefits-grid,
    .process-grid,
    .services-list {
        grid-template-columns: 1fr;
    }

    .section-wrapper {
        padding: 0 1rem;
    }
}.services-hero    {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 4rem 2rem;
	text-align: center;
}  

.services-hero h1 {
   font-size: 3rem;
   margin-bottom: 1rem;
}

.services-hero p {
  font-size: 1.2rem;
  color: #ecf0f1;
   max-width: 600px;
  margin: 0 auto;
}

.service-detailed {
			padding: 4rem 2rem;
	   background: white;
}

.service-detailed.alternate
{
    background: #f8f9fa;
}

.service-detail-item {
  display:        grid;
         grid-template-columns    :       1fr 1fr;
     gap: 3rem;
  align-items: center;
   max-width: 1200px;
  margin: 0 auto;
}

.service-detail-item.reverse {
         grid-template-columns: 1fr 1fr;


}

.service-detail-item.reverse img {
    order: -1;
}

.service-detail-text h2 {
						font-size: 2.2rem;
    color: #2c3e50;
   margin-bottom    :       1.5rem;
}

.service-detail-text p {
  color: #7f8c8d;
  line-height: 1.8;
    margin-bottom: 1.5rem;
  font-size: 1rem;
}

.service-features {
   list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}

.service-features li {
   color: #2c3e50;
  padding: 0.8rem 0;
	 padding-left: 1.5rem;
  position: relative;
    line-height: 1.6;
}

.service-features li::before {

	  content: '✓';

	    position: absolute;

	  left: 0;

	    color: #1abc9c;

	    font-weight: bold;

	  font-size: 1.2rem;}

.service-price {
	margin-top: 2rem;
   font-weight   :600;
	color: #1abc9c;
   font-size   :1.1rem;
}

.service-detail-image {
    width: 100%;
   height: 400px;
    object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}


.pricing-comparison {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, #f8f9fa 0%, #ecf0f1 100%);
}

.pricing-comparison h2 {


    font-size: 2.5rem; 
	   color: #2c3e50; 
	  margin-bottom    :   3rem; 
	   text-align: center;}

.pricing-table {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {


   background: white;
    border-radius: 12px;
    padding    :        2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
   position: relative;
	}

.pricing-card:hover {
  transform: translateY(-8px);

	  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.pricing-card.standard {
  border: 2px solid #1abc9c;
  transform: scale(1.05);
}

.pricing-card.standard:hover {
  transform: scale(1.08) translateY(-8px);
}

.pricing-header {
  margin-bottom: 2rem;
   position: relative;
}

.pricing-header.featured {
   position: relative;
}

.badge {
  position: absolute;
      top: -10px;
          right: 0;
  background: #1abc9c;
    color: white;
    padding: 0.4rem 0.8rem;
   border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600; 

}

.pricing-header h3 {
   font-size: 1.4rem;
   color: #2c3e50;
    margin-bottom: 1rem;
}

.pricing-amount {
    font-size: 2.5rem;
      font-weight: 700;
       color: #1abc9c;
     margin-bottom: 0.5rem;
}

.pricing-amount::after {
  content: '';
   display: block;
 font-size: 0.6rem;
	color: #7f8c8d;
}

.pricing-features {
   list-style :        none;
   padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 0.8rem 0;
       color: #7f8c8d;
          position: relative;
   padding-left: 1.5rem;
  line-height    :        1.6;
  border-bottom: 1px solid #ecf0f1;
}

.pricing-features li:last-child {
               border-bottom: none;
}

.pricing-features li::before {
  content: '•';
	position: absolute;
  left    : 0;
	color: #1abc9c;
    font-weight: bold;
	

}

.faq-section		{
                    padding: 5rem 2rem;
  background: white;
	
}

.faq-section h2  
  {


     font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 3rem;
   text-align: center;
	}

.faq-container {
       max-width: 800px;
    margin: 0 auto;
	}

.faq-item {
  margin-bottom: 1rem;
 border: 1px solid #ecf0f1;
  border-radius: 8px;
    overflow     :  hidden;
    transition: all 0.3s ease;
} 

.faq-item:hover  
  {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-question {
  width: 100%;
   padding: 1.5rem;
          background: #f8f9fa;
	border: none;
  text-align: left;
  font-size: 1.1rem;
    font-weight: 600;
   color: #2c3e50;
  cursor: pointer;
	transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
   align-items: center;
}

.faq-question:hover     {
     background: #ecf0f1;
   color: #1abc9c;
	}

.faq-question::after   {
  content: '+';
  font-size: 1.5rem;
     font-weight: bold;
  color: #1abc9c;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
   max-height   :  0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p 
 {
	 padding: 1.5rem;
  color: #7f8c8d;
    line-height: 1.8;
  background: white;
}

.cta-services {
   padding: 4rem 2rem;
  background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
  text-align: center;
}

.cta-services h2 {
  font-size: 2.2rem;
   color: white;
	margin-bottom: 1rem;
}

.cta-services p {


         font-size: 1.1rem;
	color: #ecf0f1;
    margin-bottom  :       2rem;
}

.cta-button-service {
   display: inline-block;

	    background:       white;

	    color: #1abc9c;

	    padding: 1rem 2.5rem;

	               border-radius: 8px;

		 text-decoration :   none;

	   font-weight: 600;

	   transition: all 0.3s ease;

	  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button-service:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.thank-you-section {
   padding: 6rem 2rem;

  background: linear-gradient(180deg, #f8f9fa 0%, #ecf0f1 100%);

    min-height   :     70vh;
}

.thank-you-content {
		 max-width: 700px;
	margin: 0 auto;
   text-align: center;
    background: white;
    padding: 3rem 2rem;
      border-radius     :    12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);} 

.success-icon {
    margin-bottom: 2rem;
	display :flex;
   justify-content: center;
}

.success-icon svg {

	   animation   :scaleIn 0.6s ease;

}@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}.thank-you-content h1 {
	  font-size: 2.5rem;
   color: #1abc9c;
    margin-bottom: 1rem;
     }

.thank-you-message {

   font-weight: 500;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  color: #2c3e50;
     }

.thank-you-subtitle {
     color: #7f8c8d;
  margin-bottom: 2rem;
                    font-size: 1rem;
}

.thank-you-info {
     background: #f8f9fa; 
 padding   :        2rem; 
   border-radius: 8px; 
       margin: 2rem 0; 
  text-align: left;
     }

.thank-you-info h2 {
    font-size: 1.4rem;
    color: #2c3e50;
         margin-bottom: 1rem;
}

.next-steps {
  list-style: none;
    padding: 0;
}

.next-steps li {
	padding: 0.8rem 0;
    color: #7f8c8d;
  position: relative;
   padding-left: 1.5rem;
    line-height: 1.6;
}

.next-steps li::before {
  content: '✓';
   position: absolute;
   left: 0;
   color  :  #1abc9c;
    font-weight: bold;
}

.thank-you-actions {
    display   :       grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
    margin: 2rem 0;
}

.btn-primary,
.btn-secondary {

	  padding: 1rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
   display: inline-block;}

.btn-primary {

	  background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
   color: white;
  box-shadow: 0 4px 12px rgba(26, 188, 156, 0.3);


}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(26, 188, 156, 0.4);
}

.btn-secondary {
  color: #1abc9c;
    border: 2px solid #1abc9c;
   background: white;
}

.btn-secondary:hover {
  background  :        #1abc9c;
  color :       white;
}



.contact-info-box {
  background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
  color  :      white;
    padding     :        2rem;
   border-radius   :8px;
		margin: 2rem 0 0 0;
}

.contact-info-box h3 {
     margin-bottom :1rem;
	font-size: 1.2rem;
}

.contact-info-box p


{
   margin   :     0.5rem 0;
      line-height: 1.6;
}

.resources-section {
    padding: 5rem 2rem;
      background: white;
	
}



.resources-section h2 {

  font-size: 2.5rem;
  margin-bottom: 3rem;
   text-align: center;
    color: #2c3e50;


}

.resources-grid    {
               display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap:    2rem;
	max-width: 1200px;
	margin: 0 auto;}

.resource-card {
        background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
                    border-left:   4px solid #1abc9c;
   transition: all 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-5px); 
	  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.resource-card h3 {
  font-size: 1.2rem;
   color:     #2c3e50;
   margin-bottom: 1rem;
}

.resource-card p {
    color: #7f8c8d;
	 line-height: 1.6;
}@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2rem;
    }

    .service-detail-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-detail-item.reverse {
        grid-template-columns: 1fr;
    }

    .service-detail-image {
        height: 300px;
    }

    .pricing-table {
        grid-template-columns: 1fr;
    }

    .pricing-card.standard {
        transform: scale(1);
    }

    .pricing-card.standard:hover {
        transform: scale(1) translateY(-8px);
    }

    .thank-you-actions {
        grid-template-columns: 1fr;
    }

    .thank-you-content {
        padding: 2rem 1rem;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-hero h1 {
        font-size: 1.5rem;
    }

    .service-detail-text h2 {
        font-size: 1.6rem;
    }

    .pricing-comparison h2,
    .faq-section h2 {
        font-size: 1.8rem;
    }

    .thank-you-content h1 {
        font-size: 1.8rem;
    }
}.policySection {
   padding: 80px 2rem;
  background: #f8f9fa;
  min-height: 70vh;


}

.policyContainer {
          max-width: 800px; 
    text-align: left; 
   margin: 0 auto;
}

.policyContainer h1 {

   font-size :   2.8rem;
		color  :     #2c3e50;
	margin-bottom: 2rem;
  font-weight:  700;
  border-bottom: 3px solid #1abc9c;
  padding-bottom: 1rem;
}  

.policyContainer h2		{

	   color  :   #2c3e50;
      margin-bottom: 1rem;
       font-size: 1.8rem;
   	 color: #1abc9c;
      font-weight   :      600;
     margin-top: 2rem;

}

.policyContainer p {
   color: #7f8c8d;
  margin-bottom: 1.2rem;
                    line-height: 1.8;
  font-size: 1rem;
    text-align: justify;
}

.policyContainer strong {

  color   :       #2c3e50;
   font-weight: 600;

}

.policyContainer ul {
   list-style: none;
    padding: 0;
  margin: 1.5rem 0;
}

.policyContainer ul li {
    color: #7f8c8d;
       padding: 0.6rem 0;
      padding-left: 1.5rem;
          position: relative;
      line-height: 1.6;
}

.policyContainer ul li::before {
  content: '•';
  position  :absolute;
    left: 0;
  color: #1abc9c;
    font-weight: bold;
          font-size   :        1.2rem;
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1.5rem;
        min-height: auto;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        line-height: 1.7;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
    }

    .policyContainer {
        max-width: 100%;
    }
}

@media print {
    .navbar,
    .footer {
        display: none;
    }

    .policySection {
        padding: 0;
        background: white;
    }

    .policyContainer h1,
    .policyContainer h2 {
        page-break-after: avoid;
    }

    .policyContainer p {
        page-break-inside: avoid;
    }
}