* {


   margin  :  0;
  padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior   :       smooth;
}

body


{
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
    color: #2c3e50;
  background-color: #ffffff;
}

.navbar {

     background-color: #fff;
  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 img {
		 height: 40px;
    width: auto;
     }

.burger-toggle {
    display: none;
  background   :  none;
  border: none;
    cursor     : pointer;
   padding:     0.5rem;
}

.burger-toggle img     {
    width: 24px;
  height: 24px;
}

.navbar-menu {

		display: flex;
    list-style: none;
  gap :2.5rem;
  align-items: center;}

.navbar-menu a  
  {
         font-size: 1rem;

   font-weight: 500;

   color: #2c3e50;

 text-decoration: none;

   transition: color 0.3s ease;
}

.navbar-menu a:hover {
	 color: #3498db;
}

.cta-link {
	background-color: #3498db;
    color: white !important;
  padding: 0.75rem 1.5rem;
    border-radius: 8px;
   transition: background-color 0.3s ease;


}

.cta-link:hover {
    background-color :  #2980b9;
    color  :    white;
}@media (max-width: 768px) {
    .burger-toggle {
        display: block;
    }

    .navbar-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        gap: 1rem;
        padding: 2rem;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .navbar-menu.active {
        max-height: 400px;
    }

    .navbar-menu a {
        display: block;
    }
}.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: 2.8rem;
    font-weight: 700;
   line-height: 1.2;
   margin-bottom: 1.5rem;
    color   :   #1a252f;
}

.hero-subtitle {
   font-size: 1.1rem;
	color   :       #555;
   margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-btn	{
        display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color  :       white;
    padding :   1rem 2.5rem;
  border-radius: 50px;
    text-decoration: none;
  font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}



.hero-image img {


    width  :    100%;
    height: auto;
         border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
	} @media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}.about-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 4rem 2rem;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
     }

.about-section h2 {
    text-align: center;
  font-size: 2.5rem;
    margin-bottom: 3rem;
  color: #1a252f;
}

.about-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-card {
   background: white;
  padding: 2rem;
    border-radius: 12px;
   text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.card-icon {
    margin-bottom: 1.5rem;
}

.card-icon img {

		width: 48px;
    height: 48px;
  display: inline-block;
       stroke: #667eea;
}

.about-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
       color: #2c3e50;
}

.about-card p
	{
    color: #666;
  line-height: 1.7;
}

.services-preview  
  {
   max-width: 1200px;
    margin: 4rem auto;
   padding: 0 2rem;
}



.services-preview h2 {
   font-size: 2.5rem; 
  text-align: center; 
    margin-bottom: 3rem; 
  color: #1a252f;
}

.services-grid {
       display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
}

.service-item {


	background: white;
	 border-radius:12px;
    overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;


}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15); 
	
}

.service-item img
	{
  width: 100%;
   height    :    200px;
  object-fit: cover;
}

.service-item h3 {
    padding   :    1.5rem 1.5rem 0.5rem;
  font-size: 1.4rem;
   color: #2c3e50;
}

.service-item p {
   padding: 0 1.5rem;
	color: #666;
   font-size: 0.95rem;
  line-height: 1.6;
}

