* {

	  margin: 0;
  padding: 0;
     box-sizing: border-box; 
	


}

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, #ffffff 0%, #f0f4f8 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
   position: sticky;
  top: 0;
   z-index: 1000;
}

.nav-container {
    max-width: 1200px;
   margin     :      0 auto;
    padding: 0.5rem 2rem;
    display: flex;
       justify-content: space-between;
    align-items: center;

}  

.nav-brand {
   align-items: center;
          display: flex;

}

.logo-img {


  height: 64px;
   width :    auto;
}

.nav-menu {
    list-style: none;
    display: flex;
     align-items: center;
  gap: 2rem;
}

.nav-item a {
  text-decoration: none;
  color     :#2c3e50;
   font-weight: 500;
   transition: color 0.3s ease;
    font-size: 1rem;
}

.nav-item a:hover{
    color: #3498db;
}

.nav-burger {
	 display: none;
  flex-direction :   column;
  background: none;
	border   :    none;
  cursor :     pointer;
    gap: 0.4rem;
}

.burger-line     {
   -webkit-transition: all 0.3s ease;
   -webkit-border-radius    :        2px;
    width    :    25px;
  -o-transition   :  all 0.3s ease;
  height: 3px;
 background: #2c3e50;
   border-radius: 2px;
   transition: all 0.3s ease;
        -moz-transition: all 0.3s ease; 
	
}@media (max-width: 768px) {
    .nav-burger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        gap: 1rem;
        padding: 2rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .nav-container {
        padding: 1rem 1.5rem;
    }

    .nav-item a {
        font-size: 1.1rem;
    }
}.hero {


			max-width: 1200px;
    margin:       0 auto;
   padding: 4rem 2rem;
    display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 3rem;
   align-items: center;}

.hero-content {


  display: flex; 
         flex-direction: column; 
   gap:       1.5rem;}

.hero-title {
  font-weight: 700;
    color: #1a252f;
    font-size: 3rem;
  line-height: 1.2;
}

.hero-subtitle {
   font-size: 1.25rem;
    color: #555;
  line-height: 1.5;
}

.cta-button {
  display: inline-block;
   padding: 1rem 2rem;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   color: white;
   text-decoration: none;
    border-radius: 8px;
  font-weight: 600;
    transition: all 0.3s ease;
      width: fit-content;
  text-align : center;
}

/* Third-party styles */

/* Third-party styles */


.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

/* Build system output */

.hero-image {
      width    :   100%;
	height  :  auto;
      border-radius: 12px;
	 object-fit: cover;}
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}.section-why {
    padding: 4rem 2rem; 
 background: #ffffff;}

.section-grid
	{
      max-width: 1200px;
  margin: 0 auto;
    display     :    grid;
   grid-template-columns: 1fr 1fr;
   gap: 3rem;
   align-items    :      center;
}

.content-block
	{
	display: flex;
  flex-direction: column;
   gap: 1.5rem;
}

.content-block h2  
  {
   		 font-size   : 2.2rem;

	  color: #1a252f;

		 font-weight: 700; 
	
	}

.content-block p  
  {
   color: #555;
  line-height: 1.8;
    font-size     :  1.05rem;
}

.section-image {
    width: 100%;
   height : auto;
  border-radius:        12px;
  object-fit: cover;
}@media (max-width: 768px) {
    .section-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0;
    }

    .content-block h2 {
        font-size: 1.8rem;
    }
}.section-services-overview {
    padding: 4rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8ecf1 100%);
	max-width: 1200px;
       margin: 0 auto;
}

.section-title {
    color: #1a252f;

	   font-weight    :700;

	    text-align: center;

	  margin-bottom: 3rem;

	   font-size: 2.2rem;
}


.services-grid   {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap  : 2rem;
}

