* {
   margin: 0;
	 padding: 0;
    box-sizing: border-box;
}

html	{
    scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
	line-height: 1.6;
   color: #2c3e50;
  background-color: #fafafa;
}

.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
   position   :   sticky;
    top: 0;
   z-index  :   1000;
}

.navbar-container {
   max-width: 1200px;

   margin  :  0 auto;

   padding: 1rem 2rem;

   display: flex;

   justify-content    :  space-between;

  align-items: center;
}

.navbar-logo {

	    display: flex;
    align-items: center;

}

.logo-img {
	                    height: 45px;
    width: auto;


}

.nav-menu {
   display: flex;
   gap: 2rem;
    align-items  :  center;
}

.nav-link  {
    text-decoration: none;
	 color: #2c3e50;
   font-weight: 500;
        transition : color 0.3s ease;
    position: relative;
}

.nav-link:after {
  content: '';
    position: absolute;
   bottom: -5px;
 left: 0;
   width: 0;
  height: 2px;
    background-color: #3498db;
  transition: width 0.3s ease;
}

.nav-link:hover:after {
  width: 100%;
}

.hamburger-menu {
    display    :        none;
   flex-direction :  column;
               cursor: pointer;
    background: none;
	border: none;
  gap: 0.4rem;
}

.hamburger-menu span {
    width     :        25px;
	height: 3px;
  background-color: #2c3e50;
	border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px); 
	
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) 
 {
  transform: rotate(-45deg) translate(7px, -7px);
}@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: #ffffff;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-link {
        padding: 1rem 2rem;
        width: 100%;
        display: block;
    }

    .nav-link:after {
        display: none;
    }
}.hero-section {
       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: 3rem;
    color: #2c3e50;
  margin-bottom: 1rem;
  line-height: 1.2;
}


.hero-content p     {
    font-size     : 1.1rem;
  color  :  #555;
 margin-bottom: 2rem;
   line-height: 1.7;
}

.hero-image {
    width: 100%;
   overflow: hidden;
        border-radius : 12px;
}

.hero-image img		{
    width:        100%;
	 display: block;
   object-fit: cover;
  height: auto;
	}

.cta-button  
  {
  display  :        inline-block;
         padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
   text-decoration: none;
  border-radius: 6px;
  font-weight :       600;
    transition: all 0.3s ease;
  border: none;
   cursor: pointer;
	font-size: 1rem; 
	
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}.about-section {
  max-width    : 1200px;
  margin: 4rem auto;
    padding     :     0 2rem;
}

.about-container {
   display: grid;
   grid-template-columns: 1fr 1fr;
	gap: 3rem;
  align-items: center;
}

.about-text h2 {

		 font-size    :        2.5rem;
   color   :      #2c3e50;
  margin-bottom: 1.5rem;
	}

.about-text p {
  font-size: 1rem;
    color: #555;
	 margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-image	{
   width: 100%;
  border-radius: 12px;
    object-fit: cover;
}@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }
}.values-section {
	 max-width: 1200px;
  margin: 4rem auto;
  padding: 3rem 2rem;
   background-color: #f8f9fa;
   border-radius :  12px;
}
/* Animation and transitions */


.values-section h2 {

   margin-bottom: 3rem;
  text-align: center;
   color: #2c3e50;
  font-size: 2.5rem;
}

.values-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
   background-color: #ffffff;
  padding: 2rem;
  border-radius    :       8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
   transition   :   all 0.3s ease; 
	
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.2);
}

.value-card h3    {
  font-size: 1.3rem; 
   color     :        #667eea; 
  margin-bottom: 1rem;
}

.value-card p {
  color  :    #666;
   font-size: 0.95rem;
    line-height: 1.6;
}

/* Third-party styles */

.services-preview {
  max-width    :  1200px;
  margin: 4rem auto;
    padding   :       0 2rem; 
	
}

.services-preview h2


{
               text-align: center;
    margin-bottom    : 3rem;
  color: #2c3e50;
  font-size   :2.5rem;
}

.services-container {
  display    :grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;


}

