* {
  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: #fff;

}

.navbar {

	               background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
         padding: 1rem 0;
     }

.navbar-container {
      max-width: 1200px;
       padding: 0 2rem;
	margin: 0 auto;
	justify-content: space-between;
    align-items: center;
    display: flex;
	
}

.navbar-brand a		{

	 text-decoration: none;
	}

.navbar-logo {
   height: 50px;
    width: auto;
  filter: brightness(0) invert(1);
}


.navbar-toggle {
      display   :  none;
	flex-direction: column;
    cursor: pointer;
}

.navbar-toggle span {

		width: 25px;
   height: 3px;
   background-color: #2c3e50;
    margin: 5px 0;
   transition: 0.3s;
	border-radius: 2px;
}

.navbar-menu {
          display: flex;
    list-style: none;
    gap: 2rem;
}

.navbar-menu a {
	text-decoration    :      none;
     color: #2c3e50;
    font-weight: 500;
        transition     :color 0.3s;
  font-size: 0.95rem;
}



.navbar-menu a:hover {
    color: #667eea;
}@media (max-width: 768px) {
    .navbar-toggle {
        display: flex;
    }

    .navbar-menu {
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
        flex-direction: column;
        background-color: #fff;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .navbar-menu.active {
        max-height: 300px;
    }

    .navbar-menu li {
        padding: 1rem 2rem;
        border-bottom: 1px solid #eee;
    }

    .navbar-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-8px, 8px);
    }

    .navbar-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .navbar-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-8px, -8px);
    }
}.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;
    color   :        #2c3e50;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-content p {


    font-size   :  1.1rem;
  color: #555;
    margin-bottom :        2rem;
    line-height: 1.8;
     }

.cta-button {
  display: inline-block;
   padding: 1rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration     :    none;
    border-radius: 50px;
   font-weight: 600;
	transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.hero-image {
	width: 100%;
   height   :       auto;
   border-radius: 10px;
    object-fit   : cover;
}@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
}.about {
   background-color  :#f8f9fa;
    padding: 4rem 2rem;
	 display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 3rem;
   align-items : center;
  max-width    :    1200px;
	margin: 0 auto; 

}

.about-content h2 {
      font-size: 2.2rem;
   color: #2c3e50;
  margin-bottom: 1.5rem;
}

.about-content p     {
    font-size     : 1rem;
  color: #555;
       line-height   :       1.9;

}

.about-image {
     width: 100%;
      height: auto;
   border-radius: 10px;

}@media (max-width: 768px) {
    .about {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }
}.services-preview {
   max-width: 1200px;
   margin: 0 auto;
    padding: 4rem 2rem;
}

.services-preview h2 {
    text-align: center;
  font-size  : 2.2rem;
   color: #2c3e50;
   margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
		gap: 2rem;
}

.service-card {
  background-color: #fff;
        padding: 2rem;
   border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition  : transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.service-card:hover {
	  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);


}

.service-icon {
  width :  60px;
      height: 60px;
   margin     :      0 auto 1rem;
    display: flex;
	align-items: center;
  justify-content: center;
}

.service-icon img {
   width: 100%;
  height: 100%;
 stroke :     #667eea;
	 fill: none;
    stroke-width: 2;
}

.service-card h3{
  font-size: 1.3rem;
    color: #2c3e50;
  margin-bottom: 1rem;
	
}

.service-card p   {


   color: #666;
  font-size: 0.95rem;
    line-height: 1.6;


}@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}.features {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
   max-width: 1200px;
  margin: 0 auto;
     padding: 4rem 2rem;
   display    :       grid;
    grid-template-columns: 1fr 1fr;
   gap: 3rem;
   align-items :     center;
} 

.features-content h2 {
	 font-size: 2.2rem;

	    color: #2c3e50;

		 margin-bottom: 2rem;
}

.features-list {
    display: flex;
    flex-direction: column;
  gap: 1.5rem; 
	
}