.service-card {

	   background: white;
  padding: 2rem;
    border-radius     :        10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-header {
  font-size: 1.3rem;
   font-weight: 700;
  color:       #3498db;
  margin-bottom   :  1rem;
}

.service-card p	{
    color: #555;
  line-height: 1.7;
}

.section-methodology {
   padding: 4rem 2rem;
  background: white;
}

.methodology-container {
   max-width :        1200px;
   margin: 0 auto;
    display: grid;
   grid-template-columns : 1fr 1fr;
   gap: 3rem;
   align-items     :      center;
}

.methodology-image {
		width: 100%;
      height: auto;
      border-radius: 12px;
       object-fit: cover;
	

}

.methodology-content {


    display: flex;
  flex-direction: column;
         gap: 1.5rem;

}

.methodology-content h2  {


  font-size : 2.2rem;
  color: #1a252f;
    font-weight: 700;

}

.methodology-content p {
   color: #555;
  line-height  :      1.8;
  font-size: 1.05rem;
}@media (max-width: 768px) {
    .methodology-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}.section-stories {
    padding: 4rem 2rem;
  background: linear-gradient(135deg, #ecf0f1 0%, #d5dbde 100%);
}

.stories-container {
   max-width: 1200px;
   margin    :       0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
}

.story-item {


   background: white; 
	  padding: 2rem; 
	  border-radius: 10px; 
	  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.story-item h3 {
         font-size: 1.4rem;
  color: #2980b9;
	margin-bottom:   1rem;
    font-weight: 700;
}

.story-item p


{
    color: #555;
   line-height: 1.7;
}

.section-events


{

     padding: 4rem 2rem;
      background: white;

}

.events-content {
  max-width: 1200px;
   margin: 0 auto;
}

.events-content h2

{
    font-size  :2.2rem;

    color: #1a252f;

   font-weight: 700;

  margin-bottom: 1.5rem;
}

.events-content p {
  color: #555; 
   line-height: 1.8; 
  font-size: 1.05rem; 
  margin-bottom: 1.5rem;
}

.events-image {
	   width  :        100%;
 height: auto;
			border-radius: 12px;
  margin-top: 2rem;
    object-fit: cover;


}

.section-training {
   padding: 4rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8ecf1 100%); 

}

.training-grid{
    max-width: 1200px;

	          margin: 0 auto;

	    display: grid;

	  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));

	   gap: 2rem;

	    margin-top: 2rem;
}

.training-box {
    background: white;
  padding: 1.8rem;
    border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	 transition    :     all 0.3s ease;
}

.training-box:hover		{
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.training-box h3

{
  font-size    :      1.2rem;
   color: #2980b9;
    margin-bottom: 1rem;
  font-weight: 700;
}

.training-box p
{
    color: #555;
    line-height: 1.7;
	font-size: 0.95rem;
}

.section-cta {
      padding: 4rem 2rem;
  background: white;
   max-width: 1200px;
  margin: 0 auto;
    display: grid;
    grid-template-columns  :   1fr 1fr;
                    gap: 3rem;
  align-items: center;
}

.cta-content		{
  display: flex;
  flex-direction: column;
    gap: 1.5rem;
}

.cta-content h2
{


    font-size: 2.2rem;
	 color: #1a252f;
   font-weight: 700;


}

.cta-content p {
      color: #555;
    line-height: 1.8;
  font-size: 1.05rem;
	
}

.cta-button-secondary {
   display  :  inline-block;
				 padding: 1rem 2rem;
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  color  :     white;
   text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: fit-content;
   text-align : center;
}  

.cta-button-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(46, 204, 113, 0.3);
}



