*  {

       margin: 0;
  padding     :   0;
      box-sizing: border-box;


}

html {
      scroll-behavior: smooth;
     }

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	   color: #2c3e50;
	   line-height:        1.6;
	   background-color: #fff; 
	
}

.navbar {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
   z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container
	{
  max-width: 1200px;
  margin: 0 auto;
    display: flex;
   justify-content: space-between;
   align-items: center;
    padding: 0 2rem;

}

.logo-section	{
  flex     :    0 0 auto;
}

.nav-logo {
    height   :     40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-menu {
    display   : flex;
   list-style: none;
   gap    :     2rem;
  align-items: center;
}

.nav-menu a {
   -webkit-transition: all 0.3s ease;
   -o-transition: all 0.3s ease;
    -moz-border-radius: 4px;
  color: white;
    text-decoration: none;
		 -moz-transition: all 0.3s ease;
   font-weight: 500;
  transition :   all 0.3s ease;
    -webkit-border-radius   :4px;
   padding: 0.5rem 1rem;
    border-radius: 4px;
}

.nav-menu a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.hamburger {
    display: none;
  flex-direction:  column;
   cursor: pointer;
   gap: 6px;
}

.hamburger span {
   width   :    25px;

	    height: 3px;

	          background-color: white;

	    border-radius: 3px;

	   transition: all 0.3s ease;

}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
	
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3)
	{
  transform: rotate(-45deg) translate(8px, -8px);
	
}

.hero-section {
               display: grid;
  grid-template-columns: 1fr 1fr;
   gap :       3rem;
  align-items: center;
  max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.hero-content h1 {
   font-size: 3rem;
  font-weight: 700;
  color: #2c3e50;
   margin-bottom: 1rem;
    line-height: 1.3;
}

.hero-content p {
    font-size: 1.3rem; 
  color: #555; 
  margin-bottom   :        2rem; 

}

.cta-button {
    display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
 padding: 0.9rem 2rem;
   border-radius: 50px;
	text-decoration: none;
		font-weight: 600;
   transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
	
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.hero-image {
  position: relative;
     height: 100%;
   min-height: 400px;
}

.hero-img {

	   width: 100%;
                    height: 100%;
   object-fit: cover;
    border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);

}

.about-section {
    background-color: #f8f9fa;
   padding: 4rem 2rem;
}

.about-container {

	   max-width: 1200px;
    margin: 0 auto;}

.about-container h2 {

	   margin-bottom: 1.5rem;
  text-align: center;
  font-size  :      2.5rem;
   color: #2c3e50;}

.about-container > p {


                    text-align: center;
   font-size: 1.1rem;
    color: #555;
   margin-bottom: 3rem;
  max-width: 800px;
   margin-left: auto;
  margin-right: auto;


}

.about-grid {
   display :       grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
}

.about-card {
	   background: white;
    padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
  border-left: 4px solid #667eea;}


.about-card:hover {
  transform: translateY(-5px); 
	  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.about-card h3 {


  font-size: 1.3rem;

	        color    :       #2c3e50;

	  margin-bottom: 1rem;

}

.about-card p {
  color: #666;
   line-height: 1.7;
}

.expertise-section {
    padding   :   4rem 2rem;
   background-color: white;
}

.expertise-container		{
         max-width: 1200px;
	 margin: 0 auto;
}

.expertise-container h2 {

	  font-size: 2.5rem;
	 color: #2c3e50;
    margin-bottom: 3rem;
    text-align: center;
     }

.expertise-grid {
    display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	   gap: 2rem;
}

.expertise-card
	{
  background: #f8f9fa;
  border-radius  :     10px;
   overflow :     hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
 transition: all 0.3s ease;
}

.expertise-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);


}

.expertise-image {

	   width: 100%;
    height: 250px;
	object-fit     :   cover;
}

.expertise-card h3 {
  font-size: 1.3rem;
    color:    #2c3e50;
   padding: 1.5rem 1.5rem 0.5rem;
}

.expertise-card p {
       color:        #666;
     padding: 0 1.5rem 1.5rem;
       line-height: 1.7;
}

.services-preview {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding  :      4rem 2rem;}

.services-container {
   max-width  :  1200px;
   margin: 0 auto;
}

.services-container h2 {
  font-size: 2.5rem;
	color: white;
  margin-bottom: 3rem;
    text-align: center;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-item {
  background: rgba(255, 255, 255, 0.15);
  padding :     2rem;
   border-radius: 8px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
   transition: all 0.3s ease;
}  

.service-item:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
}

.service-item h3 {
   color: white;
   font-size   :  1.2rem;
  margin-bottom: 1rem;
}

.service-item p {
  color: rgba(255, 255, 255, 0.9); 
	  line-height: 1.7;
}

.image-section {
      background-color:       #f8f9fa;
       padding: 3rem 2rem;
}

.image-container		{
    max-width    :      1200px;
    margin     :0 auto;
   border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.section-image {
   width: 100%;
   height: auto;
	display: block; 
	
}  

.cta-section {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  padding: 4rem 2rem;
    text-align: center;
}

.cta-wrapper {
  max-width: 800px;
    margin: 0 auto;
}

.cta-wrapper h2 {
  font-size: 2.2rem;
         color   :      white;
    margin-bottom: 1rem; 

}

.cta-wrapper p {
    font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;}

.cta-button-secondary 
 {


	display: inline-block; 
	   background    :    white; 
	  color: #667eea; 
	  padding    :0.9rem 2rem; 
	          border-radius    :  50px; 
	    text-decoration: none; 
	         font-weight: 600; 
	   transition: all 0.3s ease; 
	  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	}

.cta-button-secondary:hover

{
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.contact-section {
  padding: 4rem 2rem;
    background-color: white;
} 

.contact-container {
  max-width: 1200px;

	    margin  :0 auto;
}

.contact-container h2 {
   font-size: 2.5rem;
  color: #2c3e50;
	margin-bottom    :      3rem;
    text-align: center;
}

.contact-wrapper {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 3rem;
}

.contact-form {
    background-color :#f8f9fa;
  padding: 2rem;
	border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
    padding: 0.9rem;
  border: 2px solid #e0e0e0;
	 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);
}

.submit-button {

	 width: 100%;
   padding: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  border  :  none;
   border-radius: 6px;
    font-size: 1rem;
  font-weight: 600;
    cursor: pointer;
  transition  :      all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);

}

.submit-button:hover  {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.contact-info {
	    display: flex;
    flex-direction: column;
    gap: 2rem;}

.info-block

{

	    background-color: #f8f9fa;
     padding: 2rem;
  border-radius: 10px;
  border-left: 4px solid #667eea; 
	
}

.info-block h3 {

   color: #2c3e50;
       font-size: 1.2rem;
    margin-bottom :      1rem; 

}

.info-block p {
  color: #666;
        line-height: 1.8; 
	
}

.footer {
  background:        #2c3e50;
	color: white;
   padding: 3rem 2rem 1rem;
}

.footer-container {
	max-width: 1200px;
    margin    :    0 auto;
  display: grid;
   grid-template-columns: auto 1fr;
    gap   : 3rem;
    margin-bottom: 2rem;
}


.footer-logo-section {
    flex: 0 0 auto;
}

.footer-logo {
   height: 50px;
   width: auto;
  filter: brightness(0) invert(1); 

}



.footer-content {

					display :    grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 2rem;}

.footer-column h4 {

	   font-size: 1.1rem;
    margin-bottom: 1rem;
   color: #667eea;}  

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
   margin-bottom    :       0.5rem;
}  

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
	transition: all 0.3s ease;
}

.footer-column a:hover {
  color: #667eea;
}

.footer-column p {
     color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
         font-size: 0.95rem;
	}

.footer-bottom {
	max-width: 1200px;
   margin:0 auto;
    padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
  color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
} @media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
    }

    .nav-menu.active {
        max-height: 300px;
        padding: 1rem 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
        margin: 0;
        border-radius: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-image {
        min-height: 300px;
    }

    .about-container h2,
    .expertise-container h2,
    .services-container h2,
    .contact-container h2 {
        font-size: 1.8rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-wrapper h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .about-grid,
    .expertise-grid,
    .services-list {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .about-container h2,
    .expertise-container h2,
    .services-container h2,
    .contact-container h2 {
        font-size: 1.5rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 5rem 2rem;
   text-align     :       center;
    color: white;
}

.services-hero-content h1 {
	 font-size: 3rem;
  font-weight: 700;
   margin-bottom: 1rem;
  line-height: 1.3; 

}

.services-hero-content p


{
   font-size: 1.3rem;
	 opacity: 0.95; 

}

.services-detailed {
  padding: 4rem 2rem;
   background-color: white;
}

.services-container {
      max-width: 1200px;
   margin: 0 auto;}

.services-container > h2 {
    font-size: 2.5rem;
   color: #2c3e50;
   margin-bottom: 3rem;
  text-align: center;
}

.service-block {
      display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 3rem;
  align-items: center;
    margin-bottom: 4rem;
         padding:       2rem;
    background-color: #f8f9fa;
    border-radius: 10px;
   border-left: 5px solid #667eea; 

	}

.service-block-reverse {
  grid-template-columns: 1fr 1fr;
}

.service-block-reverse .service-image		{
    order: -1;
}

.service-text h3 {
	font-size: 1.8rem;
   color:#2c3e50;
  margin-bottom: 1rem;
}



.service-text p {
  color: #555;
	line-height: 1.8;
   margin-bottom: 1.5rem;
   font-size :1rem; 
	
}

.service-features {
    list-style: none;
    padding: 0;

}

.service-features li	{
    padding    : 0.5rem 0;
  color: #666;
  font-weight: 500;
    position: relative;
  padding-left: 1.5rem;

}

.service-features li:before {
  content: "✓";
  position: absolute;
   left: 0;
   color: #667eea;
   font-weight: bold;
         font-size: 1.2rem;
}

.service-image
	{
 height: 100%;
	 min-height: 300px;
}

.service-img {
      width: 100%;
         height: 100%;
         object-fit: cover;
   border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);

}

.service-packages {
    background-color: #f8f9fa; 
   padding  :       4rem 2rem;
}

.packages-container {
   max-width: 1200px; 
  margin: 0 auto;
}

.packages-container h2 {

   margin-bottom: 3rem;
  text-align :center;
	 font-size  :2.5rem;
   color  :       #2c3e50;
	}

.packages-grid

{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap     :      2rem;
}



.package-card {
   background: white;
    padding: 2.5rem;
  border-radius     :     10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
    border-top:  4px solid #e0e0e0;
    position:   relative;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.package-card.featured {


  border-top-color: #667eea;
  transform: scale(1.05);}

.package-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.package-card h3 {
    font-size   :      1.5rem;
    color: #2c3e50;
	margin-bottom    :        0.5rem;
}

.package-desc {
	    color: #667eea;
  font-size: 0.9rem;
   margin-bottom: 1.5rem;
  font-weight: 600;

}

.package-features {
       list-style: none;
  padding :      0;

	}

.package-features li {
    padding: 0.6rem 0;
  color: #666;
    border-bottom: 1px solid #eee;
   position: relative;
    padding-left   : 1.5rem;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li:before {
  content: "•";
   position: absolute;
    left: 0;
  color  :      #667eea;
    font-size: 1.5rem;
    line-height: 1;
}

.why-choose-us{
    padding:   4rem 2rem;
  background-color: white;

}

.why-container {
  max-width: 1200px;
       margin: 0 auto;
}

.why-container h2 {

   font-size: 2.5rem;
   color: #2c3e50;
  margin-bottom: 3rem;
    text-align: center;


}

.why-grid {

	  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
     }

.why-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);

	   padding: 2rem;

	  border-radius: 8px;

	  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);

	  transition: all 0.3s ease;

	    border: 2px solid transparent;
}

.why-card:hover {
          border-color: #667eea; 
	  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15); 
	  transform: translateY(-5px);

}



.why-card h3 {
   font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom :  1rem;
}

.why-card p {
  color: #666;
    line-height: 1.7;
   font-size: 0.95rem;
}

.cta-final {


  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  padding: 4rem 2rem;
     text-align: center;
	}

.cta-final-wrapper {


  max-width: 800px;
  margin: 0 auto;


}

.cta-final-wrapper h2 {
     font-size: 2.2rem;
    color:       white;
  margin-bottom: 1rem;

}

.cta-final-wrapper p {
     font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
	 margin-bottom: 2rem;
	}

.thank-you-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
          padding: 4rem 2rem;
   min-height: 60vh;
  display: flex;
    align-items: center;


}

.thank-you-container {

               max-width  :  800px;
    margin: 0 auto;
    width: 100%;
	}

.thank-you-content {
       background: white;
   padding: 3rem;
          border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
   text-align: center;}

.success-icon {
   width: 100px;
    height: 100px;
     margin   : 0 auto 2rem;
  color     :        #2ecc71;
	 animation: successPop 0.6s ease-out;
}

@keyframes successPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}.thank-you-content h1 {
   font-size: 2.5rem;
    color: #2c3e50;
   margin-bottom: 1rem; 
	
}

