*	{
   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;
}

:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #f39c12;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --border-radius: 8px;
    --transition-speed: 0.3s;
}

.navbar {
               background-color: #fff;

	  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);

	        position: sticky;

	    top: 0;

	  z-index: 1000;
}

.nav-container {
	max-width: 1200px;
    margin     :       0 auto;
    padding  :1rem 2rem;
  display: flex;
   justify-content: space-between;
    align-items: center;
}

.nav-logo {
  display: flex;
   align-items: center;
}

.logo-img     {
	    object-fit: contain;
        height: 45px;
     }

.nav-menu {

    display: flex;
          gap    :   2rem;
 align-items: center;
	}

.nav-link {
  text-decoration     :    none;
  color: var(--dark-color);
	font-weight: 500;
  transition: color var(--transition-speed) ease;
  padding: 0.5rem 0;
   border-bottom  :       2px solid transparent;
}

.nav-link:hover		{
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.hamburger {
  display: none;
        flex-direction: column;
   cursor: pointer;
   gap: 5px;
}



.hamburger span	{
  width: 25px;
  height: 3px;
  background-color: var(--dark-color);
    border-radius: 2px;
  transition: all var(--transition-speed) ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-menu {
  display: none;
    background-color: #f8f9fa;
  padding: 1rem 2rem;
    gap: 1rem;
    flex-direction: column;
}

.mobile-menu.active {
      display: flex;

}

.mobile-link {
                    text-decoration: none;
  color: var(--dark-color);
  font-weight: 500;
	padding: 0.75rem 0;
  transition: color var(--transition-speed) ease;
}

.mobile-link:hover {
  color: var(--primary-color);
}

.hero-section {
  max-width  :        1200px;
                    margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
    grid-template-columns  :       1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
	    font-size: 3rem;
  margin-bottom: 1.5rem;
   line-height: 1.2;
  color: var(--dark-color);


}

.hero-content p {
  font-size: 1.1rem;
	margin-bottom: 2rem;
         color: #555;
}

.cta-button {
  display: inline-block;
    padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: #fff;
  text-decoration  : none;
  border-radius: var(--border-radius);
   font-weight: 600;
  transition: all var(--transition-speed) ease;
  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 img {
  width: 100%;
   height: auto;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.services-overview {
   background-color: #f8f9fa;
  padding: 4rem 2rem;
    margin: 2rem 0;

}

.services-container {
   max-width: 1200px;
   margin: 0 auto;
}

.services-overview h2 {
   font-size: 2.5rem;
    margin-bottom: 3rem;
   text-align: center;
  color: var(--dark-color);


}

.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.service-card {

  background-color: #fff;
  border-radius: var(--border-radius);
   overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-speed) ease;


}

.service-card:hover     {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-card img {
	    width: 100%;
  height: 200px;
          object-fit: cover;

}

.service-card h3 {
      padding: 1.5rem 1.5rem 0.5rem;

   font-size    :      1.5rem;

  color: var(--primary-color);
}

.service-card p {

		padding: 0 1.5rem 1.5rem;
  color: #666;
    line-height: 1.7;
	}

.expertise-section {
	 max-width: 1200px;
	margin: 4rem auto;
    padding: 0 2rem;
}

.expertise-section h2 {
   font-size: 2.5rem;
    margin-bottom: 3rem;
   text-align: center;
  color: var(--dark-color);
}

.expertise-grid 
 {
     display   :    grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.expertise-item {
   padding: 2rem;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border-left: 4px solid var(--primary-color);
  border-radius: var(--border-radius);
  transition: all var(--transition-speed) ease;
}

.expertise-item:hover {
     border-left-color: var(--accent-color);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2); 
	
     }

.expertise-item h4 {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom     :      0.75rem;
}

.expertise-item p {
   color     :      #555;
   line-height: 1.6;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 4rem 2rem;
  margin: 4rem 0;
                    color: #fff;
}

.cta-box {
	max-width: 1200px;
		margin: 0 auto;
   text-align: center;

}

.cta-box h2 {
   font-size: 2rem;
  margin-bottom :    1rem;
}

.cta-box p {

   font-size: 1.1rem;
    margin-bottom: 2rem;
   opacity: 0.95;

}

.cta-primary-button {
   display    :     inline-block;
   padding: 1rem 2.5rem;
  background-color: var(--accent-color);
	color: #fff;
    text-decoration: none;
  border-radius: var(--border-radius);
    font-weight :600;
  transition: all var(--transition-speed) ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}



.cta-primary-button:hover
	{
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);


}

.offerings-section {
    max-width: 1200px;
	 margin: 4rem auto;
   padding :        0 2rem;


}

.offerings-section h2 {
   font-size: 2.5rem;

		margin-bottom: 3rem;

	   text-align: center;

	  color: var(--dark-color);
}

.offerings-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem; 
	
}

.offering-box {
   background-color: #fff;
    border     :  2px solid #e0e0e0;
  padding: 2rem;
  border-radius: var(--border-radius);
  transition: all var(--transition-speed) ease;
    position: relative;
}

.offering-box:hover {
  border-color: var(--primary-color);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
  transform: translateY(-5px);
}

.offering-box h3 {
	  font-size: 1.5rem;
  color: var(--primary-color);
    margin-bottom: 1rem;

}

.offering-box p {
	color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6; 

}

.offering-badge {


   display: inline-block;
  background-color: var(--accent-color);
  color: #fff;
    padding: 0.5rem 1rem;
   border-radius: 20px;
  font-size: 0.85rem;
    font-weight: 600;
	}

.business-insights {
					background-color: #f8f9fa;
         padding: 4rem 2rem;
  margin  :2rem 0;
}

.insights-container {
    max-width: 1200px;
    margin   :0 auto;
}

.business-insights h2 {

	  font-size: 2.5rem;
   margin-bottom: 3rem;
        text-align   :  center;
  color: var(--dark-color);

     }

.insights-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;


}

.insight-card {
	 background-color: #fff;
   padding    :  2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-speed) ease;
}