.service-item {
  background-color: #ffffff;
     border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
         transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-8px);
	  box-shadow: 0 12px 28px rgba(102, 126, 234, 0.25);
}

.service-item img {
  width: 100%;
   height: 250px;
    object-fit: cover;
      display: block;
}

.service-item h3 {
	   padding: 1.5rem 1.5rem 0.5rem;
  font-size :     1.3rem;
  color  :       #2c3e50;
     }  

.service-item p {
	   padding: 0.5rem 1.5rem 1.5rem;
   font-size: 0.95rem;
   color    :#666;
  line-height :  1.6;
     }

.cta-section  {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color     :     #ffffff;
    text-align: center;
  padding: 4rem 2rem;
	margin: 4rem 0;
}

.cta-section h2 {
    font-size: 2.2rem;
  margin-bottom: 1rem;
}

.cta-section p{
    font-size: 1.1rem;
  margin-bottom    :2rem;
    opacity :    0.95;
}

.cta-section .cta-button {
                    background-color: #ffffff;
  color: #667eea; 

}

.cta-section .cta-button:hover {
    background-color: #f0f0f0;

}

.contact-section {
   max-width: 800px;
   margin: 4rem auto;
  padding    :     3rem 2rem;
}

.contact-section h2 {


	text-align: center;
  font-size: 2.2rem;
   color: #2c3e50;
    margin-bottom: 1rem;

}
/* Component styles */
	/* Build system output */

.contact-section > p   {
        text-align: center;
   color: #666;
         margin-bottom: 2rem;
    font-size: 1rem;}

/* Debug styles */

	/* Colors and backgrounds */