.service-tag {
  display: inline-block;
  margin: 1rem 1.5rem 1.5rem;
			background-color: #e8f4f8;
  color    :#3498db;
  padding: 0.5rem 1rem;
   border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.benefits-section {
  background: linear-gradient(to right, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4rem 2rem;
}

.benefits-container   {
  max-width: 1200px;
         margin:   0 auto;
}

.benefits-section h2 {
  font-size    :       2.5rem;
  text-align: center;
   margin-bottom:   3rem;
} 

.benefits-list {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-item {
  background: rgba(255,255,255,0.1); 
  padding: 2rem; 
  border-radius  :     12px; 
  backdrop-filter: blur(10px); 
  border: 1px solid rgba(255,255,255,0.2);
}

.benefit-number {
    font-size: 3rem;
   font-weight   :   700;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.benefit-item h3{
    font-size: 1.3rem;
  margin-bottom :    1rem;
}

.benefit-item p {

                    line-height: 1.8;
         opacity     :    0.95;

}

.cta-booking {
	background     :       #f8f9fa;
    padding: 3rem 2rem;
    text-align: center;
    margin: 3rem 0;
}

.cta-content {
  max-width: 800px;
          margin: 0 auto;
}

.cta-booking h2 {
  font-size: 2.2rem;
   margin-bottom: 1rem;
  color: #1a252f;
}

.cta-booking p {
               font-size: 1.1rem;
   color: #666;
   margin-bottom: 2rem;
    line-height  :1.8;
}

.cta-btn {
   display: inline-block;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
  padding: 1rem 2.5rem;
    border-radius: 50px;
                    text-decoration: none;
  font-weight   :  600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(245, 87, 108, 0.3);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(245, 87, 108, 0.5);
	
}

.contact-section {
   max-width: 800px;
  margin: 4rem auto;
   padding: 3rem 2rem;
    background: white;
   border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-section h2  {
  text-align: center;
     font-size: 2rem;
     margin-bottom: 2rem;
   color: #1a252f;
}

.contact-form {
  display: flex;
  flex-direction: column;
	gap: 1.5rem;
}

.form-group {
   display: flex;
	 flex-direction:column;
}

.form-group label {


    margin-bottom: 0.5rem;
  font-weight: 600;
   color: #2c3e50;
}  

.form-group input,
.form-group textarea,
.form-group select {
   font-family: inherit;
   font-size: 1rem;
	 transition: border-color 0.3s ease;
       border-radius: 8px;
  padding: 0.75rem;
  border: 2px solid #e0e0e0;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
	border-color: #667eea;
}

.form-group textarea {
    resize: vertical;
               min-height  :   120px;
}

.submit-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   padding: 1rem;
    border: none;
   border-radius: 8px;
  font-size    :    1.1rem;
    font-weight: 600;
    cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.submit-btn:hover {
  transform: translateY(-2px); 
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.footer {
  background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
   color: white;
  padding: 3rem 2rem 1rem;
   margin-top: 4rem;
}

.footer-container   {
    max-width: 1200px;
  margin   :       0 auto;
    display: grid;
  grid-template-columns: auto 1fr;
   gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo-section {
	display: flex;
    align-items: flex-start;
}

.footer-logo {
  height: 50px;
    width     :   auto;
  filter: brightness(0) invert(1);
}

.footer-content {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap :    2rem;
}

.footer-column h4 {
   font-size: 1.1rem;
   margin-bottom: 1rem;
    font-weight: 600;
}

.footer-column ul	{
  list-style: none;
}

.footer-column ul li {
  margin-bottom : 0.7rem;
}

.footer-column a {
  color: #bdc3c7;
                    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #ecf0f1;
}

.footer-phone,
.footer-address {
  color: #bdc3c7;
  line-height   : 1.8;


}

.footer-phone a {
   color: #bdc3c7;
}

.footer-bottom   {
   text-align: center;
   padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
                    color  :       #95a5a6;
  font-size    :      0.9rem;
}@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .services-grid,
    .about-grid,
    .benefits-list {
        grid-template-columns: 1fr;
    }

    .cta-booking h2 {
        font-size: 1.8rem;
    }

    .contact-section {
        padding: 2rem 1rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                    color: white;
    padding :  3rem 2rem;
 text-align :    center;
   min-height :     200px;
   display: flex;
    align-items: center;
   justify-content: center;
}

.services-hero-content h1 {
   font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.services-hero-content p {
	    font-size: 1.2rem; 
	    opacity  :     0.95;
	}

.services-detailed {
   max-width: 1200px;
	  margin: 0 auto;
	  padding: 4rem 2rem;
}

.service-detailed-item {
   display     : grid;
    grid-template-columns: 1fr 1fr;
     gap: 3rem;
  align-items: center;
   margin-bottom: 5rem;
}

.service-detailed-item.alternate


{
      grid-template-columns: 1fr 1fr;


}

.service-detailed-item.alternate .service-detail-image     {
    order: 2;
}

.service-detailed-item.alternate .service-detail-content {
	 order  :1;
}

.service-detail-image img {
   width: 100%;
   height: auto;
   border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.service-detail-content h2 {
   font-size: 2.2rem;
    color: #1a252f;
  margin-bottom :       1.5rem;
}

.service-detail-content > p {
   font-size: 1.1rem;
   color: #555;
   line-height: 1.8;
          margin-bottom :        2rem;
}

.service-features    {
    background: #f8f9fa;
   padding: 1.5rem;
  border-radius: 8px;
   margin-bottom: 1.5rem;
}

.service-features h3	{
  font-weight: 600;
	    color    :        #2c3e50;
	    font-size: 1.1rem;
	   margin-bottom: 1rem;
} 

.service-features ul 
 {
  list-style: none;
}

.service-features li  {
                    padding: 0.5rem 0;
    padding-left: 1.5rem;
   position: relative;
	color   :       #555;
    line-height: 1.6;
}

.service-features li:before	{
      font-weight   : bold;
  position: absolute;
	left: 0;
  content: "✓";
          color: #667eea;}

.service-duration {
  display: flex;
   gap: 1rem;
  margin-bottom: 1.5rem;
   font-size: 1rem;
}

.duration-label {
       font-weight     :     600;

	 color    : #2c3e50;}

.duration-value {
  color: #667eea;
    font-weight   :      600;}


.service-cta {
	display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color    :   white;
  padding:       1rem 2rem;
  border-radius   :    8px;
    text-decoration: none;
      font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.service-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

@media (max-width: 768px) {
    .service-detailed-item {
        grid-template-columns: 1fr;
        margin-bottom: 3rem;
    }

    .service-detailed-item.alternate .service-detail-image,
    .service-detailed-item.alternate .service-detail-content {
        order: unset;
    }

    .service-detail-content h2 {
        font-size: 1.8rem;
    }

    .services-hero-content h1 {
        font-size: 2rem;
    }
}.pricing-section {
  background: linear-gradient(to bottom, #f5f7fa, #e8ecf1);
   padding     :      4rem 2rem;
}



.pricing-section h2 {
   text-align: center;
   font-size: 2.5rem;
                    margin-bottom: 3rem;
   color: #1a252f;
}

.pricing-container {
    max-width: 1000px;
       margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.pricing-card {
    background: white;
    padding: 2rem;
        border-radius :    12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
   position: relative;

}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.pricing-card.featured {

	  border: 2px solid #667eea;

	  transform: scale(1.05);



}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);


}

.featured-badge		{
  position: absolute;
  top: -12px;
   left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
   font-size: 0.85rem;
   font-weight: 600;
}

.pricing-card h3 {
   font-size: 1.4rem;
  color: #2c3e50;
   margin-bottom: 1rem;
}

.pricing-value {
   font-size: 2.5rem;
	 font-weight: 700;
  color   :#667eea;
	margin-bottom: 0.5rem;
}

.pricing-period  
  {
   color  :#999;
   font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.pricing-list {
  list-style:      none;
   text-align: left;
  margin-bottom: 2rem;
}

.pricing-list li{
         padding: 0.7rem 0;
    color: #555;
   border-bottom: 1px solid #eee;
    position     :     relative;
        padding-left: 1.5rem;
}

.pricing-list li:before {

	  content: "✓";
   position: absolute;
      left  :      0;
   color: #2ecc71;
   font-weight: bold;
     }

.pricing-list li:last-child {
    border-bottom: none;
}

.faq-section {
     max-width: 900px;
   margin: 4rem auto;
    padding: 0 2rem;
	}

.faq-section h2 {
    font-size    :       2.5rem;
  text-align: center;
    margin-bottom: 3rem;
  color: #1a252f;
}

.faq-container {
    display: flex;
   flex-direction: column;
   gap: 1rem;
}

.faq-item {
         background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
  overflow: hidden;
}

.faq-question {
   padding   :  1.5rem;
    background: #f8f9fa;
  cursor: pointer;
  display   :   flex;
    justify-content: space-between;
   align-items: center;
    user-select: none;
  transition: background 0.3s ease;
}

.faq-question:hover 
 {
   background: #f0f2f5;


	}

.faq-question h3 {
	font-size: 1.1rem;
    color :        #2c3e50;
  margin: 0;
   font-weight: 600;
}

.faq-icon {
       width: 24px;
  height: 24px;
  stroke: #667eea;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {

    transition     :  all 0.3s ease;
   overflow: hidden;
   max-height: 0;
   padding: 0 1.5rem;
     }

.faq-item.active .faq-answer {
    padding: 1.5rem;
  max-height: 500px;
}

.faq-answer p    {

    color: #555;
   line-height: 1.8;
   margin: 0;
	}

.cta-final {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
	padding: 3rem 2rem;
    text-align: center;
    margin: 4rem 0;
}

.cta-final-content {
    max-width: 800px;
         margin: 0 auto;
}

.cta-final h2 {
	font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-final p {
  font-size:     1.1rem;
   opacity: 0.95;
   margin-bottom: 2rem;
}

.cta-final-btn {
		 display: inline-block;

  background: rgba(255,255,255,0.2);

	 color: white;

      padding: 1rem 2.5rem;

                    border-radius:50px;

    text-decoration: none;

   font-weight: 600;

  transition: all 0.3s ease;

  border: 2px solid white;
}

.cta-final-btn:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-3px);
}

.thankyou-section {
  max-width: 800px;
   margin: 4rem auto;
    padding: 3rem 2rem;
    text-align  : center;
}

.thankyou-container {
	   background   :white;
	 padding:  3rem;
    border-radius:12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);}

.thankyou-icon {
      margin-bottom: 2rem; 
	
	}

.thankyou-icon img {
    width     :      80px;
  height: 80px;
    display     :inline-block;
  stroke: #2ecc71;
   animation     :        scaleIn 0.6s ease;
     }@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-section h1    {
  font-size: 2.5rem;
    color: #1a252f;
   margin-bottom  :        1rem;
}

.thankyou-subtitle {

   font-size: 1.2rem;
	color: #666;
   margin-bottom: 2rem;
}

.thankyou-content	{
	text-align: left;
  margin: 3rem 0;
  background: #f8f9fa;
  padding: 2rem;
   border-radius: 8px;
}

.thankyou-content h2 {
      font-size: 1.8rem;
  color: #2c3e50;
   margin-bottom: 2rem;
	text-align: center; 
	
}

.timeline {
   display: flex;
   flex-direction: column;
    gap: 2rem;
}

.timeline-item {
       display: grid;
   grid-template-columns: 80px 1fr;
                    gap     :   1.5rem;
  align-items   :      flex-start;

}

.timeline-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.8rem;
               font-weight     :700;
}


.timeline-text h3 {
	 font-size    : 1.2rem;
   color: #2c3e50;
  margin-bottom :        0.5rem;}

.timeline-text p   {


    color: #666;
   line-height: 1.6;


}

.thankyou-info {
  background    :     white;
   padding: 2rem;
       border-radius: 8px;
    border-left: 4px solid #667eea;
  margin: 2rem 0;
}

.thankyou-info h3{
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.thankyou-info p {
	  color: #666;
   margin-bottom: 1rem;
}

.phone-link {
   display: inline-block; 
    font-size: 1.3rem; 
  font-weight     :700; 
   color :   #667eea; 
    text-decoration: none; 
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #764ba2;

}

.thankyou-actions {
	display: flex;
    gap: 1rem;
   justify-content:    center;
    margin-top: 2rem;
}

.btn-primary,
.btn-secondary {

	   padding: 1rem 2rem;
  -webkit-transition    :  all 0.3s ease;
          -webkit-border-radius: 8px;
    border-radius: 8px;
    text-decoration: none;
          font-weight     :        600;
   transition :       all 0.3s ease;
  display: inline-block; 
	
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.btn-secondary {

   background: #f0f2f5;
   color  :  #2c3e50;
    border: 2px solid #e0e0e0;




}

.btn-secondary:hover  
  {
		 background: #e8ecf1;
}

.next-steps-section {

		padding   :      4rem 2rem;
   background: #f5f7fa;
}

.next-steps-section h2
{
  margin-bottom    :     3rem;
   font-size: 2.2rem;
  color: #1a252f;
    text-align :     center;
}

.resources-grid {
    max-width: 1000px;
   margin: 0 auto;
   display   :     grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
     }

.resource-card {
      background: white;
    padding: 2rem;
  border-radius   :    12px;
   text-align:center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
                    transition: transform 0.3s ease, box-shadow 0.3s ease;
     }

.resource-card:hover {
  transform: translateY(-5px);

  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
	}

.resource-icon {
	 margin-bottom: 1.5rem;
}

.resource-icon img {
   width: 48px;

  height: 48px;

  display :   inline-block;

    stroke: #667eea;
}

.resource-card h3 {
  font-size: 1.3rem;
    color: #2c3e50;
	 margin-bottom: 1rem;
	
}

.resource-card p	{

		 color: #666;
   line-height: 1.6;

}@media (max-width: 600px) {
    .thankyou-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .timeline-item {
        grid-template-columns: 60px 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

    .faq-section h2 {
        font-size: 2rem;
    }

    .thankyou-section h1 {
        font-size: 2rem;
    }
}.policySection {
   padding    :      80px 2rem;
  background: linear-gradient(to bottom, #f8f9fa, #ecf0f1);
  min-height: calc(100vh - 200px);

}

.policyContainer {
               max-width: 900px;

 margin: 0 auto;

  text-align: left;

  background :     white;

   padding   :        3rem;

                    border-radius: 12px;

  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.policyContainer h1 {
  font-size     :      2.8rem;

    color: #1a252f;

  margin-bottom: 2rem;

               font-weight: 700;

    padding-bottom: 1.5rem;

  border-bottom    :    3px solid #667eea;
}

.policyContainer h2 {

               font-size: 1.8rem;
	 color  :  #2c3e50;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: #667eea;}

.policyContainer p {
    color   :       #555;
    margin-bottom: 1.5rem;
          line-height: 1.8;
					font-size: 1.05rem;
  text-align: justify;
}

.policyContainer p:last-child {
   margin-bottom: 0;
}

.policyContainer h2:first-of-type {

  margin-top: 0;
     }

.policyContainer h2 + p {
  margin-top: 0.5rem;
}

.policyContainer ul,
.policyContainer ol{
  margin-bottom: 1.5rem;
   margin-left: 2rem;
	 line-height: 1.8;
}

.policyContainer li {
  margin-bottom: 0.8rem;
     color: #555;
     font-size: 1.05rem;
}

.policyContainer a {
    color: #667eea;
    text-decoration: none;
   transition: color 0.3s ease;
    font-weight   :        500;
}  

.policyContainer a:hover     {
    color: #764ba2;

	   text-decoration: underline;
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer {
        padding: 2rem 1.5rem;
        border-radius: 8px;
    }

    .policyContainer h1 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .policyContainer p {
        font-size: 1rem;
        line-height: 1.7;
        text-align: left;
    }
}

@media (max-width: 600px) {
    .policySection {
        padding: 40px 0.5rem;
    }

    .policyContainer {
        padding: 1.5rem 1rem;
    }

    .policyContainer h1 {
        font-size: 1.8rem;
        padding-bottom: 1rem;
    }

    .policyContainer h2 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
    }

    .policyContainer ul,
    .policyContainer ol {
        margin-left: 1.5rem;
    }
}

@media print {
    .navbar,
    .footer {
        display: none;
    }

    .policySection {
        padding: 0;
        background: white;
    }

    .policyContainer {
        box-shadow: none;
        padding: 0;
    }

    .policyContainer h1 {
        border-bottom: 2px solid #333;
        page-break-after: avoid;
    }

    .policyContainer h2 {
        page-break-after: avoid;
    }
}