.insight-card:hover  
  {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}


.insight-card h3 {
       font-size: 1.25rem;
  color: var(--primary-color);
	margin-bottom: 1rem;


}

.insight-card p {
  color: #555;
  line-height: 1.7;
}

.contact-section {

       max-width  :       1200px;
        margin: 4rem auto;
   padding: 0 2rem;
}

.contact-container {
    background-color: #f8f9fa;
  padding: 3rem;
  border-radius: var(--border-radius); 
	
}

.contact-container h2 {
    font-size: 2.5rem;
  margin-bottom: 1rem;
          text-align: center;
  color: var(--dark-color);
}

.contact-intro {
   text-align: center;
  color     :    #666;
	 margin-bottom     :   2rem;
   font-size:      1.1rem;
}

.contact-form {
  display: grid;
    gap: 1.5rem;
}

.form-group {
   display: flex;
       flex-direction :      column;
}

.form-group label {
     font-weight: 600;
	   margin-bottom: 0.5rem;
	  color: var(--dark-color);


}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: var(--border-radius);
    font-family: inherit;
  font-size: 1rem;
  transition: all var(--transition-speed) ease;
   background-color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
                    color: #999;


}

.submit-button {
    padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: #fff;
   border: none;
  border-radius: var(--border-radius);
   font-weight: 600;
    font-size: 1rem;
	cursor: pointer;
  transition: all var(--transition-speed) ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
	 align-self: flex-start;
    margin-top: 1rem;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.submit-button:active {
  transform: translateY(0);
}

.footer
	{
	  background-color: var(--dark-color);
    color    :      #ecf0f1;
	padding    : 3rem 2rem 1rem;
    margin-top     :  4rem;
     }

.footer-container {
  max-width: 1200px;
    margin: 0 auto;
}

.footer-logo-section {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-logo {


   height :      50px;
	 object-fit: contain;

}

.footer-grid {

	    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
       margin-bottom     :      2rem;}

.footer-column h4 {
  font-size: 1.1rem;
    margin-bottom: 1rem;
  color: var(--accent-color);


}  

.footer-column ul {
	  list-style:      none;
}

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column a {
          color: #ecf0f1;
    text-decoration  :      none;
  transition: color var(--transition-speed) ease;
}

.footer-column a:hover   {
  color: var(--accent-color);
}

.footer-column p  
  {
   color: #bdc3c7; 
  line-height: 1.8;
}



.footer-bottom {
   padding-top: 2rem;
    border-top: 1px solid #34495e;
  text-align: center;
   color :      #95a5a6;
}@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .services-overview,
    .business-insights {
        padding: 2rem 1rem;
    }

    .services-overview h2,
    .business-insights h2,
    .expertise-section h2,
    .contact-container h2,
    .offerings-section h2 {
        font-size: 2rem;
    }

    .cta-section {
        padding: 2rem 1rem;
    }

    .cta-box h2 {
        font-size: 1.5rem;
    }

    .contact-container {
        padding: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .services-grid,
    .expertise-grid,
    .offerings-grid,
    .insights-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .cta-button,
    .cta-primary-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .submit-button {
        width: 100%;
        align-self: stretch;
    }
}.services-hero 
 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
   padding: 4rem 2rem;
	text-align:      center;
    margin-bottom: 3rem;
}

.services-hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.services-hero-content p   {
  font-size: 1.2rem;
  opacity: 0.95;
}

.services-detailed {
    max-width: 1200px;
  margin: 0 auto;
  padding  :    0 2rem;
	
}

.services-detailed-container {


   display: flex;
  flex-direction    :     column;
    gap: 4rem; 
	
	}

.service-detail-item {
   display   :        grid;
   grid-template-columns: 1fr 1fr;
    gap: 3rem;
  align-items: center;
     }

.service-detail-item.alternate {
	 grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.service-detail-item.alternate > * {
    direction :      ltr;
}

.service-detail-image	{
    overflow: hidden;
  border-radius: var(--border-radius);
}

.service-detail-image img {

   width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;


}

.service-detail-image:hover img {
  transform: scale(1.05);
}

.service-detail-content h2 {
   font-size: 2rem;
  color: var(--primary-color);
	margin-bottom: 1rem;
}

.service-detail-content p {
       color: #555;
      margin-bottom: 1.5rem;
     line-height :     1.7;

}

.service-detail-content h3 {
  font-size: 1.2rem;
  color: var(--dark-color);
    margin    :    1.5rem 0 1rem;
}

.service-features {
   	 margin-bottom: 1.5rem;

  list-style: none;
     }

.service-features li {
       padding: 0.75rem 0;
   padding-left: 2rem;
   color: #666;
  position: relative;


}

.service-features li:before {
	  content: "→"; 
	   position: absolute; 
	   left: 0; 
	  color: var(--accent-color); 
	  font-weight: bold;


}

.service-duration   {
  font-size     :        0.95rem;
  color: var(--secondary-color);
         font-weight : 600;
  margin-top: 1.5rem;
}

.pricing-section {
  background-color: #f8f9fa;
	  padding: 4rem 2rem;
	    margin: 4rem 0;
}

.pricing-container   {

    max-width: 1200px;
  margin: 0 auto;

}

.pricing-section h2 {
   font-size: 2.5rem;
      text-align: center;
       margin-bottom: 1rem;
     color: var(--dark-color);
}

.pricing-intro {
    text-align: center;
    color: #666;
  font-size: 1.1rem;
         margin-bottom    : 3rem;
}

.pricing-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
   background-color: #fff;
   padding: 2rem;
  border-radius: var(--border-radius);
   border: 2px solid #e0e0e0;
  transition: all var(--transition-speed) ease;
    position: relative;


}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.pricing-card.featured {
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px rgba(243, 156, 18, 0.2);
}  

.featured-badge{
	 position: absolute;
   top : -12px;
   right: 20px;
  background-color: var(--accent-color);
    color: #fff;
    padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
    font-weight: 600; 

}

.pricing-card h3 {
   font-size: 1.5rem;
  color: var(--primary-color);
    margin-bottom: 1rem;
}

.price {
   font-size: 2.5rem;
   font-weight: 700;
  color: var(--dark-color);
    margin: 1rem 0;
}

.price-period {
 color: #999;
  font-size: 0.95rem;
  margin-bottom: 1.5rem; 

}

.pricing-features {
     list-style: none;
    margin: 1.5rem 0;


}

.pricing-features li {


  padding: 0.75rem 0;
   color: #555;
       border-bottom: 1px solid #f0f0f0;
  position:  relative;
   padding-left: 1.5rem;
	}

.pricing-features li:last-child


{
  border-bottom: none;
}

.pricing-features li:before {
  content: "✓";
    position: absolute;
      left: 0;
  color: var(--accent-color);
   font-weight: bold;

}

.faq-section {

	  max-width :       1200px;
  margin: 4rem auto;
  padding   :     0 2rem;


}

.faq-container h2 {
	 font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--dark-color);
}