.contact-form {
    background-color: #ffffff;
	    padding: 2.5rem;
	    border-radius: 12px;
	  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-group {
   margin-bottom: 1.5rem;
}
/* Auto-generated CSS */

/* Experimental feature */


.form-group label {
  display: block; 
  margin-bottom  :    0.5rem; 
    color: #2c3e50; 
   font-weight    :      500; 
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
	 width    :        100%;
  padding   :   0.75rem 1rem;
    border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
    font-family: inherit;
    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-group textarea {
  resize: vertical;
   min-height: 120px;
}

.submit-button{
      width: 100%;
  padding   :  1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
          color: #ffffff;
	 border   :  none;
  border-radius: 6px;
			font-size: 1rem;
   font-weight: 600;
  cursor: pointer;
   transition: all 0.3s ease; 
	
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
} 

.footer		{
  background-color: #2c3e50;
   color: #ecf0f1;
    margin-top: 4rem;
  padding: 3rem 2rem 1rem;
}

.footer-container {
   max-width: 1200px;
		margin: 0 auto;
	    display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	    gap: 2rem;
		margin-bottom     :      2rem;
}

.footer-section h3    {
	font-size: 1.2rem;
    margin-bottom :1rem;
    color: #ffffff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
	 margin-bottom: 0.8rem;
}

.footer-section ul li a {
   color: #ecf0f1;
               text-decoration: none;
	 transition: color 0.3s ease;
}

/* Build system output */

.footer-section ul li a:hover {
   color: #667eea;
}

.footer-section p {
	 font-size   :     0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-section p strong {
  display: block;
  margin-bottom: 0.5rem;
               color   :    #ffffff;
}

.footer-section p a  
  {

    color: #667eea;
  text-decoration: none;
}

.footer-section p a:hover {
  text-decoration: underline;
}

.logo-footer    {
    height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-bottom {
       text-align :       center;

    padding-top: 2rem;

    border-top: 1px solid #34495e;

    font-size: 0.9rem;

      color: #bdc3c7;

}
@media (max-width: 768px) {
    .values-section h2,
    .services-preview h2 {
        font-size: 1.8rem;
    }

    .contact-section {
        padding: 1.5rem 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .cta-section {
        padding: 2rem 1rem;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }
}.services-hero  
  {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #ffffff;
               padding: 5rem 2rem;
  text-align: center;
	position:  relative;
   overflow: hidden;
}

.hero-overlay {
	  max-width: 1200px;
     margin: 0 auto;}

.services-hero h1 {
   font-size: 3rem;
    margin-bottom     :1rem;
   font-weight: 700;
}

.services-hero p {

	   font-size: 1.2rem;
  opacity: 0.95;
	}@media (max-width: 768px) {
    .services-hero {
        padding: 3rem 1rem;
    }

    .services-hero h1 {
        font-size: 2rem;
    }

    .services-hero p {
        font-size: 1rem;
    }
}.breadcrumb-section {
  max-width: 1200px;
    padding: 2rem;
  margin: 0 auto;
    border-bottom: 1px solid #eee;
}



.breadcrumb-container {
    font-size     :     0.95rem;
   color: #666;
}

.breadcrumb-container a {


  color: #667eea;
    text-decoration:none;
   transition: color 0.3s ease;
     }

.breadcrumb-container a:hover {
  color: #764ba2;
}


.breadcrumb-separator {
    margin: 0 0.5rem;
  color: #ccc;
}

.current-page
{
    color:       #2c3e50;

    font-weight: 600;
}

.services-main {
  max-width: 1200px;
  margin: 4rem auto;
    padding: 0 2rem;
}

.services-container {
  gap: 4rem;
	display: grid;
}

.service-detailed 
 {
    display: grid;
	grid-template-columns: 1fr 1fr;
   gap: 3rem;
    align-items: start;
    background-color: #ffffff;
    border-radius: 8px;
   overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.service-detailed:hover  
  {
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15);
}

.service-header 
 {
  overflow: hidden;
    border-radius: 8px 0 0 8px;
}

.service-image {

  width: 100%;
         height: 400px;
  object-fit: cover;
	 display  :       block; 


}

.service-content {
    padding: 2rem; 
	
}


.service-content h2 {

   font-size: 2rem;
    color   :  #2c3e50;
  margin-bottom: 1rem;
}

.service-intro {
       font-size: 1.05rem;
   color: #555;
    margin-bottom: 1.5rem;
   line-height: 1.7;
}

.service-content h3 {
   margin-top :      1.5rem;
	 color: #667eea;
	   font-size: 1.2rem;
	      margin-bottom: 0.8rem;
}

.service-benefits {
    list-style  :     none;
      padding: 0;
   margin-bottom: 1rem;
}

.service-benefits li{
  padding-left: 1.5rem;
       margin-bottom: 0.8rem;
       color: #555;
       position: relative;
   	line-height: 1.6;
}

.service-benefits li:before {
  content: "✓";
      position :  absolute;
  left: 0;
  color: #667eea;
   font-weight: bold;
    font-size   :  1.2rem;
}

.service-content p {
     color: #666;
   margin-bottom: 1rem;
   line-height: 1.7;
}

.price-info {
  background-color: #f8f9fa;
    padding: 1rem;
        border-radius: 6px;
  border-left: 4px solid #667eea;
  font-weight  : 500;
}

.service-cta {
      display: inline-block;
         margin-top: 1.5rem;
	padding: 0.8rem 1.8rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #ffffff;
    text-decoration: none;
   border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}@media (max-width: 768px) {
    .service-detailed {
        grid-template-columns: 1fr;
    }

    .service-header {
        border-radius: 8px 8px 0 0;
    }

    .service-image {
        height: 300px;
    }

    .service-content {
        padding: 1.5rem;
    }

    .service-content h2 {
        font-size: 1.5rem;
    }

    .service-content h3 {
        font-size: 1.1rem;
    }
}.comparison-section {

         max-width    :       1200px;
	margin: 4rem auto;
  padding: 3rem 2rem;
   background-color: #f8f9fa;
    border-radius: 12px;
     }


.comparison-section h2	{
    text-align: center;
    font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 2rem;
}

.comparison-table {
   overflow-x   :       auto;
}

.comparison-table table {
  width: 100%;
                    border-collapse: collapse;
  background-color: #ffffff;
        border-radius:       8px;
    overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}


.comparison-table thead {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color  :        #ffffff;
}


.comparison-table th {
    padding: 1.2rem;
    text-align: left;
   font-weight: 600;
}  

.comparison-table td {
    color: #555;
  border-bottom: 1px solid #eee;
	padding  :1rem 1.2rem;
}

.comparison-table tbody tr:hover {
    background-color: #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: 0.8rem;
    }
}.faq-services {
   max-width:    1200px;
   margin   :    4rem auto;
       padding: 0 2rem;
}

.faq-services h2 {
    text-align: center;
	 font-size: 2rem;
   color: #2c3e50;
    margin-bottom: 2rem;
}

.faq-container {

    display: grid;
    gap: 1.5rem;
     }

.faq-item {
  background-color    :  #ffffff;
    padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	 transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 16px rgba(102, 126, 234, 0.15);
}



.faq-question {
    font-size  :  1.1rem;
      color: #667eea;
       margin: 0 0 0.8rem 0;
      cursor: pointer;
}

.faq-item p {
	margin: 0;
    color: #666;
   line-height:1.7;
}

.testimonials-services		{
  max-width: 1200px;
    margin: 4rem auto;
        padding: 3rem 2rem;
   background-color: #f8f9fa;
    border-radius: 12px;
}

.testimonials-services h2 {
    text-align: center;
               font-size: 2rem;
   color: #2c3e50;
	margin-bottom: 2rem;
}

.testimonials-grid  
  {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.testimonial-card {
    background-color: #ffffff;
   padding    :        2rem;
    border-radius  : 8px;
	border-left: 4px solid #667eea;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}


.testimonial-text    {
  font-size: 1rem;
   color: #555;
   margin-bottom: 1rem;
    line-height: 1.7;
    font-style: italic;

}

.testimonial-author {
	font-weight: 600;
  color: #667eea;
   margin    :    0;
}

.cta-services {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color     :     #ffffff;
   text-align: center;
 padding  :   4rem 2rem;
   margin: 4rem 0;
	border-radius     :      12px;
    max-width: 1200px;
  margin-left: auto;
  margin-right:        auto;
}

.cta-services h2 {
  font-size: 2.2rem;
   margin-bottom: 1rem;
}

.cta-services p 
 {
  font-size: 1.1rem;
    margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-services .cta-button {
    background-color: #ffffff;

    color: #667eea;
}

.thankyou-section {
   	max-width: 700px;
	 margin: 3rem auto;
	padding: 2rem;
	}

.thankyou-container {
    background-color: #ffffff;
  padding: 3rem 2rem;
          border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
 text-align: center;
}



.success-icon{
    width: 80px;
  height    :      80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   border-radius: 50%;
      display: flex;
         align-items: center;
  justify-content: center;
   margin: 0 auto 1.5rem;
}

.success-icon svg {
   width: 40px;
   height: 40px;
  color: #ffffff;
    stroke-width   :     3;
}

.thankyou-container h1 {
   font-size: 2.5rem;
    color: #2c3e50;
  margin-bottom: 0.5rem;
}

.thankyou-subtitle {
    font-size  :1.2rem;
    color: #667eea;
     margin-bottom     :        2rem;
}

.thankyou-content {
  text-align :     left;
   margin-bottom :   2rem;

}

.thankyou-content > p {
	   color   :    #555;
   margin-bottom: 2rem;
  line-height    :        1.7;


}

.next-steps {
  margin-top: 2rem;
}

.next-steps h2 {
   font-size: 1.5rem;
   color: #2c3e50;
  margin-bottom: 1.5rem;
    text-align: center;
}

.steps-list  {


   display: grid;
	   gap: 1.5rem;
	}

.step {
   display: grid;
	  grid-template-columns: 60px 1fr;
	    gap: 1.5rem;
	    align-items: start;
	  padding: 1rem;
	    background-color: #f8f9fa;
	  border-radius: 8px;
}

.step-number {
 width: 60px;
   height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: #ffffff;
    border-radius: 50%;
   display     :flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
   font-size: 1.5rem;
	}

.step-content h3 {
  margin-top: 0; 
	   margin-bottom: 0.5rem; 
	    color: #2c3e50;
}

.step-content p {
   color: #666;
  margin: 0;
    line-height: 1.6;}

.contact-info-box {
    background-color: #f0f4ff;
   border-left     :       4px solid #667eea;
  padding: 1.5rem;
  border-radius: 8px;
          margin: 1.5rem 0;
}

.contact-info-box h2 {
  font-size: 1.2rem;
   color :      #2c3e50;
    margin-bottom: 1rem;
   text-align: left;
}

.contact-info-box p {
    color: #555;
    margin-bottom: 0.5rem;
  text-align: left;
}

.contact-info-box a {
  color: #667eea;
    text-decoration: none;
   font-weight: 600;
}

.contact-info-box a:hover {
  text-decoration: underline;
}

.resources-box {
                    background-color :   #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;

}

.resources-box h2 {
       font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
	text-align: left;}

.resources-box p {
    color: #555;
  margin-bottom: 1rem;
   text-align: left;
}

.resources-box ul {
   list-style: none;
    padding   :      0;
}

.resources-box ul li {

	  margin-bottom: 0.5rem;}

.resources-box ul li a
{
        transition: color 0.3s ease;
   color: #667eea;
    text-decoration: none;

}

.resources-box ul li a:hover {
	color: #764ba2;
      text-decoration: underline;
}

.action-buttons

{
   display   :  flex;
  gap: 1rem;
    margin-top: 2rem;
    justify-content    :    center;
}

.btn-primary


{
    padding: 0.9rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
   text-decoration: none;
	border-radius: 6px;
   font-weight: 600;
  transition: all 0.3s ease;
   display: inline-block;


}

.btn-primary:hover {


  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
     }

.btn-secondary {
   padding: 0.9rem 2rem;
	  background-color: #f0f0f0;
	    color: #667eea;
	  -o-transition: all 0.3s ease;
	   text-decoration: none;
	    -webkit-border-radius: 6px;
	    border-radius: 6px;
	   -moz-transition: all 0.3s ease;
	    -moz-border-radius  :    6px;
	   font-weight: 600;
	    transition: all 0.3s ease;
		display: inline-block;
	   border :        2px solid #667eea;
}

.btn-secondary:hover {
               background-color: #667eea;
    color: #ffffff;
	
}

.faq-thankyou {
   max-width: 1200px;
          margin: 4rem auto;
  padding :      0 2rem;
}

.faq-thankyou h2 {
  text-align: center;
          font-size: 2rem;
   color: #2c3e50;
   margin-bottom: 2rem;
}@media (max-width: 768px) {
    .thankyou-container {
        padding: 1.5rem;
    }

    .thankyou-container h1 {
        font-size: 1.8rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .step {
        grid-template-columns: 50px 1fr;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .cta-services {
        margin-left: 2rem;
        margin-right: 2rem;
    }
}.policySection {
    padding: 80px 2rem;
  background: #f8f9fa;
  min-height: calc(100vh - 200px);
}

.policyContainer {
  max-width: 900px;
   margin: 0 auto;
   text-align     :  left;
  background-color: #ffffff;
    padding  :3rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}


.policyContainer h1 {
	font-size: 3rem;
  color: #2c3e50;
  margin-bottom: 2rem;
  font-weight: 700;
  border-bottom: 3px solid #667eea;
   padding-bottom: 1rem;
}



.policyContainer h2 {
  font-size: 1.8rem;
     color: #2c3e50;
    margin-top: 2rem;
  margin-bottom: 1rem;
      font-weight: 600;
  color: #667eea;
}

.policyContainer p {


  color: #555;
  margin-bottom: 1.5rem;
   line-height: 1.8;
   font-size: 1rem;
}

.policyContainer strong {
  color: #2c3e50;

  font-weight: 600;
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer {
        padding: 1.5rem;
        border-radius: 8px;
    }

    .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;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 0.5rem;
    }

    .policyContainer {
        padding: 1rem;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
    }
}