* {
  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: #fafafa;
}

.container {
     padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}



.navbar {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
	padding: 1rem 0;
    position: sticky;
         top: 0;
    z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
	 padding: 0 20px;
    display: flex;
    justify-content: space-between;
  align-items: center;
}

.nav-logo-wrapper {


  align-items: center;
    display: flex;}

.nav-logo {
	 height: 45px;
   width: auto;
	transition: transform 0.3s ease;
}

.nav-logo:hover
	{
	  transform: scale(1.05);}

.nav-menu {
  display: flex;
	gap: 2rem;
    list-style: none;
}

.nav-link     {
   color  :    #ecf0f1;
  text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover     {
	color: #3498db;
	
}

.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 {
   display: none;
	 flex-direction: column;
   cursor: pointer;
  gap: 6px;
}

.hamburger span  {
   width: 25px;
    transition   :        all 0.3s ease;
   background-color: #ecf0f1;
   -moz-border-radius:       3px;
   height: 3px;
   -webkit-border-radius: 3px;
	border-radius: 3px;
}

.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(7px, -7px);
}

.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color :  white;
    padding: 100px 20px;
   text-align: center;
         min-height: 500px;
   display:     flex;
  align-items: center;
   justify-content: center;
}

.hero-content h1  {


  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  animation: slideInDown 0.8s ease;
	}

.hero-content p {
    font-size: 1.3rem;
   	margin-bottom :       2rem;
   	max-width: 600px;
       margin-left :    auto;
     margin-right: auto;
      animation   :      slideInUp 0.8s ease 0.2s both;

}@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.cta-button, .cta-button-secondary, .submit-button {
   display: inline-block;
    padding:        14px 32px;
    border: none;
         border-radius: 50px;
    font-size    :      1.1rem;
   font-weight    : 600;
         cursor: pointer;
    transition :   all 0.3s ease;
	text-decoration: none;
}

.cta-button {

	  background-color  : #f39c12;
      color    :       white;
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
   animation: slideInUp 0.8s ease 0.4s both;
}

.cta-button:hover {
  background-color :  #e67e22;
  box-shadow: 0 6px 20px rgba(243, 156, 18, 0.5);
  transform: translateY(-2px);
     }

.cta-button-secondary {
			 background-color: #3498db;
   color: white;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);}

.cta-button-secondary:hover {
  background-color   :   #2980b9;
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.5);
  transform: translateY(-2px);
}

.submit-button {
  background-color: #667eea;
   color: white;
     width: 100%;
     }

.submit-button:hover 
 {
  background-color: #5568d3;
  transform: translateY(-2px);
}

.services-preview {

	  padding: 80px 20px;
                    background-color: white;}

.services-preview h2 {
   text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
   color: #2c3e50; 

}  

.services-grid {
    display: grid;

	  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

	   gap   :        2rem;
}

.service-card     {
               background: white;
    border-radius:       10px;
   overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);

	  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-card img  {
  height: 250px;
   width: 100%;
  object-fit: cover;
}

.service-card h3 {
	   padding: 1.5rem 1.5rem 0.5rem;
    color: #2c3e50;
    font-size: 1.3rem;
     }

.service-card p

{
   padding: 0 1.5rem 1.5rem;
  color: #7f8c8d;
	 font-size: 0.95rem;


}

.offerings {
     padding    :    80px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);


}

.offerings h2 {

	text-align: center;
   font-size: 2.5rem;
  margin-bottom: 3rem;
    color: #2c3e50;
}