.faq-grid {
    display:       grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap     :        2rem;
}

.faq-item {
  background-color    :      #fff;
    border: 2px solid #e0e0e0;
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: all var(--transition-speed) ease;
}

.faq-item:hover {
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.1);
}


.faq-question {

   padding: 1.5rem;
  background-color: #f8f9fa;
  cursor: pointer;
	 display: flex;
    justify-content: space-between;
  align-items: center;
  user-select  :       none;
  transition: background-color var(--transition-speed) ease;


}

.faq-item:hover .faq-question {
  background-color: #f0f1f5;
}

.faq-question h3 {
  font-size: 1.1rem;
  color: var(--dark-color);
    margin: 0;
  flex: 1;
}

.faq-toggle {
  color: var(--primary-color);
    font-size:      1.5rem;
    font-weight:     bold;
  transition: transform var(--transition-speed) ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
	   max-height: 0;
               overflow: hidden;
    transition   :max-height 0.3s ease;


}

.faq-item.active .faq-answer {
    max-height     :     500px;
	
}

.faq-answer p {
    padding: 1.5rem;
   color: #555;
   line-height: 1.7;
}

.thankyou-section {
  min-height: calc(100vh - 200px);
      display: flex;
    align-items: center;
  justify-content  :   center;
    padding: 3rem 2rem;

}