.thank-you-message {
    font-size: 1.1rem;
  color: #666;
    margin-bottom  :3rem;
   line-height: 1.8;
}

.next-steps {
   background-color: #f8f9fa;
   padding: 2rem;
   border-radius:   8px;
        margin-bottom: 2rem;
    text-align: left;
}

.next-steps h2		{
	  font-size  :  1.5rem;
   color :     #2c3e50;
    margin-bottom: 1.5rem;
  text-align: center;

}

.steps-list {
       display: flex;
	flex-direction: column;
   gap     :        1.5rem;


}

.step {

	   display     :       flex;
  gap: 1.5rem;
    align-items: flex-start;
     }

.step-number {
   min-width: 50px;
	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-weight: bold;
   font-size   :  1.3rem;
  flex-shrink: 0;
}

.step-content h3 {
                    color: #2c3e50;
  margin-bottom: 0.5rem;
 font-size: 1rem;


}

.step-content p {
	     color: #666;
    font-size: 0.95rem;
   margin: 0;

}


.contact-reminder {

  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 2rem;
  border-radius :  8px;
    color:  white;
   text-align: center;
	


}

.contact-reminder h3 {
   color: white;
  margin-bottom: 0.5rem;
}

.contact-reminder p {
  color: rgba(255, 255, 255, 0.9);

    margin-bottom: 1.5rem;
}

