* {
  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: #fafbfc;
}

.navbar		{
  position: sticky;
         top  :    0;
  background: linear-gradient(135deg, #1a1f3a 0%, #16213e 100%);
    padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
   z-index: 1000;
}  

.navbar-container {
  max-width: 1200px;
   margin: 0 auto;
  padding  :       0 20px;
  display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
  flex-shrink     :     0;
}

.navbar-logo {

		 height: 40px;
    width: auto;

}

.menu-toggle {
    display: none;
      flex-direction     :   column;
   background: none;
    border: none;
   cursor  :  pointer;
   padding: 5px;
}

.hamburger-line
	{

    width   :       25px;
    height: 3px;
    background-color: #fff;
	margin: 5px 0;
  transition    :        all 0.3s ease; 
	

}

.nav-menu {
       display     :    flex; 
  list-style: none; 
    gap: 2rem;}

.nav-item {

          margin: 0;

	}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
		transition  :  color 0.3s ease;
    position  : relative;
}

.nav-link::after {
  content: '';
   position   :absolute;
   width: 0;
      height  :    2px;
  bottom: -5px;
    left: 0;
  background: linear-gradient(90deg, #00d4ff, #0099ff);
                    transition: width 0.3s ease;
}

.nav-link:hover::after {
   width: 100%;
}

.nav-link:hover {

	  color     :        #00d4ff;



}

.hero-section {
   max-width: 1200px;
          margin: 0 auto;
   padding: 60px 20px;
    display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 40px;
   align-items: center; 

}

.hero-content {
	z-index: 2;
}

.hero-content h1 {
          font-size   :    3rem;
         font-weight: 800;
     color: #1a1f3a;
      margin-bottom: 1.5rem;
       line-height: 1.2;
}

.hero-subtitle
{
	font-size: 1.1rem;
      color: #555;
 margin-bottom: 2rem;
  line-height: 1.8;
}

.cta-button {

		display: inline-block;
  background: linear-gradient(135deg, #0066ff, #0099ff);
    color: white;
  padding: 15px 40px;
    border-radius: 50px;
	text-decoration: none;
    font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
     }

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 102, 255, 0.5);
}

.hero-image {
    position: relative;
   border-radius: 20px;
  overflow :   hidden;
}

