* {
    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: #ffffff;
}

.navigation-bar {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1rem 0;
   position: sticky;
    top: 0;
    z-index: 1000;
  box-shadow: 0 2px 10px rgba(102, 126, 234, 0.15);
}

.nav-container {


  max-width     :        1200px;
    margin: 0 auto;
  padding: 0 1.5rem;
          display:    flex;
  justify-content: space-between;
  align-items: center;

}

.logo-section {
	 display: flex;
               align-items: center;
}

.logo-image {


  height   :    45px;
    width: auto;
  filter: brightness(0) invert(1);
}

.burger-menu-btn  {
    display: none;
   background: none;
    border   :        none;
  cursor: pointer;
    padding: 0.5rem;
	
}

.burger-icon {
    width: 24px;
   height: 24px;
               stroke :        #ffffff;
	fill: none;
}

.nav-links {
	    list-style: none;
   display    :       flex;
    gap: 2rem;


}

.nav-links a {
  color: #ffffff;
    text-decoration: none;
  font-weight: 500;
   transition: opacity 0.3s ease;

}

.nav-links a:hover {
  opacity: 0.8;
}


.hero-section {
	 display: grid;
    grid-template-columns  : 1fr 1fr;
  gap  :  3rem;
  align-items: center;
        padding    :     4rem 1.5rem;
    max-width   :   1200px;
  margin: 0 auto;
}

.hero-content h1    {
   line-height    :        1.2;
   font-weight: 700;
  margin-bottom: 1rem;
  font-size     :   3rem;
    color: #1a2634;
}

.hero-content p {
  font-size: 1.1rem;
   color     :    #555;
    margin-bottom: 2rem;
}

.hero-image {
  border-radius  :    20px;
        overflow: hidden;
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.hero-img {
  width:  100%;
  height    :     auto;
  display  :       block;
}


.cta-button {
  display    :  inline-block;
  padding:        0.9rem 2.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
   text-decoration: none;
   border-radius: 50px;
     font-weight: 600;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}


.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
}

.services-preview {
  background: #f8f9fa;
      padding: 4rem 1.5rem;
    text-align: center;


}

.services-preview h2 {
        font-size: 2.5rem;
       margin-bottom: 3rem;
  color: #1a2634;
}

.services-grid{
        display :grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
    max-width   :       1200px;
   margin: 0 auto; 
	
}

.service-card {
    background: white;
    padding: 2rem;
	 border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
     box-shadow: 0 10px 35px rgba(102, 126, 234, 0.15);
}

.card-icon {
   margin-bottom: 1.5rem;
               height: 60px;
  display: flex;
  justify-content: center;
   align-items: center; 
	
}

.svg-icon {
   width: 50px;
 height: 50px;
  stroke: #667eea;
   fill: none;
         stroke-width: 2;
    stroke-linecap   :    round;
	stroke-linejoin: round;
}

.service-card h3 {
	   font-size: 1.3rem;
   margin-bottom   :        1rem;
  color: #1a2634;




}

.service-card p
{
    color    :   #666;
     font-size: 0.95rem;
}

.transformation-section {
   padding     :     4rem 1.5rem;
   max-width: 1200px;
          margin: 0 auto;
}

.transformation-section h2 {
  font-size: 2.5rem;
   text-align:        center;
					margin-bottom: 3rem;
  color: #1a2634;
}

.transformation-grid {


    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
         gap: 2rem;
	}