.offerings-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.offering-item {
   background: white;
  padding: 2rem;
    border-radius: 10px;
    text-align    :center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.offering-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.offering-icon {
 margin-bottom: 1rem;
  display: flex;
   justify-content: center;
   height: 60px;
}

.offering-icon img {
   width: 50px;
       height: 50px;
     stroke: #667eea;
   	fill: none;
      transition: all 0.3s ease;
}

.offering-item:hover .offering-icon img{
  stroke: #e74c3c;
}

.offering-item h3 {


   color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
     }

.offering-item p {
   color: #7f8c8d;
    font-size: 0.95rem;
}

.workshops {
    padding     :80px 20px;
   background-color: white; 

}

.workshops h2 {
  text-align: center;
   font-size: 2.5rem;
   margin-bottom: 3rem;
   color: #2c3e50;
}

.workshops-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 2rem; 
	
}

.workshop-card {
    display    :     grid;
	 grid-template-columns: 1fr 1fr;
   background: white;
		border-radius: 10px;
                    overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.workshop-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.workshop-card img {
   width   : 100%;
	 height: 100%;
  object-fit: cover;
}

.workshop-info {
  padding     :     2rem;
    display: flex;
    flex-direction: column;
          justify-content     :    center;
}

.workshop-info h3 {
        color   :     #2c3e50;
    margin-bottom: 1rem;
    font-size : 1.2rem;
} 

.workshop-info p {
		color: #7f8c8d;
    font-size: 0.95rem;
	
}

.cta {
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
                    padding  :        60px 20px;
   text-align :center;
	}

.cta-content h2 {
   font-size: 2.2rem;
  margin-bottom :    1rem;



}

.cta-content p {
	 font-size    :1.1rem;
   margin-bottom: 2rem;
   max-width: 600px;
  margin-left: auto;
  margin-right: auto;
	
}

.contact-section {
   padding: 80px 20px;
        background-color: #f5f7fa;
}

.contact-section h2 {
  text-align: center;

    font-size: 2.5rem;

   margin-bottom:3rem;

  color: #2c3e50;
}

.contact-form {
     max-width: 600px;
          margin :   0 auto;
          background: white;
   padding: 3rem;
    border-radius     :      10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
   margin-bottom  : 0.5rem;
   font-weight: 600;
    color : #2c3e50;
	
}

.form-group input,
.form-group select,
.form-group textarea		{
  width: 100%;
   padding: 12px;
	border: 2px solid #ecf0f1;
  border-radius: 5px;
   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 10px rgba(102, 126, 234, 0.2);
}

.form-group textarea {
    min-height:       120px;
        resize: vertical;
}

.footer


{
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: #ecf0f1;
    padding: 3rem 20px 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 {
    color: #3498db;
  margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-logo-wrapper {
   display: flex;
   align-items :    center;
   margin-bottom: 1rem;
}

.footer-logo  {


    height: 50px;
  width: auto;}  

.footer-section ul {
	  list-style: none;


}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
  color     :     #ecf0f1;
  text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #3498db;
  margin-left    :        5px;
}

.footer-section p    {
    margin-bottom: 0.8rem;
	 line-height: 1.8;
}

.footer-bottom {
    padding-top  :  2rem;
          text-align     :     center;
	border-top: 1px solid #34495e;
    color: #95a5a6;
}@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #2c3e50;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.2);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        display: block;
        padding: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero {
        padding: 60px 20px;
        min-height: auto;
    }

    .services-preview h2,
    .offerings h2,
    .workshops h2,
    .contact-section h2 {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .workshop-card {
        grid-template-columns: 1fr;
    }

    .workshop-card img {
        height: 200px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section a:hover {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .offerings-grid {
        grid-template-columns: 1fr;
    }

    .workshops-grid {
        grid-template-columns: 1fr;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  padding: 80px 20px;
  text-align: center;
}

.services-hero-content h1 {
    font-size: 3rem; 
	  margin-bottom: 1rem; 
	   font-weight: 700;
}

.services-hero-content p {
  font-size: 1.2rem; 
	    max-width: 700px; 
	   margin: 0 auto; 
	  line-height: 1.8;
}

.services-main {
  padding: 80px 20px;

                    background-color: #fafafa;
}

.services-list {
  display   : flex; 
    flex-direction: column; 
   gap:       4rem; 
   margin-bottom: 4rem;
}

.service-detail     {
         background: white; 
   border-radius:        10px; 
  overflow: hidden; 
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); 
      transition: all 0.3s ease; 
	 display: grid; 
   grid-template-columns: 1fr 1.2fr; 
    gap: 0;
}

.service-detail:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.service-detail-image     {
  overflow  : hidden;
   height: 100%;
  min-height: 400px;
	}


.service-detail-image img {
    width: 100%;
  height: 100%;
    object-fit: cover;
    transition     :     transform 0.3s ease;
}

.service-detail:hover .service-detail-image img
{
	  transform: scale(1.05);}

.service-detail-content {
   padding: 3rem;
  display: flex;
   flex-direction :   column;
   justify-content: center;
	
}  

.service-detail h2 {
      font-size: 2rem;
  color: #2c3e50;
    margin-bottom: 1rem;
	
}

.service-intro {
		font-size: 1.1rem;
                    color: #667eea;
  font-weight: 600;
   margin-bottom :       1.5rem;


}

.service-detail h3 
 {


	font-size: 1.2rem;
  color: #2c3e50;
  margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    border-bottom: 2px solid #667eea;
   padding-bottom: 0.5rem;

}

.service-detail p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.benefits-list {
   list-style: none;
    margin    :1rem 0 1.5rem 0;
   padding: 0;
} 

.benefits-list li {
  padding: 0.6rem 0;
  padding-left: 1.8rem;
   position: relative;
    color: #555;
        line-height: 1.6; 
	
}

.benefits-list li:before {


 left: 0;
   font-weight: bold;
  content: '✓';
   font-size: 1.2rem;
   position : absolute;
  color: #27ae60;
	}

.service-cta-button {

  display     :   inline-block;
   padding: 12px 28px;
    background-color: #667eea;
   color: white;
    text-decoration    :     none;
   border-radius: 50px;
    font-weight: 600;
  transition    :   all 0.3s ease;
   width: fit-content;
  margin-top: 1.5rem;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);

}

.service-cta-button:hover {
	background-color: #5568d3;
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
  transform: translateY(-2px);
}

.additional-offerings {
    margin-top :   4rem;
  padding-top: 4rem;
    border-top: 2px solid #ecf0f1;
}

.additional-offerings h2 {
    text-align: center;
   margin-bottom: 2rem;
   color: #2c3e50;
    font-size: 2.2rem;
}

.additional-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
}

.additional-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color  :       white;
  padding: 2rem;
  border-radius: 10px;
	 transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.additional-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.additional-card h3		{
  margin-bottom    :   1rem;
   color: white;
    font-size: 1.3rem;
}

.additional-card p {

	  color: rgba(255, 255, 255, 0.9);
   line-height: 1.7;
  margin-bottom: 1rem;
}

.card-meta {
    font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
               font-style: italic;
}

.pricing-section {
   padding: 80px 20px;
	 background: white;

}

.pricing-section h2 {
               text-align: center;
   font-size: 2.5rem;
    margin-bottom: 1rem;
    color   :   #2c3e50;
}

.pricing-intro {
  text-align: center;
	 font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 700px;
  margin: 0 auto 3rem;
}

.pricing-table {


    background: white;
                    border-radius: 10px;
		 overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
   max-width: 900px;
    margin: 0 auto; 
	
     }

.pricing-row
{
	    display: grid; 
    grid-template-columns: 1fr 1fr 1fr; 
    gap: 1px; 
    background: #ecf0f1;
     }

.pricing-row:first-child {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	}

.pricing-col {
    padding: 1.5rem;
  background: white;
  color: #2c3e50;
  font-size: 0.95rem;
}

.pricing-row:first-child .pricing-col {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  font-weight: 600;
}

.pricing-col-header {
  text-align: center;
  font-weight: 600;
}

.pricing-col-price  
  {
  text-align: center;
   font-weight: 600;
   color: #667eea;
}

.contact-cta-services {
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
  color: white;
          padding: 60px 20px;
	text-align: center;
}

.contact-cta-services h2 {
   margin-bottom: 1rem;
   font-size: 2.2rem;
}

.contact-cta-services p     {
  font-size: 1.1rem; 
	    max-width: 600px; 
	   margin: 0 auto 2rem; 
	
}



.thankyou-container {
 min-height: 100vh;
    padding: 60px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  display    :       flex;
  flex-direction: column;
    align-items: center;
	 justify-content: center;
}

.thankyou-content {

			 background: white;

		padding: 4rem 3rem;

		 border-radius: 15px;

	  max-width: 700px;

	    width: 100%;

	  text-align  :       center;

	  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);

}


.success-icon {
    margin-bottom: 2rem;
	display  :    flex;
	 justify-content: center;
}

.success-icon img {
       width: 80px;
   height   :   80px;
    stroke: #27ae60;
   fill: none;
  filter: drop-shadow(0 0 10px rgba(39, 174, 96, 0.3));

}

.thankyou-content h1 {
  font-size: 2.5rem;
    color: #27ae60;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.thankyou-content h2 {
  font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
   font-weight: 600;
}

.thankyou-message {
      font-size: 1.1rem;
    color: #555;
       line-height:  1.8;
  margin-bottom: 2rem;


}

.thankyou-details {
   background    :        #f5f7fa;
    padding: 2rem;
    border-radius: 10px;
   margin-bottom: 2rem; 
	
}

.thankyou-details p {
   color: #555;
     margin-bottom: 1rem;
      line-height: 1.8;
}

.thankyou-details p:last-child {
  margin-bottom: 0;
}

.next-steps {

   margin-bottom: 2rem;
    text-align: left;
}

.next-steps h3 {
		 color: #2c3e50;
  font-size: 1.3rem;
  margin-bottom   :      1.5rem;}

.steps-list {
  list-style: decimal;
  padding-left: 2rem;
  color: #555;
}

.steps-list li	{
    margin-bottom: 1rem;
   line-height: 1.8;
}

.steps-list strong {
     color:        #667eea;
}

.thankyou-cta {
    display   :      flex;
  gap: 1rem;
   flex-direction: column;
    margin: 2rem 0;


}

.cta-button-large {

    display: inline-block;
        padding   :      14px 32px;
          background-color: #667eea;
   color : white;
	text-decoration: none;
  border-radius    :        50px;
  font-weight: 600;
    transition    :   all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
	}

.cta-button-large:hover {
	background-color: #5568d3;
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
  transform: translateY(-2px);
}

.cta-button-secondary-large  
  {
    display: inline-block;
  padding: 14px 32px;
   background-color: #f39c12;
  color:     white;
    text-decoration: none;
    border-radius: 50px;
 font-weight    :      600;
    transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.cta-button-secondary-large:hover {
  background-color: #e67e22;
  box-shadow: 0 6px 20px rgba(243, 156, 18, 0.5);
  transform: translateY(-2px);
}

.contact-info-box {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding    :       2rem;
  border-radius: 10px;
	margin-top: 2rem;
}

.contact-info-box h3 {
  font-size: 1.2rem;
    margin-bottom: 1rem;
	color: white;
}

.contact-info-box p

{
    margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.95);
}

.contact-phone {
				 font-size: 1.3rem;
    font-weight: 700;
  margin: 1rem 0;
}

.contact-hours {
   font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.expected-benefits {
    margin-top: 4rem;
   padding-top: 4rem;
	border-top: 2px solid #ecf0f1;
}

.expected-benefits h3   {
   color: #2c3e50;
	    text-align: center;
	                    margin-bottom: 2rem;
	    font-size: 1.8rem;
}

.benefits-grid {
               display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
	 margin-top: 2rem;
	}

.benefit-card {
  background     :  white;
   padding: 1.5rem;
    border-radius: 10px;
    text-align    :center;
   border: 2px solid #f5f7fa;
  transition: all 0.3s ease;
}

.benefit-card:hover  {
     border-color   :      #667eea;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.1);
  transform: translateY(-3px);
	}

.benefit-icon {
  margin-bottom: 1rem;
   display: flex;
  justify-content   :        center;
   height: 50px;
}

.benefit-icon img {
	 width    :   40px;
       height: 40px;
	 stroke: #667eea;
    fill: none;
}

.benefit-card h4 {
   font-size: 1rem;
      color: #2c3e50;
     margin-bottom: 0.8rem;
}

.benefit-card p 
 {
  font-size: 0.9rem;
  color  :    #7f8c8d;
  line-height  :  1.6;
}@media (max-width: 1024px) {
    .service-detail {
        grid-template-columns: 1fr;
    }

    .service-detail-image {
        min-height: 300px;
    }

    .service-detail-content {
        padding: 2.5rem;
    }

    .pricing-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .services-hero {
        padding: 50px 20px;
    }

    .service-detail h2 {
        font-size: 1.5rem;
    }

    .service-detail-content {
        padding: 2rem;
    }

    .thankyou-content {
        padding: 2rem 1.5rem;
    }

    .thankyou-content h1 {
        font-size: 2rem;
    }

    .thankyou-content h2 {
        font-size: 1.2rem;
    }

    .thankyou-cta {
        flex-direction: column;
    }

    .success-icon img {
        width: 60px;
        height: 60px;
    }

    .next-steps {
        text-align: center;
    }

    .steps-list {
        padding-left: 1.5rem;
        text-align: left;
        display: inline-block;
    }

    .additional-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 1.5rem;
    }

    .services-hero-content p {
        font-size: 1rem;
    }

    .service-detail {
        margin-bottom: 2rem;
    }

    .service-detail-image {
        min-height: 200px;
    }

    .service-detail h2 {
        font-size: 1.2rem;
    }

    .service-detail h3 {
        font-size: 1rem;
    }

    .benefits-list li {
        font-size: 0.9rem;
    }

    .thankyou-content {
        padding: 1.5rem;
    }

    .pricing-row {
        grid-template-columns: 1fr;
    }

    .pricing-col {
        padding: 1rem;
        font-size: 0.85rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}.policySection {
    padding: 80px 2rem;
   background: #f8f9fa;
  min-height: 60vh;
	
}

.policyContainer {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.policyContainer h2	{
   font-size: 2.5rem;
       color     :        #2c3e50;
             margin-bottom: 1.5rem;
     font-weight    :     700;
       border-bottom: 3px solid #667eea;
      padding-bottom: 1rem;
}

.policyContainer h3 {
	 font-size: 1.3rem;
  color: #2c3e50;
   margin-top: 2rem;
   margin-bottom: 1rem;
    font-weight: 600;
}

.policyContainer p {
  color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1rem;
}

.policyContainer strong {
    color: #2c3e50;
  font-weight: 600;
}

.policyContainer ul {
 margin: 1.5rem 0;
	 padding-left: 2rem;
   color: #555;
}

.policyContainer li


{
  margin-bottom: 1rem;
  line-height: 1.8;
}@media (max-width: 1024px) {
    .policySection {
        padding: 70px 1.5rem;
    }

    .policyContainer h2 {
        font-size: 2.2rem;
    }

    .policyContainer h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer {
        max-width: 100%;
    }

    .policyContainer h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .policyContainer h3 {
        font-size: 1.1rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 50px 1rem;
    }

    .policyContainer h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        padding-bottom: 0.8rem;
    }

    .policyContainer h3 {
        font-size: 1rem;
        margin-top: 1.3rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .policyContainer ul {
        padding-left: 1.5rem;
    }

    .policyContainer li {
        margin-bottom: 0.8rem;
    }
}