* {
	   margin: 0;
    padding: 0;
		 box-sizing: border-box;
	
     }

html, body {
   width: 100%;
   height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; 
       line-height: 1.6; 
   color  :       #2c3e50; 
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;

    line-height: 1.3;

  margin-bottom: 1rem;

   color  :   #1a252f;
}

h1 {
    font-size: 3.5rem;
   letter-spacing: -0.02em;
}

h2 {


	font-size: 2.5rem; 
	  letter-spacing: -0.01em;
     }

h3 {
    font-size: 1.5rem;
}

h4     {
    font-size: 1.2rem;
}

p    {
   margin-bottom: 1rem;
   font-size: 1rem;
}

a

{
          color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover

{
    color: #764ba2;
}


ul, ol {
    list-style: none;
}

img

{

 display: block;
        height: auto;
    max-width: 100%; 
	
}

button {
  border: none;
   cursor: pointer;
	font-family: inherit;
}

form, input, textarea, select {
          font-family: inherit;
}

.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(0, 0, 0, 0.1);
}

.nav-container {
					max-width   :    1200px;
  margin: 0 auto;
   padding   :  0 2rem;
         display: flex;
   justify-content: space-between;
   align-items: center;
}


.nav-logo {
               flex-shrink: 0;

}



.logo-img {
	    width: auto;
	height:       45px;

}

.nav-menu {
    display: flex;

         gap: 2.5rem;

   align-items: center;
}


.nav-link   {
               color: #ffffff;
	font-weight: 500;
  font-size  :        1rem;
  transition: opacity 0.3s ease;
}

.nav-link:hover  
  {
    opacity: 0.8;
}

.burger-menu 
 {
    display: none;
      flex-direction: column;
   gap: 0.5rem;
    background: transparent;
       padding: 0.5rem;
}

.burger-line {
   width: 25px;
   height: 3px;
               background-color: #ffffff;
  transition: all 0.3s ease;
                    border-radius: 2px;
}

.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.burger-menu.active .burger-line:nth-child(2)     {


   opacity: 0;

}

.burger-menu.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(10px, -10px);
}

.hero-section {
    display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
   align-items: center;
  max-width: 1200px;
  margin: 0 auto;
   padding: 4rem 2rem;
                    min-height: 600px;
}

.hero-content h1 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   background-clip :    text;
  margin-bottom: 1.5rem;
}

.hero-subtitle


{
    font-size: 1.2rem;
   color: #5a6c7d;
    margin-bottom: 2rem;
}