.thankyou-container
	{


               max-width: 700px;
  width: 100%;


}

.thankyou-content {
   text-align: center;
}

.thankyou-icon {
  width: 120px;
       height   :        120px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
   border-radius: 50%;
    display: flex;
  align-items: center;
	justify-content:        center;
   margin: 0 auto 2rem;
   color: #fff;
          animation: scaleIn 0.5s ease; 
	
}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-content h1 {
  font-size:      3rem;
  color: var(--dark-color);
    margin-bottom  :   0.5rem;
}



.thankyou-subtitle {
  font-size  :       1.3rem;
  color: var(--primary-color);
    margin-bottom: 2rem;
}

.thankyou-message {
   background-color :#f8f9fa;
    padding: 2rem;
  border-radius: var(--border-radius);
    margin-bottom: 2rem;
    text-align: center;
}

.thankyou-message p {
  color: #555;
  line-height: 1.8;
        margin-bottom: 1rem;
}

.thankyou-message strong {


  color: var(--accent-color);
	}

.thankyou-next-steps {
   margin: 3rem 0;
}

.thankyou-next-steps h2

{
	  font-size: 1.8rem;
  color: var(--dark-color);
    margin-bottom    :      2rem;

}

.steps-grid {
                    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 1.5rem;
     margin-bottom: 2rem;
}

.step {
          padding :        1.5rem;
   background-color: #fff;
  border: 2px solid #e0e0e0;
  border-radius: var(--border-radius);
  transition: all var(--transition-speed) ease;
}

.step:hover {
  border-color: var(--primary-color);

	  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.1);

	  transform: translateY(-4px);
}

.step-number {
    display: inline-flex;
	align-items: center;
    justify-content: center;
   width    :50px;
   height   :      50px;
  background-color: var(--accent-color);
    color: #fff;
	 border-radius    :50%;
  font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.step h3 {
     font-size: 1.1rem;
  color: var(--primary-color);
          margin-bottom: 0.5rem;
}

.step p {
       color: #666;

	   font-size: 0.95rem;

	  line-height: 1.6;


}

.thankyou-actions{
                    display  :     grid;
    grid-template-columns     :        1fr 1fr;
   gap: 1rem;
    margin: 2rem 0;

}

.thankyou-button-primary,
.thankyou-button-secondary


{
    padding: 1rem 2rem;
  border-radius: var(--border-radius);
   text-decoration: none;
  font-weight     : 600;
  transition: all var(--transition-speed) ease;
    display    :inline-block;
}

.thankyou-button-primary {

	  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);


}