.transform-item {
   border-radius: 15px;
    overflow: hidden;
   background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.transform-item:hover 
 {

	  transform: translateY(-5px);
     }

.transform-img {

	  width: 100%;
   height: 200px;
   object-fit:     cover;
    display: block;
     }

.transform-item h3 {
	    font-size: 1.3rem;

   padding: 1.5rem 1.5rem 0.5rem;

   color: #1a2634;


}

.transform-item p 
 {
   padding  :        0 1.5rem 1.5rem;
   color: #666;
   font-size: 0.95rem;


}

.cta-consultation {
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3.5rem 1.5rem;
    text-align: center;
    color: white;
     }

.cta-content h2 {
	 font-size: 2.2rem; 
  margin-bottom: 1rem;

}

.cta-content p {
   font-size: 1.1rem;
    margin-bottom: 2rem;
	opacity: 0.95;
}

.cta-button-alt {
	 display: inline-block;
  padding: 0.9rem 2.5rem;
    background: white;
  color: #667eea;
	text-decoration: none;
   border-radius: 50px;
   font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cta-button-alt:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
} 

.solopreneur-showcase {
    padding: 4rem 1.5rem;
    background     :     #f8f9fa;
}

.solopreneur-showcase h2 {
   font-size: 2.5rem;
   text-align: center;
    margin-bottom: 3rem;
    color: #1a2634;
}

.showcase-grid {
       display  :    grid;
   grid-template-columns: 1fr;
  gap: 2rem;
	max-width: 1200px;
  margin: 0 auto;


} 

.showcase-item

{
   position: relative;
    border-radius: 15px;
   overflow: hidden;
   height: 300px;
}

.showcase-img {
	    width     : 100%;
	 height :  100%;
    object-fit: cover;
  display: block;}

.showcase-overlay {
    position   : absolute;
	bottom: 0;
   left: 0;
	right   :   0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 2rem;
   color: white;
  transform: translateY(20px);
  opacity: 0;
    transition: all 0.3s ease;
}

.showcase-item:hover .showcase-overlay {


  transform: translateY(0);
  opacity: 1;
}

.showcase-overlay h4
{
     font-size: 1.5rem;
 margin-bottom:     0.5rem;
}

.contact-section {
  margin   : 0 auto;
    max-width    :  1200px;
	 padding: 4rem 1.5rem; 

}

.contact-section h2 {
	color: #1a2634;
    margin-bottom: 1rem;
  text-align: center;
    font-size: 2.5rem;
}

.contact-intro {

   text-align :       center;
  color: #666;
    margin-bottom: 2rem;
   font-size: 1.05rem;
	}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
  background: #f8f9fa;
   padding: 2rem;
   border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom   :        1.5rem;
}