.hero-image img {
      width: 100%;

    height: auto;

    display: block;

  border-radius: 20px;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.offerings-grid {
  background: linear-gradient(180deg, #f0f4f9 0%, #e8ecf1 100%);
  padding: 80px 20px;
     }

.offerings-container {


   max-width: 1200px;
   margin: 0 auto;


}

.offerings-container h2 {
    font-size  :      2.5rem;
   color: #1a1f3a;
    margin-bottom: 3rem;
    text-align: center;
    font-weight :      700;
}

.offers-display {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.offer-card {
  background: white;
   border-radius   :    15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
	
}

.offer-card img {
  width: 100%;
  display: block;
   object-fit: cover;
   height: 220px;
}

.offer-card h3 {
    font-size: 1.3rem;
  color  :        #1a1f3a;
  padding: 20px 20px 10px;
 font-weight: 600;
}

.offer-card p {
    padding: 0 20px 20px;
    color: #666;
  font-size: 0.95rem;
   line-height: 1.6;
}

.benefits-section {

  max-width: 1200px;

	   margin: 0 auto;

	    padding: 80px 20px; 
	

}

.benefits-wrapper {
  text-align: center;
}

.benefits-wrapper h2 {
   font-weight: 700;
	 color: #1a1f3a;
  margin-bottom: 3rem;
    font-size: 2.5rem;
}

.benefits-list {
   display     :    grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.benefit-item {
    text-align: center;
   padding: 30px;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.05), rgba(0, 153, 255, 0.05));
   border-radius: 15px;
   border-left: 4px solid #0099ff;
   transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.1);


}

.benefit-item h3   {
      font-size: 1.3rem;

	     color: #1a1f3a;

	      margin-bottom: 1rem;

	  font-weight: 600;
}

.benefit-item p {
   color: #666;
   font-size: 0.95rem;
     line-height: 1.6;
}

.cta-section {

  background: linear-gradient(135deg, #0066ff, #0099ff);
  padding:  60px 20px;
  text-align: center;
	}

.cta-wrapper	{
  max-width: 800px;
   margin: 0 auto;
}

.cta-wrapper h2 {
    font-size: 2.5rem;
      color   :white;
  margin-bottom: 1.5rem;
         font-weight: 700;
}

.cta-wrapper p
	{
   font-size     :        1.1rem;
  color: rgba(255, 255, 255, 0.95);
        margin-bottom: 2rem;
  line-height: 1.8;
}

.cta-button-large {
    display: inline-block;
  background: white;
  color: #0066ff;
  padding: 16px 45px;
				 border-radius: 50px;
	text-decoration: none;
   font-weight: 700;
    transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.contact-section {
  max-width: 1200px;
  margin   :  0 auto;
					padding: 80px 20px;
}

.contact-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.contact-wrapper h2 {
   font-size: 2.5rem;
  color: #1a1f3a;
  margin-bottom    :  3rem;
  text-align: center;
  font-weight: 700;
}

.contact-form {


  background: linear-gradient(135deg, rgba(0, 102, 255, 0.05), rgba(0, 153, 255, 0.05));
  padding: 40px;
   border-radius: 20px;
  border: 2px solid rgba(0, 102, 255, 0.1);


}

.form-group {
  margin-bottom    :        25px;
} 

.form-group label {
	    display: block;
    margin-bottom: 8px;
    font-weight: 600;
					color: #1a1f3a;
   font-size: 0.95rem;
     }

.form-group input,
.form-group select,
.form-group textarea {
	   width: 100%;
  padding   : 12px 15px;
    border: 2px solid #ddd;
               border-radius    :    8px;
               font-size: 0.95rem;
               font-family: inherit;
  transition :     all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline : none;
   border-color: #0099ff;
  box-shadow: 0 0 0 3px rgba(0, 153, 255, 0.1); 
	
}

.form-group textarea {
          resize: vertical;
    min-height: 120px;
}

.submit-button {

	    width: 100%;
    padding: 14px;
  background: linear-gradient(135deg, #0066ff, #0099ff);
	 color: white;
    border: none;
  border-radius: 8px;
         font-size    :     1rem;
        font-weight: 700;
  cursor: pointer;
   transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);

}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 102, 255, 0.5);
}

.footer-section {
  background: linear-gradient(135deg, #1a1f3a 0%, #16213e 100%);
      color :white;
  padding: 60px 20px 30px;
}

.footer-container {
  max-width: 1200px;
   margin    :      0 auto;
  display: grid;
    grid-template-columns   :       1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo-block {
   grid-column: 1;
}

.footer-logo {
   height: 35px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom :1.5rem;
   font-weight: 600; 

}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
} 

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
	transition: color 0.3s ease;
}

.footer-links a:hover {
   color   :     #00d4ff;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.8);
 font-size   :       0.95rem;
    line-height: 1.8;


}

.footer-hours {
    font-size: 0.85rem;
   margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
    max-width: 1200px;
	margin    :   0 auto;
	 text-align: center;
    padding-top   :  30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
   font-size: 0.9rem;
}@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #1a1f3a 0%, #16213e 100%);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-item {
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-link::after {
        display: none;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 30px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .offerings-container h2 {
        font-size: 2rem;
    }

    .offers-display {
        grid-template-columns: 1fr;
    }

    .benefits-wrapper h2 {
        font-size: 2rem;
    }

    .benefits-list {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .cta-wrapper h2 {
        font-size: 2rem;
    }

    .contact-wrapper h2 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 25px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-logo-block {
        grid-column: 1;
    }

    .footer-bottom {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .offerings-container h2 {
        font-size: 1.5rem;
    }

    .offer-card img {
        height: 180px;
    }

    .benefits-wrapper h2 {
        font-size: 1.5rem;
    }

    .cta-wrapper h2 {
        font-size: 1.5rem;
    }

    .cta-wrapper p {
        font-size: 1rem;
    }

    .contact-wrapper h2 {
        font-size: 1.5rem;
    }
}.services-hero {

  background: linear-gradient(135deg, #0066ff 0%, #0099ff 100%);
	color: white;
   padding:   80px 20px;
  text-align: center;
    margin-top    :        60px; 


}

.services-hero-content h1 
 {


    font-size: 3rem;
  font-weight: 800;
  margin-bottom  :       1rem;
 line-height: 1.2;

}

.services-hero-content p {
  font-size    :  1.2rem;
            max-width: 700px;
      margin: 0 auto;
     opacity  :    0.95;
       line-height: 1.8;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
   padding: 80px 20px;
}

.services-container {
   display: flex;
   flex-direction: column;
  gap: 80px;
}

.service-block {
    display   :   grid;
   grid-template-columns: 1fr 1fr;
    gap: 50px;
   align-items     :       center;
}

.service-block.reversed {

	   direction: rtl;

}

.service-block.reversed > * {

	   direction: ltr;
	}

.service-image-wrapper {
   position    :        relative;
          border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.service-image-wrapper img {
  width: 100%;
   height: auto;
          display: block;
  border-radius  :    15px;
}


.service-content h2 {
   font-size: 2rem;
    color    : #1a1f3a;
    margin-bottom: 1.5rem;
  font-weight: 700;
}

.service-content > p:first-of-type {
    font-size: 1rem;
    color    :      #666;
  margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-content h3 {
   color: #1a1f3a;
   font-size: 1.2rem;
   font-weight: 600;
  margin: 1.5rem 0 1rem 0;


}

.service-features
	{
   list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li

{
	 padding    :     8px 0;
    color: #666;
                    font-size: 0.95rem;
   position: relative;
  padding-left: 25px;
}

.service-features li::before 
 {
	  content: '✓';
         position: absolute;
     left    :      0;
                    color    :     #0099ff;
    font-weight: bold;
   font-size: 1.2rem;
}

.service-duration {
          font-size: 0.95rem; 
  color: #555; 
  margin: 1rem 0;
}

.service-group {
	font-size: 0.95rem;
    color   :      #555;
    margin-bottom     :   1.5rem; 
	
}

.service-cta {
  display: inline-block;
  background: linear-gradient(135deg, #0066ff, #0099ff);
   color: white;
  padding    : 12px 30px;
     border-radius     :50px;
         text-decoration: none;
  font-weight: 600;
   transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
    font-size: 0.95rem;
}

.service-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 102, 255, 0.5);
}

.services-formats		{
  background: linear-gradient(180deg, #f0f4f9 0%, #e8ecf1 100%);
  padding: 80px 20px;
}

.formats-container
	{
          max-width: 1200px;
    margin: 0 auto;
}

.formats-container h2{

	 font-size: 2.5rem;
    color: #1a1f3a;
   margin-bottom    :        3rem;
   text-align: center;
   font-weight: 700;
}



.formats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	 gap: 30px;
}

.format-card 
 {


	 background     :  white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
	}



.format-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);


}

.format-card h3 {
  font-size: 1.3rem;
    color: #1a1f3a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.format-card p {
    line-height: 1.6;
    color: #666;
   font-size: 0.95rem;
	
}

.services-process {
    max-width: 1200px;
         margin: 0 auto;
   padding  : 80px 20px;
}

.process-container h2 {
   font-size: 2.5rem;
  color    :        #1a1f3a;
    margin-bottom: 3rem;
  text-align   :  center;
   font-weight: 700;

}

.process-steps
	{
   display  :  grid; 
	  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
		gap: 30px;
}

.step {

   text-align: center;
    padding: 30px;

}

.step-number {
  width: 60px;
   height: 60px;
  background: linear-gradient(135deg, #0066ff, #0099ff);
   color    :      white;
	 border-radius: 50%;
  display   : flex;
  align-items: center;
    justify-content: center;
  font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
   font-size: 1.2rem;
   color: #1a1f3a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.step p {
  color: #666;
       font-size: 0.95rem;
          line-height: 1.6;
}

.services-pricing-preview {
  background: linear-gradient(135deg, #1a1f3a 0%, #16213e 100%);
   padding: 80px 20px;
	text-align    :     center;
    color: white;
}

.pricing-container {
   max-width: 800px;
		 margin: 0 auto;
}

.pricing-container h2 {
         font-size: 2.5rem;
  margin-bottom     :      1.5rem;
  font-weight: 700;
}

.pricing-container p {
	   font-size: 1.1rem;
  margin-bottom: 2rem;
	opacity   :  0.95;
   line-height: 1.8;

}

.pricing-cta {
   display: inline-block;

  background: linear-gradient(135deg, #0066ff, #0099ff);

    color: white;

   padding: 15px 40px;

	 border-radius  :        50px;

    text-decoration: none;

    font-weight: 600;

    transition: all 0.3s ease;

  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.pricing-cta:hover{
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 102, 255, 0.5);
}

.thankyou-section {
    max-width: 1200px;
    margin: 0 auto;
  padding  :       100px 20px;
    text-align: center;
  min-height: 60vh;
  display: flex;
		align-items  :      center;
}

.thankyou-container {
   width: 100%;
}

.thankyou-content {
   max-width: 700px;
	margin: 0 auto;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.05), rgba(0, 153, 255, 0.05));
  padding: 60px 40px;
    border-radius: 20px;
  border: 2px solid rgba(0, 102, 255, 0.1);
}

.thankyou-icon {
    width: 100px;
    height: 100px;
                    margin: 0 auto 2rem;
}

.thankyou-icon svg {
    height: 100%;
   animation: scaleIn 0.6s ease-out;
  width     :      100%;
}  @keyframes scaleIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-content h1 {
  font-size: 3rem;
    color: #1a1f3a;
	margin-bottom: 1rem;
    font-weight: 800;
}

.thankyou-main {
    color: #0099ff;
  font-size: 1.3rem;
    font-weight: 600;
		margin-bottom    :        2rem;
}

.thankyou-message {
  background: white;
        padding: 25px;
      border-radius: 12px;
  margin-bottom: 2rem;
}

.thankyou-message p {
    color: #666;
 font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.thankyou-message p:last-child   {
    margin-bottom     :   0;
}

.thankyou-next-steps
{
   background: white;
     padding: 25px;
            border-radius :     12px;
       margin-bottom: 2rem;
     text-align: left; 
	
}

.thankyou-next-steps h2  
  {
  font-size: 1.3rem;
      color: #1a1f3a;
    margin-bottom: 1.5rem;
        font-weight: 600;
  text-align    :     center;
}

.thankyou-next-steps ul   {
  list-style: none;
  display: flex;
   flex-direction   :column;
  gap: 1rem;
}

.thankyou-next-steps li {
    color: #666;
    font-size: 0.95rem;
  padding-left: 25px;
	position: relative;
}



.thankyou-next-steps li::before {
  content: '→';
   position: absolute;
  left :      0;
  color     :  #0099ff;
    font-weight   :      bold;
}

.thankyou-actions {
               display: flex;
      flex-direction: column;
  gap: 15px;
}

.thankyou-btn
{
	  display: inline-block;
  padding: 14px 30px;
    border-radius: 50px;
    text-decoration   :      none;
    font-weight: 600;
    transition    :  all 0.3s ease;
  font-size: 0.95rem;
	}

.thankyou-btn.primary {
  background: linear-gradient(135deg, #0066ff, #0099ff);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);


}

.thankyou-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 102, 255, 0.5);
}



.thankyou-btn.secondary

{
    background :       white;
   color: #0099ff;
   border: 2px solid #0099ff;
}

.thankyou-btn.secondary:hover {
  background: #0099ff;
  color: white;
}

.contact-info-section {
  background: linear-gradient(180deg, #f0f4f9 0%, #e8ecf1 100%);
   padding: 80px 20px;
}

.contact-info-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-container h2 {
			font-size: 2.5rem;
    color: #1a1f3a;
		margin-bottom: 3rem;
   text-align: center;
	 font-weight: 700;
}


.contact-methods {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap :        30px;
}

.contact-method {
  background: white;
    padding     :        30px;
    border-radius:   15px;
    text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}  

.contact-method:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);

}

.contact-method h3 {
    font-size     :1.2rem;
     color: #1a1f3a;
      margin-bottom: 1rem;
   	font-weight: 600;
}

.contact-method p {
   color: #666;
  font-size: 0.95rem;
  line-height   :       1.8;
}

.contact-hours    {
  font-size: 0.85rem;
   color    :   #999;
  margin-top  :   0.5rem;
}

@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .services-hero-content p {
        font-size: 1rem;
    }

    .service-block {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-block.reversed {
        direction: ltr;
    }

    .service-content h2 {
        font-size: 1.5rem;
    }

    .formats-container h2 {
        font-size: 2rem;
    }

    .process-container h2 {
        font-size: 2rem;
    }

    .pricing-container h2 {
        font-size: 2rem;
    }

    .thankyou-content {
        padding: 40px 25px;
    }

    .thankyou-content h1 {
        font-size: 2rem;
    }

    .thankyou-main {
        font-size: 1.1rem;
    }

    .contact-info-container h2 {
        font-size: 2rem;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .thankyou-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 1.5rem;
    }

    .services-hero {
        padding: 50px 20px;
    }

    .services-detailed {
        padding: 40px 20px;
    }

    .service-content h2 {
        font-size: 1.2rem;
    }

    .service-features li {
        padding-left: 20px;
    }

    .thankyou-section {
        padding: 60px 20px;
    }

    .thankyou-content {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .thankyou-content h1 {
        font-size: 1.5rem;
    }

    .thankyou-icon {
        width: 80px;
        height: 80px;
    }
}.policy-section   {
    padding: 80px 2rem;
  background: linear-gradient(180deg, #f8f9fa 0%, #f0f4f9 100%);
   min-height: 70vh;
    margin-top :    60px;
}

.policy-container {
    max-width:     900px;
  margin: 0 auto;
    text-align: left;
        background: white;
    padding: 50px;
  border-radius     : 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.policy-container h1
	{
   font-size: 2.8rem;
  color: #1a1f3a;
   margin-bottom: 2rem;
  font-weight     :  800;
  border-bottom: 3px solid linear-gradient(90deg, #0066ff, #0099ff);
                    padding-bottom: 1rem;
}

.policy-container h2 {
          position: relative;

    color: #1a1f3a;

  font-size: 1.8rem;

  padding-left    :  20px;

   margin-top: 2.5rem;

   font-weight: 700;

  margin-bottom: 1.5rem;
}

.policy-container h2::before {

	  content: '';
       position: absolute;
       left: 0;
             top: 0;
   	bottom: 0;
       width: 4px;
     background: linear-gradient(180deg, #0066ff, #0099ff);
       border-radius: 2px;

}

.policy-container p {
   text-align: justify;
   color: #555;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.policy-container p:last-child{
  margin-bottom: 0;
}@media (max-width: 768px) {
    .policy-section {
        padding: 60px 1rem;
        margin-top: 50px;
    }

    .policy-container {
        padding: 30px;
        border-radius: 10px;
    }

    .policy-container h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policy-container h2 {
        font-size: 1.3rem;
        margin-top: 1.8rem;
        margin-bottom: 1rem;
    }

    .policy-container p {
        font-size: 0.95rem;
        line-height: 1.7;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 40px 1rem;
    }

    .policy-container {
        padding: 20px;
        border-radius: 8px;
    }

    .policy-container h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .policy-container h2 {
        font-size: 1.1rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policy-container p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
}