.cta-image {
    width: 100%;
  height: auto;
	border-radius: 12px;
   object-fit: cover;
}@media (max-width: 768px) {
    .section-cta {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}.section-contact {
   padding: 4rem 2rem;
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
}

.contact-title {


    text-align: center;
   font-size: 2.2rem;
    font-weight: 700;
	color: #ecf0f1;
  margin-bottom: 3rem;
     }

.contact-container {

    max-width: 1000px;
	 margin: 0 auto;
   display: grid;
   grid-template-columns   :    1.5fr 1fr;
  gap: 3rem;


     }

.contact-form {
	        display: flex;
	     flex-direction: column;
	  gap   : 1.5rem;
     }

.form-group     {
	 display: flex;
   flex-direction: column;
}

.form-input,
.form-textarea {
   padding: 1rem;
	 border: 2px solid #ecf0f1;
  border-radius: 6px;
    font-size: 1rem;
  font-family: inherit;
        transition: all 0.3s ease;
   background: white;
    color: #2c3e50;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
    border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-textarea		{
	min-height: 120px;
	resize: vertical;
}

.form-button {
					padding     :     1rem;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
	 color: white;
    border: none;
   border-radius: 6px;
    font-size: 1rem;
	 font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-button:hover

{
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.contact-info     {
  background: rgba(255, 255, 255, 0.1);
 padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #3498db;
}

.contact-info h3 {
   color: #ecf0f1;
    font-size    :     1.3rem;
	margin-bottom: 1.5rem;
   font-weight: 700;
	
}  

.contact-address,
.contact-phone,
.contact-hours {
       color: #bdc3c7;
	margin-bottom: 1rem;
    line-height   :  1.6;}@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-title {
        font-size: 1.8rem;
    }
}.footer {
  background: linear-gradient(135deg, #1a252f 0%, #0f1820 100%);
  color: #ecf0f1;
  padding: 3rem 2rem 1rem;
}

.footer-container {
   max-width: 1200px;
    margin:0 auto;
         display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
   margin-bottom: 2rem;
}

.footer-logo-section {
   display: flex;
        align-items: center;
}

.footer-logo		{
       height: 86px;
    width: auto;
  filter: brightness(0) invert(1);} 

.footer-nav,
.footer-legal,
.footer-contact {
  display: flex;
        flex-direction     :       column;
   gap: 1rem;
}

.footer-nav h4,
.footer-legal h4,
.footer-contact h4 {
   font-size: 1.1rem;
    font-weight: 700;
 color: #ecf0f1;
  margin-bottom: 0.5rem;
}

.footer-nav ul,
.footer-legal ul {
        list-style  :       none;
}

.footer-nav a,
.footer-legal a {
  color    : #bdc3c7;

	    text-decoration: none;

	    transition: color 0.3s ease;
}

.footer-nav a:hover,
.footer-legal a:hover {
    color: #3498db;
}

.footer-contact p{
  color: #bdc3c7;
	 line-height: 1.6;
}

.footer-bottom {
   max-width: 1200px; 
    margin   :  0 auto; 
  padding-top: 2rem; 
  border-top: 1px solid rgba(236, 240, 241, 0.2); 
	text-align: center; 
    color   :  #95a5a6;
}@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   padding: 5rem 2rem;
  text-align: center;
               color     :        white;
}

.services-hero-content {
    margin: 0 auto; 
	  max-width: 1000px;
}

.services-hero-title {
	margin-bottom: 1rem;
  line-height: 1.2;
   font-weight: 700;
	 font-size: 2.8rem;
}

.services-hero-subtitle {
	  font-size: 1.3rem;
  opacity: 0.95;
  line-height: 1.6;

}

.service-detail-section {
    padding     :      4rem 2rem;
  background   :       white;
}

.service-detail-section.service-alt-bg {


   background: #f8f9fa;


}

.service-detail-grid{
         max-width: 1200px;
  margin: 0 auto;
   display: grid;
  grid-template-columns: 1fr 1fr;
	gap:        3rem;
   align-items: center;
}

.service-grid-reverse {
       grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.service-grid-reverse > *	{
  direction: ltr;
	
}

.service-detail-image  {

  width     : 100%;
   height: auto;
 border-radius: 12px;
	object-fit: cover;
	}

.service-detail-content h2    {
    font-size: 2.2rem;
   color: #1a252f;
  font-weight: 700;
   margin-bottom   :     1.5rem;

}

.service-detail-content > p:first-of-type    {
    font-size: 1.1rem;
   color: #555;
    line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-detail-content h3 {
   font-size :1.3rem;
	   color: #2980b9;
	   font-weight  :    700;
	   margin-bottom: 1rem;
}

.service-features {
 list-style:  none;
   margin-bottom: 2rem;
}

.service-features li {
    padding: 0.7rem 0 0.7rem 1.5rem;
    position: relative;
    color: #555;
  line-height: 1.6; 

}  

.service-features li:before {
  content: "→";
  position     :    absolute;
   left: 0;
    color: #3498db;
  font-weight: bold;
}

.service-price {
   font-size   : 1.4rem;
  color: #2ecc71;
    font-weight: 700;
	 margin-top: 1.5rem;
} @media (max-width: 768px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-grid-reverse {
        grid-template-columns: 1fr;
    }

    .services-hero-title {
        font-size: 2rem;
    }

    .services-hero-subtitle {
        font-size: 1rem;
    }

    .service-detail-content h2 {
        font-size: 1.8rem;
    }
}.services-comparison {


       background:      white;
   padding: 4rem 2rem;}

.services-comparison-container {
   max-width   :     1200px;
      margin: 0 auto;
}

.services-comparison-container h2 {
   font-size: 2.2rem;
   color: #1a252f;
   font-weight: 700;
  text-align: center;
   margin-bottom: 3rem;
}

.comparison-table-wrapper {

    overflow-x: auto;
  border-radius:        10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);}

.comparison-table {
	width  :  100%;
   border-collapse: collapse;
    background: white;
}

.comparison-table thead {

  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
     }

.comparison-table th {
    padding: 1.5rem;
      text-align  :     left;
  color: white;
        font-weight: 700;
  font-size :  1rem;
}

.comparison-table td
{
   padding: 1.5rem;
    border-bottom  :1px solid #ecf0f1;
	 color: #555;
}

.comparison-table tbody tr 
 {

          transition: background 0.3s ease;
     }

.comparison-table tbody tr:hover {
	 background: #f8f9fa;
}

.comparison-table tbody tr:last-child td {
	border-bottom: none;
}@media (max-width: 768px) {
    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
    }

    .comparison-table th {
        font-size: 0.85rem;
    }
}.services-faq {
          padding: 4rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8ecf1 100%);
}

.faq-container
	{
   margin: 0 auto;
  max-width  :  900px;
}

.faq-container h2 {
    font-size: 2.2rem;
          color: #1a252f;
  font-weight    :  700;
  text-align: center;
    margin-bottom: 3rem;
}

.faq-items {
		 display: flex;
    flex-direction: column;
    gap  : 1rem;
}

.faq-item {
   background: white;
  border-radius: 10px;
  overflow    :        hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}  

.faq-question {
	 width: 100%;
    padding: 1.5rem;
  background: white;
    border: none;
   text-align: left;
  font-size    :    1.1rem;
        font-weight: 600;
   color     :     #2c3e50;
	 cursor     : pointer;
		transition     :  all 0.3s ease;
   position: relative;
  padding-right: 3rem;
}


.faq-question:hover {
  color: #3498db;
  background: #f8f9fa;
     }

.faq-question:after {
  content: "+";
   position  :        absolute;
   right: 1.5rem;
    top: 50%;
  transform: translateY(-50%);
   font-size  :      1.5rem;
		 transition: transform 0.3s ease; 
	
}

.faq-item.active .faq-question {
   background: #f8f9fa;
   color: #2980b9;
}

.faq-item.active .faq-question:after {

  transform: translateY(-50%) rotate(45deg);

}

.faq-answer {
  max-height: 0;
   overflow: hidden;
    transition: max-height 0.3s ease;
  background   :  #f8f9fa;
}


.faq-item.active .faq-answer {
	    max-height: 500px;

}

.faq-answer p {
    padding: 1.5rem; 
	    color: #555; 
	  line-height   :    1.8; 
	               margin: 0;
}

.services-cta {
    padding: 4rem 2rem;
	  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
		text-align: center;
	  color: white;
}

.services-cta h2  
  {
	font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.services-cta p {

	    font-size  :        1.2rem;
		margin-bottom: 2rem;
	    opacity   :      0.95;


}

.services-cta .cta-button {
  background: #2ecc71;
   color: white;
}

.services-cta .cta-button:hover {

   background: #27ae60;
  box-shadow: 0 8px 20px rgba(46, 204, 113, 0.4);


}

.thankyou-section {
   padding: 4rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8ecf1 100%);
    min-height: 70vh;
  display   : flex;
	align-items: center;
}

.thankyou-container {
	 max-width  :800px;
  margin: 0 auto;
         width: 100%; 

}

.thankyou-card {
   background: white;
	border-radius: 15px;
  padding  :     3rem 2.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
   text-align: center; 

}



.success-icon {
    margin-bottom: 2rem;
	   display: inline-block;
}

.success-icon svg {
  filter: drop-shadow(0 4px 8px rgba(46, 204, 113, 0.2));
}

.thankyou-title {
   color   :        #2ecc71;
	 margin-bottom: 0.5rem;
	font-size: 2.5rem;
   font-weight: 700;
}

.thankyou-subtitle
	{
    margin-bottom :     2rem;

   font-size: 1.3rem;

    color: #555;
}

.thankyou-content {
    text-align: left;
  margin: 2rem 0;
	
}

.thankyou-content p {
   color: #555;
  line-height: 1.8;
  margin-bottom  :  1.5rem;
	font-size: 1.05rem;
}

.next-steps,
.meanwhile-section {
  background: #f8f9fa;
    padding: 1.5rem;
   border-radius: 8px;
  margin: 2rem 0;
   border-left: 4px solid #3498db;
}

.next-steps h3,
.meanwhile-section h3 {
    color: #2980b9;
   font-size: 1.2rem;
  margin-bottom:    1rem;
   margin-top: 0;
}

.steps-list {
    list-style: none;
    counter-reset :        steps;
         padding: 0;
}

.steps-list li {
        color: #555;
				 line-height: 1.6;
                    counter-increment: steps;
  position: relative;
  padding: 0.7rem 0 0.7rem 2.5rem;
}

.steps-list li:before


{
     content: counter(steps);
  position: absolute;
        left: 0;
          width: 1.8rem;
  height: 1.8rem;
  background: #3498db;
    color: white;
 border-radius: 50%;
	 display: flex;
	align-items: center;
  justify-content    :     center;
    font-weight: 700;
	 font-size: 0.9rem;}

.meanwhile-section p {
       margin-bottom: 0;
}

.action-buttons {
    display: flex;
    gap: 1rem;
  margin-top: 2.5rem;
    flex-wrap: wrap;
  justify-content: center;
}

.btn-primary,
.btn-secondary {

	text-decoration: none;
   font-size: 1rem;
   display: inline-block;
    padding: 1rem 2rem;
    font-weight: 600;
    transition     :     all 0.3s ease;
    border-radius: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
}

.btn-primary:hover   {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.btn-secondary {
  background:   white;
  color: #3498db;
	 border: 2px solid #3498db;
}

.btn-secondary:hover		{
    background  : #f8f9fa;
   border-color: #2980b9;
   color     : #2980b9;
}

.thankyou-info-section {
    background: white;
  padding: 4rem 2rem;
}

.info-grid {
   max-width: 1200px;
  margin: 0 auto;
	 display    :     grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.info-box		{
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8ecf1 100%);
   border-radius  :  10px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.info-box h3 {
  color: #2980b9;
   font-weight   :      700;
    margin-bottom: 1rem;
	 font-size: 1.3rem;
}

.info-box p {
	  color: #555;
    line-height: 1.7;




}@media (max-width: 768px) {
    .thankyou-card {
        padding: 2rem 1.5rem;
    }

    .thankyou-title {
        font-size: 2rem;
    }

    .thankyou-subtitle {
        font-size: 1.1rem;
    }

    .thankyou-content {
        text-align: left;
    }

    .action-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .services-faq {
        padding: 3rem 1rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1.2rem;
    }
}.policySection


{
   background: #f8f9fa;
   min-height: 60vh;
   padding: 80px 2rem;
}

.policyContainer{
   max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.policyContainer h2 {
   font-size: 2.5rem;
    color: #1a252f;
  margin-bottom: 2rem;
    font-weight: 700;
   line-height: 1.2;
}

.policyContainer h3 {
    font-size: 1.4rem;
   color: #2980b9;
   margin-top: 2rem;
    margin-bottom: 1rem;
  font-weight: 700;
}

.policyContainer p


{
  color: #555;
  font-size: 1.05rem;
      line-height: 1.8;
  margin-bottom: 1.5rem;

}

.policyContainer strong {
   font-weight     : 600;
 color: #2c3e50;
}



.policyContainer ul  {
   margin-left: 1.5rem;
	 margin-bottom: 1.5rem;
	 color: #555;
   line-height: 1.8;
} 

.policyContainer ul li
{
   margin-bottom   :     0.8rem;


}

.policyContainer a {
	   color: #3498db;
    text-decoration: none;
  transition  :   color 0.3s ease;
     }

.policyContainer a:hover {
    color: #2980b9;
               text-decoration: underline;
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1.5rem;
    }

    .policyContainer h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h3 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

    .policyContainer ul {
        margin-left: 1rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
    }

    .policyContainer h2 {
        font-size: 1.7rem;
    }

    .policyContainer h3 {
        font-size: 1.1rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
    }
}