.feature-item h3 {
   font-size  :      1.2rem;
  color: #667eea;
   margin-bottom: 0.5rem;
}

.feature-item p {
  color: #555;
    line-height:1.7;
	font-size: 0.95rem;
}

.features-image
{
    width :100%;
   height: auto;
         border-radius :      10px;
}@media (max-width: 768px) {
    .features {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }
}.testimonials {
   max-width: 1200px;
    margin: 0 auto;
  padding: 4rem 2rem;
}

.testimonials h2 {
  text-align: center;
			font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.testimonials-grid     {
          display: grid;
  grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
}

.testimonial-card 
 {
   background-color: #f8f9fa;
    padding: 2rem;
  border-radius: 10px;
  border-left: 4px solid #667eea; 
	
}

.testimonial-card p
{
       color:     #555;
    font-size: 0.95rem;
	margin-bottom: 1.5rem;
  font-style: italic;
  line-height: 1.7; 
	}

.testimonial-card h4 {
  font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 0.3rem;
}

.testimonial-card span {
    color: #999;
    font-size: 0.85rem;
}@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}.cta-section 
 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color:    white;
   text-align: center;
  padding: 4rem 2rem;
    max-width: 1200px;
	 margin: 0 auto;
   border-radius: 10px;
}

.cta-section h2 {


  font-size: 2.2rem;
   margin-bottom: 1rem;


}

.cta-section p {
	font-size: 1.1rem;
   margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button-primary {
  display: inline-block;
	padding     :  1rem 2.5rem;
               background-color: white;
	 color: #667eea;
	 text-decoration: none;
  border-radius: 50px;
          font-weight: 600;
   transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}  

.contact {


   background-color: #f8f9fa;
  padding: 4rem 2rem;
   max-width: 1200px;
    margin: 0 auto;}

.contact h2 {
	text-align: center;
    font-size: 2.2rem;
         color: #2c3e50;
 margin-bottom: 3rem;
}

.contact-container {
		 gap: 3rem;
	  display: grid;
	    grid-template-columns: 2fr 1fr;
}

.contact-form {
  background-color: white;
   padding: 2rem;
   border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
                    display: block;
	 margin-bottom: 0.5rem;
   font-weight: 600;
   color: #2c3e50;
   font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea     {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
   font-family  : inherit;
    font-size:       0.95rem;
   transition   :   border-color 0.3s;
}

.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);
}

