*  {
    margin     : 0;
 padding: 0;
   box-sizing: border-box; 
	
}

:root {
    --primary: #2c3e50;
    --secondary: #e67e22;
    --accent: #3498db;
    --light: #ecf0f1;
    --dark: #1a252f;
    --text: #2c3e50;
    --border: #bdc3c7;
}

html {
	scroll-behavior :      smooth;
}

body  
  {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
	line-height : 1.6; 
  color: var(--text); 
    background  :     #ffffff; 
	
}

.navbar    {
  background: var(--dark); 
  padding: 1rem 0; 
   position: sticky; 
   top: 0; 
  z-index: 1000; 
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nav-container {
    padding: 0 2rem;
  max-width:      1200px;
   align-items: center;
                    display: flex;
   margin: 0 auto;
          justify-content: space-between;
}

.nav-logo img {
   height: 45px;
  filter: brightness(0) invert(1);
}

.nav-menu  {
     display: flex;
  gap: 3rem;
  align-items: center;
}

.nav-link {
  color: #ffffff;
   text-decoration: none;
  font-weight: 500;
    transition: color 0.3s;
    font-size: 1rem;
}

.nav-link:hover {
  color: var(--secondary);
}

.hamburger {
  display: none;
  flex-direction: column;
    cursor: pointer;
}


.ham-line {
 height: 3px;
  background: #ffffff;
    width: 25px;
   transition: 0.3s;
   margin: 5px 0;


}@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--dark);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        gap: 0;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        display: block;
        padding: 1.5rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
}.hero {
			max-width: 1200px;
    margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 3rem;
  align-items: center;


}

.hero-content h1 {
  font-size: 2.8rem;
    margin-bottom: 1rem;
   line-height: 1.2;
  color: var(--primary);}

.hero-content p {
	 font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #555;
}

.cta-button {
        display: inline-block;
  background: var(--secondary);
		 color: white;
  padding: 0.9rem 2.5rem;
   border-radius   :        5px;
    text-decoration: none;
	font-weight: 600;
    transition: all 0.3s;
  cursor: pointer;
   border: none;
  font-size :    1rem;
	
}