.cta-button {
          display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
     padding: 0.9rem 2rem;
   border-radius: 50px;
    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 {
	border-radius: 15px;
    overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.hero-image img {
          width: 100%;
   	 height     : 100%;
                  object-fit: cover;
}

.services-preview {
   background-color: #f8f9fa;
  padding :   4rem 2rem;
    max-width: 1200px;
  margin: 0 auto;
	
}

.services-preview h2 {

	    margin-bottom: 3rem;
  text-align: center;}

.services-grid {
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
}

.service-card {
   background: #ffffff;
   padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
} 

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.service-icon-placeholder {
  width: 50px;
   height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
   display: flex;
  align-items: center;
        justify-content :center;
  border-radius: 10px;
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
  margin-bottom: 0.8rem;
  color: #1a252f;

}

.service-card p {
      color: #5a6c7d;
               font-size: 0.95rem;
}

.visualization-section {
  max-width: 1200px;
  margin: 0 auto;
    padding: 4rem 2rem;
}

.viz-container {
    display: grid;
  grid-template-columns :  1fr 1fr;
    gap: 3rem;
  align-items: center; 

}

.viz-image {
   border-radius: 15px;
    overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.viz-image img {
    width: 100%;
   height: 100%;
   object-fit: cover;
}

.viz-content h2 {
  margin-bottom: 1.5rem;
}

.viz-content p {
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    font-size: 1.05rem; 
	
}

.viz-features{
   list-style: none;
}  

.viz-features li {
       padding: 0.8rem 0;
	 padding-left :     2rem;
    position: relative;
    color  : #2c3e50;
}

.viz-features li:before {
	  content: "✓";
   position: absolute;
   left: 0;
  color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;


}

.gallery-section {
  background-color: #f8f9fa;
               padding :   4rem 2rem;
   max-width   :    1200px;
   margin: 0 auto;
}

.gallery-section h2 {
  text-align: center;
  margin-bottom     : 3rem;
}

.gallery-grid {


   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap  :      2rem;


}

.gallery-item		{
    border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
    height     :  280px;
    object-fit: cover;
    display :   block;
}

.gallery-item figcaption {
    background: #ffffff; 
    padding: 1.2rem; 
    text-align: center; 
   font-weight    :   500; 
               color  :    #2c3e50;
}

.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 4rem 2rem;
   text-align  :      center;
   color :      #ffffff;
} 

.cta-wrapper {
	 max-width   : 700px;
    margin   :0 auto;
}

.cta-section h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-section p   {
  color: rgba(255, 255, 255, 0.95);
	 font-size: 1.1rem;
    margin-bottom   :     2rem;
}

.cta-button-large {
   display: inline-block; 
  background-color: #ffffff; 
   color: #667eea; 
   padding: 1rem 2.5rem; 
                    border-radius: 50px; 
   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(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background-color: #f0f0f0;
}

.contact-section {
	 max-width: 700px;
    margin: 0 auto;
  padding     :   4rem 2rem;
}

.contact-section h2 {
   text-align: center;
                    margin-bottom:  2.5rem;
}



.contact-form {
	  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
   padding: 2.5rem;
    border-radius: 15px;
  border: 1px solid rgba(102, 126, 234, 0.1);
	}

.form-group {
   margin-bottom: 1.5rem;
}

.form-group label {
               display     :     block;
   margin-bottom: 0.6rem;
   font-weight: 600;
                    color :#1a252f;
}

.form-group input,
.form-group select,
.form-group textarea {

	                    width:    100%;
    padding: 0.9rem;
    border :     1px solid #d0d8e0;
   border-radius: 8px;
   font-size: 1rem;
   transition: border-color 0.3s ease, box-shadow 0.3s ease;
   background-color:    #ffffff;


}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
          outline: none;
    border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}  

.form-group textarea {

          resize: vertical;
    font-family: inherit;}

.form-submit {
	width: 100%;
  padding :        1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: #ffffff;
                    font-weight: 700;
     font-size     :  1rem;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.form-submit:hover	{
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.footer {
   background-color: #1a252f;
      color  :       #e0e6ed;
      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: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-content {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
   margin-bottom: 2rem;
	padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column h4 {
    color: #ffffff;
          margin-bottom: 1rem;
 font-size: 1rem;
}

.footer-links {
 list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #a8b4c4;
	 transition: color 0.3s ease;
}

.footer-links a:hover {
         color: #667eea;
	
}

.footer-address {
 color    :      #a8b4c4;
   font-size: 0.95rem;
          line-height: 1.6;
}

.footer-phone {
    margin-top: 0.8rem;
	
}


.footer-phone a {
	font-weight: 600;
   color: #667eea;
}

.footer-bottom {
  text-align : center;
    padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #7a8492;
	font-size: 0.9rem;
}@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: block;
        padding: 1rem;
    }

    .burger-menu {
        display: flex;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 2rem 2rem;
        min-height: auto;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .viz-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .footer-address {
        font-size: 0.85rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 3rem 2rem;
	color: #ffffff;
    text-align    :    center;
    min-height: 300px;
   display: flex;
  align-items: center;
    justify-content:   center;
}

.services-hero-content {
   max-width: 800px;
}

.services-hero h1 {
	color: #ffffff;
	 margin-bottom: 1rem;
    font-size: 3rem;
}

.services-hero-subtitle {
  color: rgba(255, 255, 255, 0.95); 
	   font-size  :      1.2rem; 
	   margin: 0;
}

.services-container {
     max-width: 1200px;
	margin: 0 auto;
   padding :4rem 2rem;
}

.service-item {
   display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 3rem;
   align-items  :        center;
   margin-bottom: 4rem;
}

.service-item-reverse


{
      direction: rtl;

}

.service-item-reverse > * {
    direction: ltr;
}

.service-item-image {
   border-radius: 15px;
   overflow   :       hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
       height: 100%;
    min-height  :350px;
}

.service-item-image img {
  width: 100%; 
    height:     100%; 
   object-fit: cover;
}

.service-item-content h2 {
    font-size: 2rem;
                    color: #1a252f;
  margin-bottom    :  1.5rem;
}

.service-description {
  color: #5a6c7d;
  font-size: 1.05rem;
   margin-bottom: 1.5rem;
  line-height     :     1.8;
}

.service-features

{
  margin-bottom: 1.5rem;
	list-style: none;
}  

.service-features li {
    padding: 0.6rem 0;
  padding-left: 2rem;
  position: relative;
   color: #2c3e50;
    font-size: 0.95rem;
}

.service-features li:before {
  content: "✓";
  position: absolute;
     left: 0;
  color: #667eea;
   font-weight: bold;
	font-size: 1.2rem;
}

.service-price {

   font-weight: 600;
   color: #667eea;
  font-size: 1.1rem;
               margin: 0;
}

.pricing-section {
    background-color: #f8f9fa;
   padding: 4rem 2rem;
   max-width: 1200px;
   margin: 0 auto;
}

.pricing-section h2 {
  text-align: center;

	  margin-bottom: 3rem;
}


.pricing-grid  {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
}

.pricing-card {
    background: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.pricing-card:hover	{
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.pricing-card-featured
	{
    border: 2px solid #667eea;
     transform: scale(1.05);
}

.pricing-card-featured:hover {
     transform: scale(1.05) translateY(-5px);
	}

.pricing-badge {

    position: absolute;
  top: -15px;
	left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
    padding: 0.4rem 1.2rem;
	border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
	}

.pricing-card h3 {
               color  :        #1a252f;
    margin-bottom    : 0.5rem;
    font-size    :       1.5rem;


}

.pricing-highlight {
  color: #667eea;
    font-size: 0.95rem;
     margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none; 
		margin-bottom: 2rem; 
	  text-align: left; 

}

.pricing-features li {

	    padding: 0.8rem 0;
    color: #5a6c7d;
               border-bottom: 1px solid #e8ecf1;
     }

.pricing-features li:last-child {
    border-bottom: none;
}


.pricing-footer {
   font-weight: 600;
  color :       #667eea;
  padding-top: 1.5rem;
}

.process-section {
    max-width: 1200px;
  margin  :   0 auto;
    padding   :    4rem 2rem;
}

.process-section h2 {

	    text-align: center;
   margin-bottom: 3rem;
     }

.process-steps {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 2rem;
}

.step {
  text-align: center; 
   padding: 2rem; 
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%); 
    border-radius    :    12px; 
   transition: transform 0.3s ease;
}

.step:hover {
     transform: translateY(-5px);
     }

.step-number {
		width: 60px;

	   height     :      60px;

	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

	    color: #ffffff;

	   display: flex;

	    align-items: center;

	    justify-content: center;

	  border-radius :     50%;

		font-weight: 700;

	 font-size: 1.5rem;

	    margin: 0 auto 1.5rem;
} 

.step h3 {
  color: #1a252f;
    margin-bottom: 0.8rem;
}

.step p {
    color: #5a6c7d;
  font-size   :0.95rem;
}

.cta-section-services {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

  padding: 4rem 2rem;

    text-align: center;

       color: #ffffff;

   margin-top     :   2rem;
}

.cta-section-services h2 {
  color: #ffffff;
   margin-bottom: 1rem;
}

.cta-section-services p		{
  color: rgba(255, 255, 255, 0.95);

  font-size: 1.1rem;

    max-width: 600px;

  margin: 0 auto 2rem;
}

.thankyou-section {
   min-height   : 70vh;
    display: flex;
   align-items: center;
	justify-content    :center;
   padding: 2rem;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);

}

.thankyou-container {
  background: #ffffff;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    text-align: center; 
	
}

.thankyou-success-icon {
   width: 80px;
    height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
   display: flex;
    align-items: center;
  justify-content: center;
	border-radius: 50%;
  font-size: 3rem;
   margin  :   0 auto 1.5rem;
                    font-weight: bold; 
	
}

.thankyou-container h1 
 {
  color     :       #1a252f;
  margin-bottom: 0.5rem;
}

.thankyou-subtitle {
   color: #667eea;
  font-size: 1.1rem;
    margin-bottom: 2rem;
}

.thankyou-details {
    background-color: #f8f9fa;
    padding: 2rem;
      border-radius: 12px;
   margin-bottom: 2rem;
}

.detail-item {
   display: flex;
  justify-content: space-between;
  align-items: center;
   gap:      1rem;
	 color: #2c3e50;
}

.detail-label {
  font-weight: 600;
}

.detail-value {
    color: #667eea;
  font-weight  :      500;
}

.thankyou-message {
      text-align: left;
   padding    :  2rem 0;
   border-top: 1px solid #e8ecf1;
        border-bottom: 1px solid #e8ecf1;
    margin-bottom: 2rem;
}  

.thankyou-message p {
    color: #5a6c7d;
     margin-bottom: 1rem;
   line-height: 1.8;
	}

.thankyou-next-steps {
   margin-bottom: 2rem;
}

.thankyou-next-steps h3 {
  color: #1a252f;
    margin-bottom: 1rem;
}

.next-steps-list {
        list-style: none;
   text-align: left;
} 

.next-steps-list li {
  padding: 0.8rem 0; 
	   padding-left     : 2rem; 
	                    position: relative; 
	   color:#2c3e50;


}

.next-steps-list li:before {
  content: "→";
  position   :absolute;
    left: 0;
   color: #667eea;
  font-weight     :bold;
}

.thankyou-actions {
  display  :      flex;
      flex-direction: column;
     gap: 1rem;
	}

.thankyou-button {

	  display: inline-block;
               padding    :        0.9rem 2rem;
	 border-radius: 8px;
	font-weight: 600;
  text-align: center;
    transition: all 0.3s ease;
               text-decoration: none;} 

.thankyou-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: #ffffff;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.thankyou-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.thankyou-button.secondary {
  background: transparent;
  color: #667eea;
    border: 2px solid #667eea;
     box-shadow: none;
}

.thankyou-button.secondary:hover {
  background: rgba(102, 126, 234, 0.05);

}

.cta-additional {
    background-color: #f8f9fa;
         padding: 3rem 2rem;
   text-align: center;
   max-width: 800px;
    margin: 2rem auto;
   border-radius: 15px;
}

.cta-additional h2 {
   margin-bottom: 1rem;
}

.cta-additional p {
	color: #5a6c7d;
	margin-bottom: 1.5rem;
}@media (max-width: 1024px) {
    .service-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-item-reverse {
        direction: ltr;
    }

    .pricing-card-featured {
        transform: scale(1);
    }

    .pricing-card-featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2rem;
    }

    .service-item-content h2 {
        font-size: 1.5rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-container {
        padding: 2rem;
    }

    .thankyou-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .services-hero h1 {
        font-size: 1.5rem;
    }

    .service-item-image {
        min-height: 250px;
    }

    .service-features li,
    .next-steps-list li {
        font-size: 0.9rem;
    }

    .detail-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .thankyou-container {
        padding: 1.5rem;
    }

    .thankyou-success-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}.policy-section


{
   padding: 80px 2rem;
    background: #f8f9fa;
    min-height: 70vh;
}

.policy-container {
    max-width: 800px;
   margin: 0 auto;
    text-align  :left;
}

.policy-container h1 {
   font-size: 3rem;
   color: #1a252f;
  margin-bottom: 2rem;
	 font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-clip: text;
}

.policy-container h2 {
  font-size: 2rem;
    color: #1a252f;
    margin-top: 2.5rem;
   margin-bottom   :1.5rem;
    font-weight   :  700;
  border-bottom: 2px solid rgba(102, 126, 234, 0.2);
    padding-bottom: 0.8rem;
}

.policy-container h3 {
    font-size: 1.3rem;
    color    :      #2c3e50;
	 margin-top:   1.5rem;
   margin-bottom: 0.8rem;
    font-weight: 600;
}

.policy-container p {
  color: #5a6c7d;
  margin-bottom: 1.5rem;
 line-height   :1.9;
    font-size: 1.05rem;
}

.policy-container > :first-child {
   margin-top: 0;
}@media (max-width: 1024px) {
    .policy-container h1 {
        font-size: 2.5rem;
    }

    .policy-container h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .policy-section {
        padding: 60px 1rem;
    }

    .policy-container h1 {
        font-size: 2rem;
    }

    .policy-container h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
    }

    .policy-container p {
        font-size: 1rem;
        line-height: 1.8;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 40px 1rem;
    }

    .policy-container h1 {
        font-size: 1.5rem;
    }

    .policy-container h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
    }

    .policy-container h3 {
        font-size: 1.1rem;
    }

    .policy-container p {
        font-size: 0.95rem;
    }
}