* {
  margin: 0;
	padding: 0;
               box-sizing:    border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color  :      #2c3e50;
  background-color: #f8f9fa;
   line-height: 1.6;


}

.container {
    max-width: 1200px;
  margin: 0 auto;
   padding: 0 20px;
}

.navbar {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 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-brand {
  flex-shrink: 0;
}

.logo-nav {
   height: 50px;
   width: auto;
               display: block;
}

.nav-menu {


   display: flex;
    list-style: none;
    gap: 2rem;
     }

.nav-link {
  transition: opacity 0.3s ease;
               font-weight: 500;
      text-decoration: none;
	 color: white;
  padding: 0.5rem 1rem;
}

.nav-link:hover {
  opacity: 0.8;
}

.nav-toggle {
   display: none;
  flex-direction: column;
   cursor: pointer;
         gap: 0.5rem;
}

.nav-toggle span   {
   width: 25px;
   height: 3px;
  background-color: white;
   border-radius: 3px;
   transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px); 
	
}

.nav-toggle.active span:nth-child(2) {
         opacity: 0;
} 

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu.active

{

  display: flex;
  flex-direction: column;
    position   :       absolute;
	top: 70px;
    left: 0;
    right: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 1rem;
   gap    :      1rem;
	}

.hero-section {
    display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 2rem;
   align-items: center;
    padding: 4rem 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.hero-content h1 {
  font-size: 3rem;

	  color: #2c3e50;

	    margin-bottom   :    1rem;

	    line-height   :  1.2;
	}

.hero-content p {
  font-size     :      1.1rem;
   color  :        #555;
   margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.9rem 2rem;
          border-radius   : 50px;
    text-decoration: none;
    font-weight: 600;
  transition:       transform 0.3s ease, box-shadow 0.3s 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: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.intro-section {
   padding: 5rem 0;
    background-color: white;
}

.intro-section h2		{
  font-size: 2.5rem;
    color     :        #2c3e50;
  margin-bottom:        1.5rem;
   text-align : center; 
	
}

.intro-section > .container > p {
	   font-size: 1.1rem;
  text-align: center;
   color: #555;
   max-width: 700px;
    margin: 0 auto 3rem;
   line-height: 1.8;
     }

.features-grid {
	   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
         gap    :    2rem;
}

.feature-card {
	background: #f8f9fa;
    padding: 2rem;
   border-radius   :      10px;
   border-left: 4px solid #667eea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}  

.feature-card h3 {
  color: #667eea;
  margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {


   line-height: 1.7;
    color: #555; 
	

}



.showcase-section {
       padding   :5rem 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
}

.showcase-section h2 {
   font-size     : 2.5rem;
   color: #2c3e50;
    margin-bottom: 3rem;
	text-align : center;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem; 
	
}

.showcase-item {
  background: white;
    border-radius     :   12px;
   overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15); 
	
} 

.showcase-item img {
     width: 100%;
  height: 200px;
   object-fit: cover;
   display: block;


}

.showcase-item h3  
  {
  color: #667eea;
               padding: 1.5rem 1.5rem 0.5rem;
    font-size     :1.2rem;
}

.showcase-item p {
  padding: 0 1.5rem 1.5rem;
   font-size: 0.95rem;
   color: #555;
}

.services-highlight  
  {
	               padding: 5rem 0;
   background-color: white;


}

.services-highlight h2 {
    font-size :  2.5rem;
  color: #2c3e50;
      margin-bottom: 3rem;
    text-align: center;
}

.services-list


{
      display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap     :     2rem;
}

.service-item {
   padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8eaf6 100%);
    border-radius: 10px;
	border-top: 4px solid #764ba2;
   transition: all 0.3s ease;
   position: relative;
}

.service-item:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.service-number {
    display: inline-block;
   font-size: 2.5rem;
	 font-weight: bold;
   color: #667eea;
    margin-bottom: 0.5rem;
  opacity: 0.3;
}

.service-item h3 {
	color: #2c3e50;
   margin-bottom: 1rem;
   font-size: 1.3rem;
}

.service-item p   {
    color: #555;
   line-height: 1.7;
   font-size: 0.95rem;
}

.cta-section
	{
  padding: 5rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align   : center;
	
}

.cta-section h2

{
   font-size: 2.5rem;
	margin-bottom: 1rem;
}

.cta-section p {

	    font-size: 1.1rem;
    margin-bottom   :     2rem;
    opacity: 0.95;
     }

.cta-button-large {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 1rem 2.5rem;
	border-radius: 50px;
    text-decoration: none;
   font-weight: 700;
    transition    :     transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    font-size: 1.05rem;
}

.cta-button-large:hover {
  transform: translateY(-3px);
     box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.contact-section {
  background-color: #f8f9fa;

	    padding: 5rem 0;
}


.contact-section h2


{
   font-size: 2.5rem;
   color: #2c3e50;
  margin-bottom: 1rem;
	 text-align: center;
} 

.contact-intro {
   text-align: center;
    font-size: 1.05rem;
  line-height: 1.7;
    max-width: 600px;
   color :     #555;
    margin: 0 auto 3rem;
}

.contact-form {
    max-width: 700px;
	 margin: 0 auto;
   background  : white;
  padding     :    2.5rem;
   border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}


.form-group {

	   margin-bottom: 1.8rem;}  

.form-group label {

  display: block;
     margin-bottom: 0.6rem;
	 color: #2c3e50;
    font-weight: 600;
  font-size: 0.95rem;
     }

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;

	    padding: 0.9rem 1rem;

	   border: 2px solid #e0e0e0;

	    border-radius: 8px;

	   font-size: 1rem;

	                    font-family: inherit;

	   transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
   outline: none;
	border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.submit-btn {
	width: 100%;
    padding: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color :     white;
   border     :    none;
    border-radius: 8px;
               font-size: 1.05rem;
    font-weight     :       700;
  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 6px 20px rgba(102, 126, 234, 0.4);

}

.submit-btn:active {


  transform: translateY(0);
	}

.footer-section {
   color: white;
	background:#2c3e50;
   padding: 3rem 0 1rem;
}

.footer-container {
	   max-width: 1200px;
   margin: 0 auto;
 padding: 0 20px;

}

.footer-content {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
 gap: 2rem;
    margin-bottom: 2rem;
   padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);

}

.footer-brand {
   grid-column: 1;
}

.footer-logo {
  height: 50px;
      width: auto;
    display: block;
  filter: brightness(0) invert(1);
}

.footer-info h4,
.footer-contact h4,
.footer-links h4 {
     font-size: 1.05rem;
		margin-bottom: 1rem;
  color: #667eea;
}

.footer-info p,
.footer-contact p {
    color: #bbb;
  font-size: 0.9rem;
   line-height: 1.8;
}

.footer-contact a {
         color    :#667eea;
   transition: color 0.3s ease;
   text-decoration   :       none;


}

.footer-contact a:hover {
   color: white;
}

.footer-links ul {
               list-style: none;

}

.footer-links li {
   margin-bottom: 0.8rem;
	
}

.footer-links a {
    font-size: 0.9rem;
  color: #bbb;
  text-decoration: none;
    transition   :   color 0.3s ease;
}

.footer-links a:hover {
    color: #667eea;
}

.footer-bottom     {
         padding-top: 2rem;
   color :        #999;
          font-size : 0.85rem;
                    text-align     :        center;
}@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        gap: 0;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 2rem 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .intro-section h2,
    .showcase-section h2,
    .services-highlight h2,
    .contact-section h2,
    .cta-section h2 {
        font-size: 1.8rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .services-list {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .intro-section h2,
    .showcase-section h2,
    .services-highlight h2,
    .contact-section h2,
    .cta-section h2 {
        font-size: 1.5rem;
    }

    .cta-button,
    .cta-button-large {
        font-size: 0.95rem;
        padding: 0.8rem 1.5rem;
    }

    .submit-btn {
        padding: 0.85rem;
        font-size: 1rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  padding: 4rem 0;
    text-align: center;
}

.services-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.services-hero p {
     margin: 0 auto;
    max-width :    700px;
   opacity: 0.95;
  font-size: 1.1rem;
	}

.services-detailed {
      padding  :    5rem 0;
    background-color: white;
}

.service-detailed-item {
	    align-items: center;
   grid-template-columns: 1fr 1fr;
         margin-bottom: 4rem;
    gap:3rem;
    display: grid;
	}

.service-detailed-item.reverse {
  direction: rtl;
}

.service-detailed-item.reverse > * {
  direction: ltr;
}

.service-detail-content h2 {
       font-size: 2rem;
   color: #667eea;
 margin-bottom: 1.5rem;
     }

.service-detail-content > p:first-of-type {
          font-size  :1rem;
    color: #555;
   margin-bottom: 1.5rem;
  line-height: 1.7;

}

.service-feature-list {

	  list-style: none;
	    margin-bottom   :     1.5rem;
}

.service-feature-list li {
   padding: 0.7rem 0 0.7rem 2rem;
        position  :  relative;
  color     :      #555;
    line-height  :    1.6; 

}

.service-feature-list li:before {
  content: "✓";
  position: absolute;
   left     :  0;
  color: #667eea;
      font-weight: bold;
    font-size: 1.2rem;
     }

.service-detail-text {
   font-size: 0.95rem;

  color: #666;

   font-style: italic;

  border-left:  3px solid #764ba2;

         padding-left: 1.5rem;
}

.service-detail-image img {
         width: 100%;
    height: auto;
  border-radius  :      12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.pricing-section{
  padding  : 5rem 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
}

.pricing-section h2 {
   font-size: 2.5rem;
   color: #2c3e50;
  text-align: center;
    margin-bottom :   1rem;
}

.pricing-intro {
                    text-align: center;
  color: #555;
  font-size: 1.05rem;
   margin-bottom    :       3rem;
}

.pricing-cards {
    display: grid; 
	  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
	  gap: 2rem; 
	    margin-bottom: 2rem;
}

.pricing-card {
	background  :    white;
   padding:        2.5rem;
    border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	position: relative;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	 border-top: 4px solid #667eea;
}  

.pricing-card:hover:not(.featured) {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.pricing-card.featured {
   border-top: 4px solid #764ba2;
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.4);
}

.featured-badge {
	 position: absolute;
    top: -12px;
    left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color:    white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
   font-size: 0.85rem;
	 font-weight     :     700;
}

.pricing-card h3 {
   font-size: 1.5rem;
    color: #2c3e50;
  margin-bottom: 1rem;


}


.price {
    font-size: 1.8rem;
   color: #667eea;
  font-weight: 700;
    margin-bottom  :   1.5rem;
}

.package-features {
  list-style: none;
   margin-bottom: 1.5rem; 
	
}

.package-features li {
  padding: 0.6rem 0 0.6rem 1.8rem;
  position: relative;
  color: #555;
   font-size: 0.95rem;
     }

.package-features li:before {

  content: "•";
	position    : absolute;
   left: 0;
    color: #667eea;
   font-size: 1.5rem;}

.package-desc	{
  font-style: italic;
	font-size: 0.9rem;
    color: #999;
}

.pricing-note {
        text-align    :  center;
	 color: #666;
	font-size: 0.95rem;
  margin-top: 2rem;
}

.process-section {
   background-color: white;
	padding: 5rem 0;
}

.process-section h2 {
   font-size: 2.5rem;
   color     :  #2c3e50;
    text-align: center;
        margin-bottom: 3rem;
}

.process-steps {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	 gap    :   2rem;
}

.process-step {
    text-align    :  center;
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8eaf6 100%);
    border-radius: 12px;
    transition  :transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);


}

.step-number {
  display     :   inline-flex;
         align-items: center;
  justify-content    : center;
    width: 60px;
   height:  60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 color: white;
    border-radius: 50%;
          font-size: 1.8rem;
  font-weight     :    700;
         margin-bottom: 1rem;
}  

.process-step h3 {
      color: #2c3e50;
    margin-bottom: 1rem;
   font-size    :       1.2rem;
}

.process-step p {
   color: #555;
   line-height: 1.6;
   font-size: 0.95rem;
}

.why-us-section {
   padding: 5rem 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
}  

.why-us-section h2 {
    font-size  : 2.5rem;
  color: #2c3e50;
  text-align: center;
    margin-bottom: 3rem;
     }


.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.why-us-item {
  background: white;
  padding  : 2rem;
   border-radius :  10px;
  border-left: 4px solid #667eea;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
     transition   :   transform 0.3s ease;
}

.why-us-item:hover {
  transform: translateY(-3px);
}

.why-us-item h3 {
          color: #667eea;
  margin-bottom  :   1rem;
	font-size: 1.2rem;
}

.why-us-item p {
	color: #555;
      line-height  :  1.7;
     font-size: 0.95rem;
}

.cta-final {
    padding: 4rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  text-align: center;
}

.cta-final h2 {
  font-size: 2.2rem;
  margin-bottom :   1rem;
}

.cta-final p    {
    font-size :        1.05rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.thankyou-section {

   min-height: 70vh;
   display: flex;
	align-items: center;
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
	}

.thankyou-content {
  max-width: 600px;
  margin: 0 auto;
  background: white;
	 padding: 3rem;
    border-radius: 15px;
   text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.thankyou-icon {
   margin-bottom    :   2rem;
   display: flex;
    justify-content: center;
    animation     :        slideDown 0.6s ease;
}
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.thankyou-content h1 {

   font-size: 2rem;
   color: #667eea;
        margin-bottom: 1rem;
	
     }

.thankyou-message {
  font-size: 1.05rem;
       color   :  #555;
   line-height: 1.7;
	margin-bottom: 2rem; 
	
}

.thankyou-info {
   background: #f8f9fa;
    padding: 2rem;
   border-radius: 10px;
   margin-bottom: 2rem;
	text-align: left;
}

.thankyou-info h2 {

	 font-size: 1.3rem;
  color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
     }

.info-list  
  {
	list-style: none;
}

.info-list li {
   padding     :       0.8rem 0 0.8rem 1.8rem;
   position   :   relative;
   color: #555;
    line-height: 1.6;
}

.info-list li:before {
  color: #667eea;
  content: "→";
	left: 0;
	font-weight: bold;
  position: absolute;
}

.thankyou-actions {
       margin-bottom: 2rem;
  gap: 1rem;
  justify-content     :  center;
  flex-wrap: wrap;
    display: flex;
	
     }

.action-link {
  display     :    inline-block;
   border-radius: 8px;
    padding: 0.9rem 1.8rem;
  font-weight: 600;
   transition: all 0.3s ease;
       font-size: 0.95rem;
   text-decoration: none;
}


.action-link.primary   {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.action-link.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
	
}

.action-link.secondary	{
  background: #e8eaf6;
   color:        #667eea;
  border     :     2px solid #667eea;
}

.action-link.secondary:hover {
  color :       white;
  background: #667eea;
}

.thankyou-extra		{
  background: linear-gradient(135deg, #f8f9fa 0%, #e8eaf6 100%);
    padding: 1.5rem;
   border-radius:       10px;
	border-left: 4px solid #764ba2;
}

.thankyou-extra h3 {

	    color: #2c3e50;
    margin-bottom   :  0.5rem;
   font-size :   1.1rem;
     }

.thankyou-extra p {
    color    :    #555;
   margin: 0.5rem 0;
}

.contact-phone {
          font-size: 1.3rem;
   font-weight: 700;
  margin-top: 1rem;
}

.contact-phone a {
  color: #667eea;
  text-decoration: none;
  transition     :   color 0.3s ease;
}

.contact-phone a:hover {

	   color: #764ba2;
     }@media (max-width: 1024px) {
    .service-detailed-item {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 1.8rem;
    }

    .services-hero p {
        font-size: 1rem;
    }

    .service-detail-content h2 {
        font-size: 1.5rem;
    }

    .pricing-section h2,
    .process-section h2,
    .why-us-section h2 {
        font-size: 1.8rem;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-content {
        padding: 2rem;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .action-link {
        width: 100%;
        text-align: center;
    }

    .cta-final h2 {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .service-feature-list li {
        padding: 0.6rem 0 0.6rem 1.5rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .why-us-item {
        padding: 1.5rem;
    }

    .thankyou-section {
        min-height: auto;
        padding: 2rem 0;
    }

    .thankyou-icon svg {
        width: 60px;
        height: 60px;
    }

    .thankyou-content h1 {
        font-size: 1.5rem;
    }
}.policy-section {
    padding   :        80px 2rem;
    background: #f8f9fa;
   min-height: 60vh;
}

.policy-container {
     max-width: 800px;
  margin: 0 auto;
  text-align   :left;
   background: white;
    padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.policy-container h1 {
  font-size: 2.8rem;
   color: #667eea;
  margin-bottom: 2rem;
    font-weight: 700;
  text-align: center;
	
}

.policy-container h2 {
                    font-size: 1.6rem;
    color: #2c3e50;
                    margin-top: 2rem;
	margin-bottom: 1rem;
   font-weight: 600;
   border-bottom: 2px solid #667eea;
   padding-bottom: 0.5rem;
}

.policy-container p  
  {
   color: #555;
          margin-bottom: 1.2rem;
         line-height: 1.8;
   font-size: 0.95rem;
  text-align: justify;
}

.policy-container ul
{
		 margin-bottom  :1.5rem;
    margin-left: 1.5rem;

}

.policy-container li {
   color:     #555;
               margin-bottom: 0.8rem;
               line-height: 1.7;
}  

.policy-container strong 
 {
   color    : #2c3e50;
  font-weight: 600;
}

.last-update {
    text-align: center;
   color: #999;
   font-size: 0.85rem;
   margin-top: 3rem;
  padding-top: 2rem;
   border-top: 1px solid #e0e0e0;
   font-style: italic;
}@media (max-width: 768px) {
    .policy-section {
        padding: 60px 1rem;
    }

    .policy-container {
        padding: 2rem 1.5rem;
    }

    .policy-container h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policy-container h2 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
    }

    .policy-container p {
        font-size: 0.9rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 40px 0.5rem;
    }

    .policy-container {
        padding: 1.5rem 1rem;
        border-radius: 8px;
    }

    .policy-container h1 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .policy-container h2 {
        font-size: 1.1rem;
        margin-top: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .policy-container p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .last-update {
        margin-top: 2rem;
    }
}