.button-group {
    display: flex;
    gap:    1rem;
 justify-content: center;
  flex-wrap: wrap; 

}

.button-link {


   display: inline-block;
    padding: 0.8rem 2rem;
  background: white;
	color: #667eea;
  text-decoration: none;
  border-radius: 50px;
 font-weight: 600;
   transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);


}

.button-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
} 

.button-link-secondary {


  background: rgba(255, 255, 255, 0.2);
  color:white;
    border: 2px solid white;

}

.button-link-secondary:hover {
         background: white;
   color: #667eea;
}



.info-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.info-container {
	max-width: 1200px;
  margin: 0 auto;
}

.info-container h2 {
   font-size: 2rem;
   color  :       #2c3e50;
   margin-bottom: 3rem;
  text-align: center;
}

.info-grid{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
  background: white;
   padding: 2rem;
  border-radius  : 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition  :      all 0.3s ease;
}

.info-card:hover 
 {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
     transform: translateY(-5px);
}

.info-card h3 {
   	color: #667eea;
  font-size: 1.2rem;
   margin-bottom   :  1rem;
}

.info-card p {
  color: #666;
   line-height: 1.7;
}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .services-hero-content p {
        font-size: 1rem;
    }

    .service-block {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-block-reverse .service-image {
        order: 0;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card.featured {
        transform: scale(1);
    }

    .package-card.featured:hover {
        transform: translateY(-8px);
    }

    .thank-you-content {
        padding: 2rem;
    }

    .thank-you-content h1 {
        font-size: 1.8rem;
    }

    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .button-group {
        flex-direction: column;
    }

    .button-link {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 3rem 1rem;
    }

    .services-hero-content h1 {
        font-size: 1.5rem;
    }

    .services-container > h2 {
        font-size: 1.8rem;
    }

    .service-block {
        padding: 1rem;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .service-text h3 {
        font-size: 1.3rem;
    }

    .packages-container h2 {
        font-size: 1.8rem;
    }

    .why-container h2 {
        font-size: 1.8rem;
    }

    .thank-you-section {
        padding: 2rem 1rem;
        min-height: auto;
    }

    .thank-you-content {
        padding: 1.5rem;
    }

    .success-icon {
        width: 70px;
        height: 70px;
    }

    .next-steps {
        padding: 1rem;
    }
}.policy-section {
   background: #f8f9fa;
	min-height: 70vh;
    padding: 80px 2rem;
}

.policy-container {
         max-width: 800px;
    margin: 0 auto;
  text-align: left;
}

.policy-container h1 {
	 font-size: 2.8rem;
	 color: #2c3e50;
    margin-bottom: 2rem;
       font-weight: 700;
    line-height: 1.3;
}

.policy-container h2 {


   font-size: 1.8rem;
  color: #2c3e50;
    margin-top :     2.5rem;
    margin-bottom: 1rem;
  font-weight: 600;
     border-bottom: 3px solid #667eea;
    padding-bottom: 0.5rem;
   display: inline-block;}

.policy-container p

{
	 color: #555;
  margin-bottom: 1.5rem;
   line-height: 1.8;
   font-size: 1rem;}

.policy-container strong {
	color: #2c3e50;
  font-weight: 600;
}  

.policy-container ul
{
      list-style: none; 
    padding-left: 0; 
    margin-bottom: 1.5rem;
}

.policy-container li {
 padding: 0.7rem 0;
	color: #555;
   line-height: 1.7;
    font-size: 1rem;
	position     :     relative;
  padding-left: 1.5rem;
}

.policy-container li:before {
  content: "•";
  color: #667eea;
  font-weight    :   bold;
  position: absolute;
    left: 0;
  font-size: 1.3rem;
}@media (max-width: 768px) {
    .policy-section {
        padding: 60px 1rem;
    }

    .policy-container h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policy-container h2 {
        font-size: 1.4rem;
        margin-top: 2rem;
        margin-bottom: 0.8rem;
    }

    .policy-container p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
        line-height: 1.7;
    }

    .policy-container li {
        font-size: 0.95rem;
        padding: 0.6rem 0;
    }
}@media (max-width: 480px) {
    .policy-section {
        padding: 40px 1rem;
        min-height: auto;
    }

    .policy-container h1 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }

    .policy-container h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.7rem;
    }

    .policy-container p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }

    .policy-container li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }
}