.thankyou-button-primary:hover {
     transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);}

.thankyou-button-secondary {
        background-color: #f0f0f0;
  color: var(--dark-color);
    border: 2px solid #e0e0e0;
}

.thankyou-button-secondary:hover {
    background-color: #e8e8e8;
  border-color: var(--primary-color);
}

.thankyou-contact-info {
    background-color: #f8f9fa;
      padding: 2rem;
  border-radius: var(--border-radius);
       margin-top: 2rem;
  border-left: 4px solid var(--primary-color); 

}

.thankyou-contact-info h3 {
  color: var(--primary-color);
   font-size: 1.2rem;
  margin-bottom: 1rem;


}

.thankyou-contact-info p  
  {
    color: #555;
   margin-bottom: 0.5rem;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .services-hero-content p {
        font-size: 1rem;
    }

    .service-detail-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-detail-item.alternate {
        direction: ltr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-icon {
        width: 100px;
        height: 100px;
    }

    .thankyou-content h1 {
        font-size: 2.2rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-actions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 2rem 1rem;
    }

    .service-detail-content h2 {
        font-size: 1.5rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .price {
        font-size: 2rem;
    }

    .thankyou-button-primary,
    .thankyou-button-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }
}.policy-section {
  padding: 80px 2rem;
  background: #f8f9fa;
  min-height: calc(100vh - 300px);
}

.policy-container {


  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  background-color: #fff;
			padding     :     3rem;
   border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
     }

.policy-container h1 {
    font-size: 2.8rem;
  color: var(--primary-color);
          margin-bottom: 2rem;
    font-weight: 700;
  padding-bottom: 1.5rem;
  border-bottom: 3px solid var(--accent-color);
}

.policy-container h2 {
   font-size: 1.8rem;

	  color: var(--dark-color);

	    margin-top: 2.5rem;

	  margin-bottom: 1rem;

	    font-weight:     600;
}

.policy-container h2:first-of-type {
   margin-top: 0;
}

.policy-container p {
  color  : #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
        font-size: 1.05rem;
}

.policy-container p:last-child {
   margin-bottom: 0;
}

.policy-container ul {
   list-style: none;
			margin: 1.5rem 0;
	  padding-left: 2rem;

}

.policy-container ul li {
   margin-bottom: 1rem;

	     padding-left: 1.5rem;

	    position: relative;

	  color: #555;

	    line-height: 1.7;
}

.policy-container ul li:before {
  content: "•";
	 position: absolute;
  left: 0;
  color: var(--accent-color);
   font-weight: bold;
    font-size: 1.3rem;
}

.policy-container h2 {
     transition: color 0.3s ease;
	}

.policy-container h2:hover {
  color: var(--primary-color);

}@media (max-width: 768px) {
    .policy-section {
        padding: 60px 1rem;
    }

    .policy-container {
        padding: 2rem;
        border-radius: 6px;
    }

    .policy-container h1 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }

    .policy-container h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
        margin-bottom: 0.75rem;
    }

    .policy-container p {
        font-size: 1rem;
        margin-bottom: 1.25rem;
        line-height: 1.7;
    }

    .policy-container ul {
        padding-left: 1.5rem;
    }

    .policy-container ul li {
        padding-left: 1.25rem;
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 40px 0.75rem;
    }

    .policy-container {
        padding: 1.5rem;
        border-radius: 4px;
    }

    .policy-container h1 {
        font-size: 1.8rem;
        margin-bottom: 1.25rem;
        padding-bottom: 0.75rem;
    }

    .policy-container h2 {
        font-size: 1.3rem;
        margin-top: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .policy-container p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }

    .policy-container ul {
        padding-left: 1.25rem;
        margin: 1rem 0;
    }

    .policy-container ul li {
        padding-left: 1rem;
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
    }
}