.submit-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color     :  white;
  padding:      0.85rem 2rem;
    border: none;
    border-radius     : 50px;
    font-weight: 600;
	 font-size: 0.95rem;
   cursor: pointer;
   transition: transform 0.3s, box-shadow 0.3s;
  width: 100%;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.contact-info {
  background-color: white;
  padding: 2rem;
    border-radius:   10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.contact-info h3 {
		font-size: 1.5rem;
  color   :  #2c3e50;
  margin-bottom  :        2rem;
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-label {
   display: block;
    font-weight: 600;
    color: #667eea;
   font-size: 0.9rem;
   margin-bottom: 0.3rem;
}

.contact-info span:not(.info-label) {
  color  : #555;
       line-height: 1.6;
}@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}.footer {

	   background-color: #2c3e50;
  color   :       #ecf0f1;
   padding: 3rem 2rem 1rem; 
	
}

.footer-container {
    max-width: 1200px;
  margin: 0 auto;
}

.footer-brand  {


   margin-bottom: 2rem;
	}

.footer-logo     {
   height    :  50px;
   width: auto;
  filter: brightness(0) invert(1);
}

.footer-links     {

	display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
	 margin-bottom: 2rem;
}

.footer-column h4 {
    font-size: 1rem;
    margin-bottom     :        1rem;
       color: white; 
	
}

.footer-column ul {
               list-style     :    none;
}


.footer-column ul li {
                    margin-bottom:       0.5rem;
}

.footer-column ul li a {
    -o-transition:  color 0.3s;
      color    :  #ecf0f1;
   text-decoration: none;
    transition: color 0.3s;
                    -webkit-transition: color 0.3s;
    font-size     :  0.9rem;
}

.footer-column ul li a:hover {
   color: #667eea;
}

.footer-column p {
  color   :      #bbb;
  font-size: 0.9rem;
  line-height: 1.6;
         margin-bottom: 0.5rem;
}

.footer-bottom
	{
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
    text-align: center;
	color: #999;
    font-size:  0.85rem;


}@media (max-width: 768px) {
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }

    .services-preview h2,
    .about-content h2,
    .features-content h2,
    .testimonials h2,
    .cta-section h2,
    .contact h2 {
        font-size: 1.6rem;
    }

    .cta-section {
        padding: 2rem 1rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
	 text-align    :       center;
   padding: 5rem 2rem;
   max-width  :    1200px;
 margin: 0 auto;
}

.services-hero-content h1 {

  font-size: 2.8rem;
    margin-bottom: 1rem;
  line-height: 1.2;
}

.services-hero-content p {
  font-size: 1.1rem;
		 opacity: 0.95;
    max-width: 600px;
  margin     :        0 auto;
	
}

.services-main {

  max-width  :       1200px;
	margin: 0 auto;
    padding: 4rem 2rem;
	


}

.services-container {
                    display: flex;
    flex-direction: column;
   gap     :3rem;
}

.service-detail

{
	background-color: #fff;
   border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-detail:hover {
  transform: translateY(-3px); 
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.service-detail-header {
    padding   :  2rem;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  display: flex;
    justify-content   :        space-between;
    align-items: center;
    border-bottom: 2px solid #f0f0f0;
}

.service-detail-header h2 {

  font-size: 1.8rem;
   color: #2c3e50;
  margin: 0;
     }

.service-badge {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  padding: 0.5rem 1.5rem;
   border-radius:   50px;
    font-size: 0.85rem;
    font-weight: 600;
	 white-space: nowrap;
}

.service-detail-content {
    display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 2rem;
          padding: 2rem;
	
}

.service-detail-image {
      width: 100%;
   height: auto;
    border-radius: 8px;
   object-fit  :    cover;
}

.service-detail-text h3 {
       font-size: 1.4rem;
               color: #2c3e50;
    margin-bottom: 1rem;

}

.service-detail-text p {


      color: #555;
			margin-bottom: 1.5rem;
   line-height: 1.8;
	 font-size: 0.95rem;
	}

.service-features {
	  list-style: none;
	 margin-bottom: 2rem;


     }

.service-features li {
	padding: 0.6rem 0;
	color: #555;
   font-size     :        0.95rem;
    padding-left     :       1.5rem;
   position: relative;
}

.service-features li:before   {
  content: "▸";
   position    :absolute;
    left: 0;
    color: #667eea;
      font-weight  :        bold;
  font-size :       1.2rem;
}

.service-pricing {
   align-items    :  baseline;
  display     :       flex;
    border-left: 4px solid #667eea;
   gap: 0.5rem;
   border-radius:    8px;
    background-color: #f8f9fa;
    padding: 1.5rem;
}

.price-label {
   color: #999;
  font-size: 0.85rem;
      font-weight    :        500;
}

.price-value    {
    font-weight: 700;
    color: #667eea;
    font-size: 2rem;
}

.price-period {
  color: #999;
    font-size     :      0.85rem;
    margin-left: auto;
}

.service-comparison		{
  background-color: #f8f9fa;
 padding: 4rem 2rem;
  max-width: 1200px;
  margin  :        0 auto;
}

.service-comparison h2 {
      text-align: center;
	font-size    :2.2rem;
   color: #2c3e50;
  margin-bottom    :   3rem;

}

.comparison-table {
   background-color    :white;
    border-radius: 10px;
   overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.comparison-row {
    display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom    :     1px solid #eee;
}

.comparison-row.header-row {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.comparison-row.header-row .comparison-cell{
  color    :        white; 
   font-weight: 600;
}

.comparison-cell {
  padding: 1.5rem;
	color: #555;
        font-size: 0.95rem;
               align-content:   center;
  display: flex;
    align-items: center;
}

.comparison-row:hover:not(.header-row) {
    background-color: #f8f9fa;
	
}

.service-process {
  max-width: 1200px;
	 margin: 0 auto;
  padding: 4rem 2rem;
}

.service-process h2 {
    text-align: center;
                    font-size: 2.2rem;
  color: #2c3e50;
   margin-bottom: 3rem;
}

.process-steps {
         display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap     :       1.5rem;
}

.process-step {
	text-align: center;
}

.step-number {
  width: 60px;
	height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 50%;
   display   :       flex;
    align-items    :  center;
   justify-content  :center;
  font-size: 1.5rem;
   font-weight: 700;
  margin: 0 auto 1rem; 

}

.process-step h3

{
   font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom   :      0.5rem;
}

.process-step p {

    color: #666;
   font-size: 0.9rem;
  line-height     :  1.6;}

.cta-services {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 color: white;
   text-align    :  center;
  padding: 3rem 2rem;
    max-width: 1200px;
  margin: 3rem auto 0;
               border-radius: 10px;
}

.cta-services h2 {
         font-size: 2rem;
     margin-bottom: 1rem;
}

.cta-services p {
    font-size: 1rem;
    opacity:       0.95;
   margin-bottom: 2rem;
}

.thankyou-container {
   max-width   :    800px;
	 margin: 0 auto;
                    padding  :      4rem 2rem;
   text-align: center;
                    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thankyou-content {
  width: 100%;
}

.success-icon {
	width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
   display: flex;
   align-items: center;
   justify-content: center;
}

.success-icon img {

	   width: 100%;
      height    : 100%;
	stroke: #2ecc71;
    fill: none;
   stroke-width: 2;
  filter: drop-shadow(0 0 10px rgba(46, 204, 113, 0.3));
}

.thankyou-content h1 {
   font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.thank-you-subtitle {
    font-size: 1.3rem;
  color: #667eea;
  font-weight:      600;
  margin-bottom: 2rem;
}

.confirmation-message {
                    background-color: #f0f8ff;
    padding: 2rem;
  border-radius: 10px;
	margin-bottom: 2.5rem;
  border-left: 4px solid #667eea;
}


.confirmation-message p {
   color: #555;
    line-height: 1.8;
         font-size: 0.95rem;
  margin-bottom: 1rem;
}

.confirmation-message p:last-child {
    margin-bottom    :        0;
}

.next-steps {
   margin-bottom: 3rem;
}

.next-steps h2 {
   font-size:  1.8rem;
  color    :#2c3e50;
   margin-bottom:     2rem; 

}

.steps-list {
                    display: flex;
      flex-direction: column;
   gap: 1.5rem;
}

.step-item {
  display: flex;
    align-items:       flex-start;
   gap: 1.5rem;
   text-align: left;
	padding: 1.5rem;
	 background-color: #fff;
    border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.step-circle {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
    border-radius: 50%;
  display: flex;
   align-items: center;
  justify-content: center;
  font-size: 1.3rem;
	font-weight: 700;
	flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.1rem;
        color: #2c3e50;
  margin-bottom: 0.3rem;
}

.step-content p {
    color: #666;
   font-size     :       0.9rem;
    line-height:     1.6;
}

.action-buttons {
	 display: flex;
               margin-bottom: 3rem;
  gap: 1rem;
  flex-wrap :  wrap;
    justify-content: center;
}

.button-primary,
.button-secondary {
   padding: 1rem 2rem;
   border-radius  :   50px;
  -webkit-border-radius: 50px;
   text-decoration: none;
  font-weight :        600;
   transition: all 0.3s;
    display: inline-block;
    font-size: 0.95rem;
}

.button-primary

{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.button-primary:hover


{
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);}

.button-secondary {
	background-color: #f0f0f0;
	 color: #2c3e50;
  border :        2px solid #ddd;


}

.button-secondary:hover {
   background-color: #e8e8e8;
   border-color: #667eea; 

}

.contact-details {
    background-color: #f8f9fa;
    padding: 2rem;
   border-radius: 10px;
   margin-top: 3rem;
}

.contact-details h3 {
  font-size: 1.2rem;
  color: #2c3e50;
	margin-bottom: 1.5rem;
}

.contact-details p {

         color:    #555;
   line-height: 1.8;
			font-size: 0.95rem;

}

.contact-details strong {
    color: #667eea;
    font-weight: 600;
}

.faq-section {
    background-color  :#f8f9fa;
  padding: 4rem 2rem;
   max-width: 1200px;
   margin: 0 auto; 
	
}

.faq-section h2 {
						text-align: center;
	font-size   :2.2rem;
	 color: #2c3e50;
    margin-bottom: 3rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
	
}

.faq-item {
   background-color: white;
   padding: 1.8rem;
    border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition     :    transform 0.3s;
}

.faq-item:hover {
  transform: translateY(-3px);
}

.faq-item h3


{
  font-size: 1.1rem;
   color    :      #2c3e50;
  margin-bottom: 1rem;
}

.faq-item p {
   color: #666;
   line-height     :      1.7;
  font-size: 0.9rem;
}@media (max-width: 1024px) {
    .service-detail-content {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .service-detail-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .comparison-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .action-buttons {
        flex-direction: column;
    }

    .button-primary,
    .button-secondary {
        width: 100%;
    }

    .steps-list {
        gap: 1rem;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
    }

    .step-circle {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 3rem 1rem;
    }

    .services-hero-content h1 {
        font-size: 1.6rem;
    }

    .service-detail-header h2 {
        font-size: 1.4rem;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step h3 {
        font-size: 0.95rem;
    }

    .process-step p {
        font-size: 0.8rem;
    }
}.policySection {
        padding: 4rem 2rem;

  background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, rgba(118, 75, 162, 0.03) 100%);

     min-height   :       70vh;
}

.policyContainer {
   max-width: 900px;
    margin: 0 auto;
   text-align: left;
     background-color: white;
	 padding  :     3rem;
   border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.policyContainer h1 {
    font-size: 2.8rem;
      color: #2c3e50;
  margin-bottom: 2rem;
   font-weight: 700;
   border-bottom:   3px solid #667eea;
  padding-bottom: 1rem;
}

.policyContainer h2 {
   font-size: 1.5rem;
	color: #2c3e50;
   margin-top: 2.5rem;
    margin-bottom: 1rem;
          font-weight: 600;
   color: #667eea;
}

.policyContainer h2:first-of-type {
	margin-top: 0;
}

.policyContainer p {
    color: #555;
  margin-bottom: 1.5rem;
        line-height: 1.8;
  font-size: 0.95rem;
	 text-align:    justify;
}

.policyContainer p:last-child {
   margin-bottom: 0;
}@media (max-width: 1024px) {
    .policyContainer {
        padding: 2.5rem;
    }

    .policyContainer h1 {
        font-size: 2.2rem;
    }

    .policyContainer h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .policySection {
        padding: 2rem 1rem;
    }

    .policyContainer {
        padding: 2rem;
        margin: 0;
    }

    .policyContainer h1 {
        font-size: 1.8rem;
    }

    .policyContainer h2 {
        font-size: 1.15rem;
        margin-top: 2rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        text-align: left;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 1.5rem 1rem;
        min-height: auto;
    }

    .policyContainer {
        padding: 1.5rem;
        border-radius: 8px;
    }

    .policyContainer h1 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }
}