.cta-button:hover {
   background: #d46f1a;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

.hero-visual img {

  width   : 100%;
   height: auto;
  border-radius   :   8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);}@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 2rem 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
}.approach {
  background: linear-gradient(135deg, #f5f7fa 0%, #ecf0f1 100%);
  padding: 4rem 2rem;
}

.approach h2 {

	   max-width: 1200px;
  margin     :0 auto 3rem auto;
    font-size: 2.2rem;
  color: var(--primary);}

.approach-grid {
    max-width  :   1200px;
  margin: 0 auto;
    display   : grid;
  grid-template-columns: repeat(3, 1fr);
   gap: 2rem;
}

.approach-card {

   background: white;
  padding: 2rem;
    border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  transition: all 0.3s;


}

.approach-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.approach-card h3 {
  color: var(--accent);
  margin-bottom: 1rem;
   font-size: 1.4rem;
}

.approach-card p {
	color:  #666;
      font-size    :   0.95rem;
     line-height: 1.7;
}@media (max-width: 768px) {
    .approach-grid {
        grid-template-columns: 1fr;
    }

    .approach h2 {
        font-size: 1.8rem;
    }
}.services-preview    {
  max-width: 1200px;
    margin: 0 auto;
   padding: 4rem 2rem;
} 

.services-preview h2 {
   font-size:      2.2rem;
   margin-bottom: 3rem;
  color: var(--primary);
	}

.services-container {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
          margin-bottom: 3rem;
    gap: 2rem;
}

.service-item {
   background  :  #f9f9f9;
    border-radius: 8px;
   overflow: hidden;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.service-item:hover{
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-item img {
  width: 100%;
	               height: 240px;
	   object-fit   :        cover;
}  

.service-item h3 {
   padding: 1.5rem 1.5rem 0.5rem;
  color: var(--accent);
   font-size: 1.2rem;
	

}

.service-item p {
  padding: 0 1.5rem 1.5rem;
  color: #666;
   font-size: 0.95rem;
   line-height: 1.6;
}

.services-link {
    text-align: center;

}

.discover-link {
    display    :    inline-block;
  color: var(--secondary);
   text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  padding: 0.5rem 0;
   border-bottom :       2px solid transparent;

}

.discover-link:hover {
  border-bottom-color: var(--secondary);
}@media (max-width: 768px) {
    .services-container {
        grid-template-columns: 1fr;
    }

    .services-preview h2 {
        font-size: 1.8rem;
    }
}.cta-main {
  background: linear-gradient(135deg, var(--primary) 0%, #34495e 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.cta-main h2 {

	   font-size: 2.2rem;
    margin-bottom: 1rem;

}

.cta-main p {
	opacity  : 0.9;
  margin-bottom: 2rem;
          font-size: 1.1rem;
}


.cta-button-large     {
  display: inline-block;

  background: var(--secondary);

	color: white;

  padding: 1.1rem 3rem;

  border-radius   :   5px;

    text-decoration: none;

  font-weight: 600;

  font-size: 1.05rem;

  transition: all 0.3s;
}

.cta-button-large:hover {
    background    :      #d46f1a;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(230, 126, 34, 0.4);
}

.contact-section  
  {
  max-width:  800px;
   margin: 4rem auto;
   padding:  0 2rem;
}


.contact-section h2 {
               font-size: 2.2rem;
  color: var(--primary);
       margin-bottom: 2rem;
   text-align: center;
}

.contact-form {
    background: white;
	padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}  

.form-group {
   margin-bottom: 1.8rem;
}

.form-group label {
           display: block;
   margin-bottom: 0.5rem;
  color: var(--primary);
	font-weight     :  600;
    font-size: 0.95rem;
	}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; 
	    padding: 0.9rem; 
	  border: 1px solid var(--border); 
	   border-radius: 5px; 
	   font-size: 0.95rem; 
	    font-family    :inherit; 
	   transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);}

.form-submit {
    width: 100%;
                    padding: 1rem;
  background: var(--secondary);
    color: white;
       border    :none;
    border-radius: 5px;
    font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition    :     all 0.3s;
	
}

.form-submit:hover {
    background: #d46f1a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}@media (max-width: 768px) {
    .contact-section {
        margin: 2rem auto;
    }

    .contact-section h2 {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}.footer {
  background: var(--dark);
    color: white;
	 padding: 3rem 2rem 1rem;
                    margin-top: 4rem;
}


.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto 2rem;
	display  :       grid;
   grid-template-columns: 1fr 2fr;
    gap: 3rem;
   align-items: start;
}

.footer-logo-img		{
                    height: 50px;
  filter: brightness(0) invert(1);
}

.footer-info {

       display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;

}

.footer-column h4 {
     margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--secondary);
}

.footer-column p {
   font-size: 0.9rem;
  line-height: 1.8;
    color: #ccc;
}

.footer-links {
  list-style: none;
}  

.footer-links li {
    margin-bottom     :     0.7rem;
}

.footer-links a {
	  color: #ccc;
   text-decoration: none;
    font-size: 0.9rem;
  transition: color 0.3s;




}

.footer-links a:hover {
  color: var(--secondary);
}

.footer-bottom {
     text-align  : center;
    padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #aaa;
  font-size: 0.9rem;
}@media (max-width: 768px) {
    .footer-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer {
        padding: 2rem 2rem 1rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
     color: white;
    padding: 5rem 2rem;
  text-align: center;
  margin-top: 0;
}

.services-hero-content h1 {
   font-size: 2.8rem;
    margin-bottom: 1rem;
    line-height: 1.2;

}

.services-hero-content p

{


    font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
    opacity: 0.95;
	}@media (max-width: 768px) {
    .services-hero {
        padding: 3rem 2rem;
    }

    .services-hero-content h1 {
        font-size: 2rem;
    }

    .services-hero-content p {
        font-size: 1rem;
    }
}.services-detailed  
  {
    padding: 0 2rem;
   max-width: 1200px;
    margin: 4rem auto;
}

.service-detail   {
  display: grid;
    grid-template-columns   : 1fr 1fr;
   gap: 3rem;
    align-items: center;
  margin-bottom: 4rem;
	 padding: 2rem;
    background: #f9f9f9;
	border-radius   :  8px;
}

.service-detail.alternate {
   grid-template-columns: 1fr 1fr;
}

.service-detail.alternate .service-detail-image   {
   order: 2;
}

.service-detail.alternate .service-detail-content {
   order: 1;
}

.service-detail-image img {
  width: 100%;
	 height: auto;
    border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
     }

.service-detail-content h2 {
   font-size: 2rem;
  color: var(--primary);
          margin-bottom: 1rem;
}

.service-detail-content p {
    font-size: 0.95rem;
   line-height: 1.8;
       color: #555;
    margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.6rem 0 0.6rem 1.5rem;

  position: relative;

    color: #555;

    font-size: 0.95rem;
}

.service-features li:before {
     content: "▸";
  position: absolute;
  left: 0;
  color: var(--secondary);
   font-weight: bold;}

.service-meta {
    display     :   flex;
  gap: 2rem;
  padding-top: 1rem;
   border-top: 1px solid #e0e0e0;
}

.service-meta span {
      font-size: 0.9rem;
	color: #777; 

}

.service-meta .duration:before {
  content: "⏱ ";
  color: var(--secondary);
}

.service-meta .participants:before {
  content: "👥 ";
}@media (max-width: 768px) {
    .service-detail {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
        padding: 1.5rem;
    }

    .service-detail.alternate .service-detail-image {
        order: 1;
    }

    .service-detail.alternate .service-detail-content {
        order: 2;
    }

    .service-detail-content h2 {
        font-size: 1.5rem;
    }

    .service-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}.pricing-section {
                    max-width :    1200px;
  margin: 4rem auto;
    padding: 0 2rem;
}

.pricing-section h2 {
          font-size: 2.2rem;
  color: var(--primary);
    text-align: center;
    margin-bottom: 3rem;
}  

.pricing-container {
   display: grid;

	  grid-template-columns: repeat(3, 1fr);

	    gap: 2rem;

		 margin-bottom: 3rem;
}

.pricing-card   {
  background: white;
   border: 1px solid #e0e0e0;
	border-radius: 8px;
       padding: 2rem;
   text-align :    center;
	transition: all 0.3s;
}

.pricing-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  transform: translateY(-8px);
}  

.pricing-card.featured {
  border: 2px solid var(--secondary);
  transform: scale(1.05);
} 

.pricing-card h3 {


 font-size: 1.3rem;
  color: var(--primary);
         margin-bottom: 1rem;

}

.pricing-card .price {
  font-size   :     2.2rem;
  color: var(--secondary);
     font-weight: bold;
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style     :none;
    margin-bottom: 2rem;
   text-align: left;
}

.pricing-features li {
	padding: 0.6rem 0 0.6rem 1.5rem;
	    position: relative;
	    color: #555;
		font-size: 0.9rem;
}

.pricing-features li:before {
       color : #2ecc71;
    left     :       0;
  content: "✓";
    font-weight: bold;
   position    :   absolute;
}

.pricing-btn {
 width: 100%;
	padding: 0.8rem;
  border: 2px solid var(--primary);
    background  : transparent;
  color: var(--primary);
  border-radius: 5px;
   cursor: pointer;
   font-weight: 600;
	transition: all 0.3s;
}

.pricing-btn:hover {
  background: var(--primary);
    color: white;
}

.pricing-btn.featured-btn     {
  border-color: var(--secondary);

	  background: var(--secondary);

		color: white;
}

.pricing-btn.featured-btn:hover {
    background: #d46f1a;
  border-color: #d46f1a;

}@media (max-width: 768px) {
    .pricing-container {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-section h2 {
        font-size: 1.8rem;
    }
}.testimonials-section {
    background: #f5f7fa;
	 padding    :  4rem 2rem;
  margin: 4rem 0;
}

.testimonials-section h2{
       font-size: 2.2rem;
  color: var(--primary);
    text-align:     center;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
  margin-right: auto;
}

.testimonials-container {
    max-width: 1200px;
               margin: 0 auto;
  display    :     grid;
  grid-template-columns: repeat(3, 1fr);
   gap     :   2rem;
}

.testimonial-card {
   background:       white;
   padding  :   2rem;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    transition: all 0.3s;
}  

.testimonial-card:hover  {
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  transform: translateY(-5px);
}

.testimonial-text  
  {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #555;
    margin-bottom: 1.5rem;
                    font-style: italic;
}

.testimonial-text:before {
  content: '"';

	    font-size: 2.5rem;

	  color: var(--secondary);

	    margin-right: 0.5rem;
}

.testimonial-author {
    border-top: 1px solid #e0e0e0;
    padding-top: 1rem;
}

.author-name {
  font-weight: 600;
  color: var(--primary);
   margin-bottom: 0.2rem;
}

.author-title {
   font-size: 0.85rem;
   color    :   #999;
}@media (max-width: 768px) {
    .testimonials-container {
        grid-template-columns: 1fr;
    }

    .testimonials-section h2 {
        font-size: 1.8rem;
    }
}.process-section    {
  max-width: 1200px;
      margin: 4rem auto;
    padding   :        0 2rem;
}

.process-section h2  {
    font-size: 2.2rem;
  color: var(--primary);
    text-align: center;
                    margin-bottom: 3rem;
}

.process-steps {
    gap: 2rem;
  grid-template-columns: repeat(4, 1fr);
       display: grid;
}

.process-step {
	text-align: center;
  position: relative;
}

.process-step:not(:last-child):after {
  content: "";
  position     :     absolute;
  right: -1.5rem;
  top: 40px;
 width: 3rem;
   height: 2px;
  background: var(--secondary);
}

.step-number {
  width: 50px;
          height: 50px;
  background: var(--secondary);
                    color  :        white;
	border-radius: 50%;
    display: flex;
     align-items: center;
    justify-content :   center;
   font-weight: bold;
    font-size: 1.3rem;
   margin: 0 auto 1rem;
}

.process-step h3 {
  color: var(--primary);
    margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.process-step p {
  color    :#666;
  font-size: 0.9rem;
    line-height: 1.6; 
	
}@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .process-step:not(:last-child):after {
        display: none;
    }

    .process-section h2 {
        font-size: 1.8rem;
    }
}.faq-section {
   background: #f9f9f9;
   padding    :     4rem 2rem;
   margin     :  4rem 0;
}

.faq-section h2 {
    font-size: 2.2rem;
  color: var(--primary);
  text-align: center;
    margin-bottom: 3rem;
  max-width: 1200px;
                    margin-left: auto;
   margin-right  :auto;
	
}

.faq-container {
    max-width: 900px;
   margin   :0 auto;
}

.faq-item {
  margin-bottom:  1rem;
	border-radius: 5px;
   overflow: hidden;
}

.faq-question		{

    width: 100%;
  padding: 1.5rem;
   background: white;
   border: 1px solid #e0e0e0;
    text-align: left;
   cursor: pointer;
   font-size: 1rem;
   font-weight: 600;
  color: var(--primary);
   transition: all 0.3s;
   display: flex;
         justify-content: space-between;
          align-items   :      center;
}

.faq-question:hover {


               background: #f5f5f5;
  border-color: var(--secondary);

}

.faq-question:after {
  content: "+";
   font-size: 1.5rem;
  color: var(--secondary);
    transition: transform 0.3s;

}

.faq-item.active .faq-question {
	   background: white;
	border-bottom-color: transparent;

     }

.faq-item.active .faq-question:after {

  transform: rotate(45deg);
	} 

.faq-answer {
   background: white;
       padding: 0;
  max-height: 0;
    overflow: hidden;
  transition :    all 0.3s ease;
    border: 1px solid #e0e0e0;
  border-top: none;
}

.faq-item.active .faq-answer {
                    padding: 1.5rem;
  max-height    :500px; 

}

.faq-answer p {
  color   :  #555;
   line-height: 1.7;
   font-size    :  0.95rem;
}

.cta-services {
  background: linear-gradient(135deg, var(--primary) 0%, #34495e 100%);
    color: white;
  padding: 3rem 2rem;
	text-align: center;
  margin: 3rem 0;
}

.cta-services h2  {
   font-size: 2rem;
   margin-bottom: 1rem;
}

.cta-services p {
     font-size: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.thankyou-container {
   max-width: 600px;
   margin   :     5rem auto;
   padding: 0 2rem;
    text-align: center;


}

.thankyou-content {
 background: white;
	padding     :    3rem;
    border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.thankyou-icon


{
   margin-bottom: 2rem;
}

.thankyou-icon img {
  width: 80px;
   height: 80px;
  margin: 0 auto;
  display    :        block;
    stroke: #2ecc71;
  filter: drop-shadow(0 0 8px rgba(46, 204, 113, 0.4));
}

.thankyou-content h1  {
  font-size   :  2.5rem;
  color: var(--primary);
      margin-bottom: 0.5rem;
	
}

.thankyou-main {
		font-size: 1.3rem;
  color: var(--secondary);
    font-weight: 600;
    margin-bottom   :       1rem;
}

.thankyou-text {
   color: #555;
    line-height: 1.7;
    margin-bottom   :       2rem;
   font-size: 0.95rem;

}

.thankyou-info {
    background: #f5f7fa;
    padding: 2rem;
    border-radius: 5px;
  margin-bottom: 2rem;
    text-align: left;
}

.thankyou-info h3 {
  color: var(--primary);
                    margin-bottom: 1rem;
   text-align: center;
}  

.info-list {
      list-style: none;


}

.info-list li{
   padding: 0.6rem 0 0.6rem 1.5rem;
  position: relative;
				 color: #555;
    font-size   :    0.9rem;
  line-height: 1.6;
}

.info-list li:before {
  content: "✓";
  position: absolute;
   left: 0;
    color     :        #2ecc71;
  font-weight: bold;

}

.thankyou-actions {
       gap: 1rem;
    justify-content:    center;
        display     :     flex;}

.thankyou-btn {
	padding: 0.9rem 2rem;
  border-radius :        5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
   transition: all 0.3s;
   display: inline-block;
}

.thankyou-btn.primary {
  background: var(--secondary);
    color: white;
	
}

.thankyou-btn.primary:hover {
    background: #d46f1a;
  transform: translateY(-2px);
}

.thankyou-btn.secondary {
  background: var(--primary);
  color: white;
}

.thankyou-btn.secondary:hover {
    background: #1a252f;
  transform: translateY(-2px);
} 

.next-steps {
  max-width: 1200px;
   margin: 3rem auto;
    padding: 0 2rem 4rem;
}

.next-steps h2 {
   font-size   : 2rem;
  color: var(--primary);
               text-align  :       center;
   margin-bottom: 2rem;
}

.next-steps-container {
	               display: grid;
  grid-template-columns: repeat(3, 1fr);
   gap: 2rem;
     }

.next-step-card {
       background: white;
    padding: 2rem;
    border-radius    :   8px;
  border-left: 4px solid var(--secondary);
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  transition: all 0.3s;
}


.next-step-card:hover {
	  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  transform: translateY(-5px); 
	
}

.next-step-card h3


{
  color: var(--primary);
  margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.next-step-card p	{
  color     :      #555;
  font-size: 0.9rem;
   line-height: 1.6;
   margin-bottom: 1rem;
}

.step-link {
  color: var(--secondary);
                    text-decoration  :   none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.step-link:hover {

   color: #d46f1a;
     }@media (max-width: 768px) {
    .thankyou-content {
        padding: 1.5rem;
    }

    .thankyou-content h1 {
        font-size: 2rem;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .thankyou-btn {
        width: 100%;
    }

    .next-steps-container {
        grid-template-columns: 1fr;
    }

    .next-steps h2 {
        font-size: 1.5rem;
    }

    .faq-question {
        font-size: 0.9rem;
        padding: 1.2rem;
    }
}.policySection {
    padding: 80px 2rem;
          background: #f8f9fa;
  min-height: calc(100vh - 200px);
}

.policyContainer {
	  max-width: 900px;
    margin   :0 auto;
   text-align: left;
	}

.policyContainer h1 {
	 font-size: 2.8rem;
	  color: var(--primary);
	    margin-bottom: 2rem;
	     font-weight: 700;
	  line-height: 1.2; 
	
}

.policyContainer h2 {
            font-size: 1.6rem;
  color: var(--primary);
    margin-bottom: 1.2rem;
  margin-top: 2rem;
   font-weight: 600;
  border-bottom: 2px solid var(--secondary);
   padding-bottom: 0.8rem;
	} 

.policyContainer p {


	color: #555;
	margin-bottom  :      1.5rem;
  line-height: 1.8;
    font-size: 0.95rem;


}

.policyContainer strong {


  color: var(--primary); 
	        font-weight: 600;

}

.policyContainer ul {
 margin-left: 2rem;
   margin-bottom: 1.5rem;
}

.policyContainer ul li {
  color: #555;
          margin-bottom: 0.8rem;
          line-height: 1.7;
    font-size: 0.95rem;
}

.policyContainer ul li:before  {
  content: "→";
  color: var(--secondary);
  font-weight: bold;
   margin-right    :       0.8rem; 

}

.policyInfo {
    background  : white;
  border-left: 4px solid var(--secondary);
  padding:       1.5rem;
    margin: 2rem 0;
    border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.policyInfo strong  {
    display: block;

	        margin-bottom: 0.5rem;

	  color: var(--primary);
}

.policyContainer table {
	 margin: 1.5rem 0;
   	border-collapse: collapse;
       width: 100%;

}

.policyContainer table th {
  background: var(--primary);
  color: white;
    padding: 1rem;
  text-align: left;
    font-weight: 600;


}

.policyContainer table td {
     padding     :        0.8rem 1rem;
	 color: #555;
		 border-bottom: 1px solid #e0e0e0;}

.policyContainer table tr:hover {
  background: #f5f5f5;
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1.5rem;
    }

    .policyContainer {
        max-width: 100%;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .policyInfo {
        padding: 1.2rem;
        margin: 1.5rem 0;
    }

    .policyContainer table {
        font-size: 0.85rem;
    }

    .policyContainer table th,
    .policyContainer table td {
        padding: 0.6rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
    }

    .policyContainer h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .policyContainer h2 {
        font-size: 1.1rem;
        margin-top: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.85rem;
    }

    .policyContainer ul {
        margin-left: 1.5rem;
    }

    .policyContainer ul li {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }
}