.contact-form label {
  display: block;
      margin-bottom: 0.5rem;
     font-weight: 600;
      color: #1a2634;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
	 width: 100%;
  padding: 0.8rem 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #ddd;
   border-radius: 8px;
   font-family: inherit;
	font-size: 1rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus

{
  outline: none;
	 border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.submit-btn {
  width:      100%;
  padding: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
    border: none;
   border-radius: 8px;
   font-weight: 600;
	font-size: 1rem;
  cursor: pointer;
   transition    :        transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.submit-btn:hover    {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
} 

.submit-btn:active {
  transform: translateY(0);

}

.footer-section  {
    background: #1a2634;
	 color: #e0e0e0;
  padding : 3rem 1.5rem 1rem;
   margin-top: 3rem;
}

.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-brand     {
   display    :       flex; 
	  align-items: flex-start;
}

.footer-logo {
  height: 50px;

    width: auto;

  filter: brightness(0) invert(1);
}

.footer-info h3,
.footer-nav h3 {

	  color: #ffffff;
  margin-bottom: 1rem;


}

.footer-info p

{
  margin-bottom     :   1rem;
  font-size: 0.9rem;
  line-height: 1.8;
     }

.footer-nav ul {
    list-style     :    none;
}

.footer-nav ul li {
    margin-bottom: 0.7rem;
}

.footer-nav a


{
    color: #e0e0e0;
   text-decoration: none;
   transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #667eea;


}

.footer-bottom {
   border-top: 1px solid #333;
  color: #888;
    text-align   :center;
     padding-top: 1.5rem;
   font-size: 0.85rem;
}  @media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .burger-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links a {
        display: block;
        padding: 0.8rem 1.5rem;
    }

    .services-preview h2,
    .transformation-section h2,
    .solopreneur-showcase h2,
    .contact-section h2 {
        font-size: 1.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .transformation-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 1.6rem;
    }

    .showcase-item {
        height: 200px;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.4rem;
    }

    .cta-button,
    .cta-button-alt {
        padding: 0.7rem 1.8rem;
        font-size: 0.9rem;
    }

    .services-preview h2,
    .transformation-section h2,
    .solopreneur-showcase h2,
    .contact-section h2 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .transform-item p,
    .service-card p {
        font-size: 0.85rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .contact-form {
        padding: 1rem;
    }
}.services-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	 color: white;
    padding: 3rem 1.5rem;
   text-align: center;


}

.header-content h1 {
    font-size :       2.8rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.header-content p {
   font-size: 1.15rem;
        opacity: 0.95;

}

.services-detailed


{
  max-width: 1200px;

	    margin: 0 auto;

	    padding: 4rem 1.5rem;
}

.service-detail-card {
	 display: grid;
  grid-template-columns: 1fr 1fr;
 gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
  padding: 2rem;
   background: #f8f9fa;
   border-radius: 15px; 
	
}

.service-detail-alt {
   grid-template-columns  : 1fr 1fr;
}

.service-detail-image {
    border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.detail-img
	{
  width     :       100%;
  height: auto;
    display: block;
}

.service-detail-content h2		{
    font-size: 2rem;
  color: #1a2634;
  margin-bottom: 1rem;
}

.service-detail-content > p {
    color: #555;
   font-size: 1rem;
    margin-bottom: 1.5rem;
   line-height: 1.8;
}

.service-features		{
     display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
    margin: 2rem 0;
   padding: 1.5rem 0;
    border-top: 1px solid #ddd;
   border-bottom: 1px solid #ddd;
	}

.feature-item  
  {

		display :  flex;
   flex-direction:       column;
	gap: 0.4rem; 
	


}

.feature-label {
       font-weight: 700;
    color: #667eea;
  font-size: 0.85rem;
   text-transform:     uppercase;
}

.feature-item span:not(.feature-label) {
	    color: #2c3e50;
	 font-size: 0.95rem;

}

.service-desc {
  color: #666;
    font-size: 0.95rem;
  font-style: italic;
   padding     :     1rem;
   background: white;
    border-left: 4px solid #667eea;
   border-radius: 5px;
	 margin-top: 1rem;
}

.pricing-section {
    background: #ffffff; 
	   padding: 4rem 1.5rem; 
	   text-align: center; 
	  max-width: 1200px; 
	  margin   :       0 auto;
}

.pricing-section h2 {
   font-size: 2.5rem;
   color: #1a2634;
   margin-bottom: 0.5rem;

}

.pricing-intro {
           color: #888;
	margin-bottom: 3rem;
  font-size: 1.05rem;
	

}

.pricing-grid		{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap:    2rem;
   margin-bottom: 2rem;
}

.pricing-card {
	background   :    #f8f9fa;
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
  border: 2px solid #e0e0e0;
   transition: all 0.3s ease;
   position: relative;
	
}



.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.pricing-card.featured {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  border: none;
  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: #f39c12;
    color: white;
	 padding: 0.4rem 1rem;
  border-radius  :        20px;
    font-size: 0.8rem;
	font-weight: 700;
     }

.pricing-card h3 {
  font-size: 1.5rem;
	margin-bottom: 1rem;
    color: inherit;
}

.price {
               font-size: 2.5rem;
   font-weight: 700;
    margin-bottom   :     0.3rem;
    color: #667eea;
}

.pricing-card.featured .price {
   color: #ffeb3b;
}

.price-desc {
	font-size: 0.9rem;
  color: #888;
    margin-bottom: 1.5rem;
}

.pricing-card.featured .price-desc


{
  color: rgba(255, 255, 255, 0.8);
}

.pricing-features  {
	list-style: none;
  text-align: left;
}

.pricing-features li    {
  padding: 0.7rem 0;
   border-bottom   :1px solid #ddd;
  color   : #555;
				 font-size     :  0.9rem;

}

.pricing-card.featured .pricing-features li {
  border-bottom-color: rgba(255, 255, 255, 0.2);
   color: white;
}

.pricing-features li:last-child {
   border-bottom   :none;
}

.process-section {
         background: #f8f9fa;
          padding: 4rem 1.5rem;
  max-width: 1200px;
   margin: 0 auto;
}

.process-section h2 {
  font-size  :  2.5rem;
      text-align: center;
        color: #1a2634;
   margin-bottom: 3rem;
}

.process-timeline {

	                    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
	}



.process-step {
  background: white;
  padding: 2rem;
  border-radius: 12px;
	text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);


}

.step-number {
   font-size    : 3rem;
    margin-bottom   :      1rem;
   font-weight: 700;
    color: #667eea;
}

.process-step h3 {
   font-size: 1.4rem;
   margin-bottom: 0.8rem;
  color: #1a2634;
}

.process-step p {
   color: #666;
	line-height: 1.6;
         font-size   :      0.95rem;
}

.cta-section-services {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
   color: white; 
  padding: 3.5rem 1.5rem; 
    text-align: center; 
   margin: 3rem 0;
}

.cta-section-services h2 {
  font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-section-services p {
    font-size: 1.05rem;
  margin-bottom: 2rem;
               opacity: 0.95;
}

.thank-you-section {
   min-height: 100vh;
               padding: 4rem 1.5rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.thank-you-container {
    max-width: 900px; 
   margin: 0 auto; 
   text-align: center;

}

.success-icon {
   margin-bottom: 2rem;
   height: 80px;
  display: flex;
   justify-content     :      center;
    align-items    :        center;
}

.success-img   {
      width: 80px;
   height: 80px;
    stroke     :     #2ecc71;
  fill: none;
   stroke-width: 2;
    stroke-linecap: round;
   stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(46, 204, 113, 0.3));}

.thank-you-section h1
{
     font-size: 2.8rem;
  color: #1a2634;
    margin-bottom:   1rem;
}

.thank-you-message {
	font-size: 1.15rem;
					color: #666;
	 margin-bottom: 3rem;
  line-height: 1.8; 

}

.thank-you-details {
               display: grid;
     grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
       gap: 2rem;
       margin-bottom: 3rem;
}

.detail-box {
                    background: white;
  padding: 2rem;
   border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.detail-box h3 {
	          font-size: 1.4rem;
    color: #1a2634;
  margin-bottom: 1rem;
   text-align     :    center; 
}

.next-steps {
     list-style: none;
}

.next-steps li {
	padding: 0.7rem 0;
	 padding-left: 1.5rem;
	color: #555;
  position  :      relative;
  font-size: 0.95rem;
}

.next-steps li:before {
	  content: "✓";
  position: absolute;
  left :  0;
          color: #2ecc71;
     font-weight: 700;
}

.contact-info {
  padding: 1.5rem;
  margin-top: 1rem;
               background: #f8f9fa;
   border-radius: 8px;
}

.contact-info p{
		color: #2c3e50;

	   margin: 0;}

.recommended-actions{
    background: #f8f9fa;
  padding: 2rem;
    border-radius: 12px;
	margin-bottom: 3rem;
}

.recommended-actions h3 {
   font-size: 1.4rem;
	color: #1a2634;
    margin-bottom: 1.5rem;
}

.action-cards {
	display :  grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
}

.action-card {
  background   : white;

    padding  :       1.5rem;

  border-radius   :     10px;

    text-decoration: none;

  color: inherit;

  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);

   transition: all 0.3s ease;

  border-left: 4px solid #667eea;
}

.action-card:hover 
 {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15);
   border-left-color: #764ba2;
}

.action-card h4
{
    font-size: 1.1rem;
	 color  : #1a2634;
    margin-bottom :0.5rem;
}

.action-card p  
  {
       color   :   #666;
  font-size: 0.85rem;
}

.faq-section {
      background :      white;
   padding: 2rem;
    border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: left;}

.faq-section h3 {
   font-size: 1.4rem;
   color: #1a2634;
   text-align: center;
   margin-bottom: 1.5rem;
}

.faq-items {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 1.5rem;
}

.faq-item {
      padding: 1.5rem;
     background: #f8f9fa;
    border-radius: 8px;
   border-left: 3px solid #667eea;
	}

.faq-item h4 {
  font-size: 1rem;
    color: #1a2634;
    margin-bottom: 0.7rem;
}

.faq-item p {

  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;

}

.trust-section {
	 padding:     3rem 1.5rem;
   background: #f8f9fa;
       max-width: 1200px;
    margin: 0 auto;
	}

.trust-section h2 {
  font-size    :    2.2rem;
   text-align: center;
    color: #1a2634;
  margin-bottom: 2.5rem;
}

.trust-grid		{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.trust-item {
  background: white;
               padding   :       2rem;
 border-radius: 12px;
    text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
   transition: transform 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-5px);
}

.trust-icon {
       height  : 60px;
      display: flex;
    justify-content: center;
    align-items: center;
   margin-bottom:1rem;}  

.trust-svg {
   width: 50px;

	    height: 50px;

	   stroke     :   #667eea;

	  fill: none;

	   stroke-width    :        2;

	  stroke-linecap: round;

		stroke-linejoin: round;
}

.trust-item h4 {
                    font-size: 1.2rem;
	   color: #1a2634;
	    margin-bottom: 0.8rem;
}

.trust-item p {
   color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}@media (max-width: 768px) {
    .header-content h1 {
        font-size: 1.8rem;
    }

    .header-content p {
        font-size: 1rem;
    }

    .service-detail-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .service-detail-alt {
        grid-template-columns: 1fr;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: scale(1) translateY(-8px);
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .cta-section-services h2 {
        font-size: 1.6rem;
    }

    .thank-you-section {
        padding: 2rem 1.5rem;
        min-height: auto;
    }

    .thank-you-section h1 {
        font-size: 1.8rem;
    }

    .thank-you-message {
        font-size: 1rem;
    }

    .thank-you-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .detail-box {
        padding: 1.5rem;
    }

    .faq-items {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .header-content h1 {
        font-size: 1.4rem;
    }

    .service-detail-card {
        padding: 1rem;
    }

    .service-detail-content h2 {
        font-size: 1.4rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        padding: 1.5rem;
    }

    .step-number {
        font-size: 2rem;
    }

    .thank-you-container {
        padding: 1rem;
    }

    .action-cards {
        grid-template-columns: 1fr;
    }

    .faq-item {
        padding: 1rem;
    }
}.policy-section {
    padding: 4rem 1.5rem;
    background: #f8f9fa;
  min-height: calc(100vh - 300px);
}

.policy-container {
    max-width: 900px;
  margin: 0 auto;
   text-align: left;
   background: white;
	padding: 3rem;
   border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);

}

.policy-container h1     {
   font-size: 2.8rem;
    color: #1a2634;
  margin-bottom    :     2rem;
   font-weight: 700;
  text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid #667eea;
}

.policy-container h2 {

	  font-size :      1.8rem;
    color: #1a2634;
  margin-top: 2rem;
   margin-bottom     :  1rem;
   font-weight: 600;
   position: relative;
   padding-left: 1rem;
	}

.policy-container h2:before {
  content: "";
    position: absolute;
    left: 0;
   top: 50%;
  transform: translateY(-50%);
	width: 4px;
         height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
	
}

.policy-container p {
   color: #555;
	 margin-bottom: 1.5rem;
	   line-height: 1.8;
	    font-size: 1rem;
	        text-align: justify;
}  

.policy-container p:first-of-type {
	 font-size: 1.05rem;
  color: #666;
  font-weight: 500;
}@media (max-width: 768px) {
    .policy-section {
        padding: 2rem 1rem;
        min-height: auto;
    }

    .policy-container {
        padding: 2rem 1.5rem;
        border-radius: 8px;
    }

    .policy-container h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }

    .policy-container h2 {
        font-size: 1.4rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policy-container p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        text-align: left;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 1.5rem 0.75rem;
    }

    .policy-container {
        padding: 1.5rem 1rem;
        border-radius: 6px;
    }

    .policy-container h1 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        padding-bottom: 0.8rem;
    }

    .policy-container h2 {
        font-size: 1.2rem;
        margin-top: 1.2rem;
        margin-bottom: 0.6rem;
    }

    .policy-container p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
}