* 
 {
    margin: 0;
	padding: 0;
   box-sizing: border-box;
     }

:root {
    --primary-blue: #0f52ba;
    --accent-purple: #6c2e9f;
    --light-gray: #f8f9fb;
    --dark-gray: #2c3e50;
    --border-light: #e1e8ed;
    --text-primary: #1a1a1a;
    --text-secondary: #555555;
    --transition-speed: 0.3s;
}

html {
		scroll-behavior     :       smooth;



}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text-primary);
    background-color :        #ffffff;
   line-height: 1.6;
}

a {
   text-decoration: none;
    color   : inherit;
}

.navbar {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-purple) 100%);
   padding  :    1rem 0;
    position: sticky;
      top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px 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-wrapper {
    display: flex;
   justify-content: space-between;
  align-items: center;
    width: 100%;
}

.logo-section {
       flex-shrink :        0;
}

.logo-img {
     height: 45px;
    width: auto;
  filter: brightness(0) invert(1);
     }

.nav-menu {
    display    :    flex;
  list-style     :        none;
    gap: 2rem;
  align-items: center;
	
}

.nav-menu a {
   color     :  #ffffff;
   font-size: 1rem;
   font-weight: 500;
  transition: opacity var(--transition-speed);
	
}

.nav-menu a:hover {
   opacity: 0.8;
}

.cta-link {
	  background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
  transition: all var(--transition-speed);
} 

.cta-link:hover   {
  background: rgba(255, 255, 255, 0.3);
}

.burger-menu {
   display :none;
   flex-direction: column;
    background: none;
    border: none;
	 cursor: pointer;
  gap: 5px;
}

.burger-menu span {


  width: 25px;
  height: 3px;
 background: #ffffff;
    border-radius: 2px;
  transition: all var(--transition-speed);

}



.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
             opacity: 0;

}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.hero-section {

	   align-items:    center;
    padding: 4rem 2rem;
   display  : grid;
    margin    :    0 auto;
	gap: 3rem;
  grid-template-columns:1fr 1fr;
  max-width    :  1200px;
     }

.hero-content h1 {
  font-size: 3rem;
   line-height   :  1.2;
   margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.hero-subtitle {
 font-size: 1.1rem;
	  color: var(--text-secondary);
	  margin-bottom: 2rem;
	   line-height: 1.8;
}

.btn-primary {
             display: inline-block;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-purple) 100%);
    color: #ffffff;
               padding: 0.9rem 2rem;
  border-radius: 6px;
         font-weight :     600;
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
  box-shadow: 0 4px 15px rgba(15, 82, 186, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 82, 186, 0.4);
}

.hero-image {
   position: relative;
}


.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.intro-section {
  background: var(--light-gray);
    padding: 4rem 2rem;
}

.intro-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
   margin: 0 auto;
}

.intro-card 
 {


    background: #ffffff;
   padding: 2.5rem;
    border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--primary-blue);
  transition: all var(--transition-speed);}

.intro-card:hover {

	  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);}

.card-number {

		font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-purple);
    margin-bottom: 1rem;
    opacity : 0.3;


}

.intro-card h3
	{
  font-size :      1.3rem;
   margin-bottom: 1rem;
  color: var(--text-primary);
}

.intro-card p {
  color: var(--text-secondary);
  line-height: 1.7;

}

.services-showcase {
    max-width: 1200px;
    margin: 0 auto;
  padding: 4rem 2rem;
}

.services-showcase h2 {
  font-size: 2.5rem;
    text-align: center;
  margin-bottom: 4rem;
  color: var(--text-primary);
}

.services-wrapper {
  display: flex;
  flex-direction: column;
   gap    :   3rem;
}

.service-block{
    display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.service-block.reversed {
    direction: rtl;
}

.service-block.reversed .service-content {
		direction: ltr;
}

.service-block img {
	width: 100%;
  height: auto;
   border-radius  :       10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
	
}

.service-content h3	{
    font-size: 1.8rem;

   margin-bottom: 1rem;

  color: var(--text-primary);
}

.service-content p {
  font-size: 1rem;

  color: var(--text-secondary);

    line-height: 1.8;
}

.cta-consultation {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-purple) 100%);
          padding: 4rem 2rem;
    text-align: center;
    color   :#ffffff;
}

.cta-inner {
  max-width :       800px;
   margin: 0 auto;
}

.cta-consultation h2 {
  font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-consultation p {
  font-size: 1.1rem;
      margin-bottom   :  2rem;
   opacity: 0.95;
   line-height: 1.7;
}

.btn-secondary {
	display: inline-block; 
   background: #ffffff; 
  color: var(--primary-blue); 
   padding: 0.9rem 2.5rem; 
          border-radius: 6px; 
   font-weight: 600; 
  transition: transform var(--transition-speed), box-shadow var(--transition-speed); 
    font-size  :  1rem;
}



.btn-secondary:hover

{
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.contact-section {
    max-width: 700px;
      margin: 0 auto;
   	 padding: 4rem 2rem;
}

.contact-section h2 {
    font-size: 2rem;
    text-align: center;
   margin-bottom: 3rem;
  color: var(--text-primary);
}

.contact-form {
  background: var(--light-gray);
   padding    :  3rem;
  border-radius     :        10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
     }

.form-group {
    margin-bottom: 1.5rem;


}


.form-group label {
    display: block;
  font-weight: 600;
   margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
	 padding: 0.8rem 1rem;
  border: 1px solid var(--border-light);
	border-radius: 6px;
    font-size: 1rem;
   font-family: inherit;
  transition: border-color var(--transition-speed), box-shadow var(--transition-speed);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	    outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(15, 82, 186, 0.1); 
	


}

.form-group textarea {
  resize     :vertical;
}

.btn-submit {
  width: 100%;
   padding: 1rem;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-purple) 100%);
    color: #ffffff;
   border: none;
  border-radius: 6px;
  font-size: 1rem;
    font-weight: 600;
  cursor: pointer;
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);


}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 82, 186, 0.4);
     }

.footer-section {
  background: var(--dark-gray);
    color: #ffffff;
	padding     :      4rem 2rem 1rem;
}

.footer-content		{

    display:        grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
          gap: 3rem;
  max-width: 1200px;
    margin     :    0 auto;
    margin-bottom: 3rem;
}

.footer-col h4 {
    font-size: 1.1rem;
   margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-logo {
   height: 40px;
  margin-bottom: 1rem;
    width     :   auto;
}  

.footer-desc 
 {
        font-size: 0.95rem;
    line-height: 1.6;
   opacity: 0.8;
}

.footer-col ul {
       list-style: none;}

.footer-col ul li {
   margin-bottom  :  0.8rem;
     }

.footer-col a{
   opacity: 0.8;
  transition: opacity var(--transition-speed);
}

.footer-col a:hover {


  opacity: 1;


}

.footer-col p {
                    font-size: 0.95rem;
    line-height    :      1.7;
   opacity: 0.8;}

.footer-bottom 
 {


	text-align  :        center;
   padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
  font-size: 0.9rem;


}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-purple) 100%);
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition-speed);
    }

    .nav-menu.active {
        max-height: 300px;
        padding: 1rem 0;
    }

    .nav-menu li a {
        display: block;
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .service-block {
        grid-template-columns: 1fr;
    }

    .service-block.reversed {
        direction: ltr;
    }

    .contact-form {
        padding: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .intro-grid {
        grid-template-columns: 1fr;
    }

    .services-showcase h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .btn-primary, .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .services-showcase {
        padding: 2rem 1rem;
    }

    .service-content h3 {
        font-size: 1.3rem;
    }

    .cta-consultation h2 {
        font-size: 1.5rem;
    }

    .contact-section {
        padding: 2rem 1rem;
    }
}.services-hero {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-purple) 100%);
     color: #ffffff;
       padding: 3rem 2rem;
       text-align :        center;
}

.services-hero-content h1 {
   font-size: 2.8rem;
   margin-bottom: 1rem;
}

.services-hero-content p {
  opacity:  0.95;
	  font-size: 1.2rem;
}

.services-detailed {
    max-width: 1200px;
	margin: 0 auto;
    padding:        4rem 2rem;
	
}

.service-item {
  margin-bottom: 4rem;
  background: var(--light-gray);
  border-radius   :12px;
    overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all var(--transition-speed);
}


.service-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.service-header {
  background: #ffffff;
    padding: 2rem;
	 display: flex;
    justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--border-light);

}

.service-header h2 {
  font-size: 1.8rem;
  color: var(--text-primary);
  margin: 0;
}

.service-badge {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-purple) 100%); 
		 color: #ffffff; 
	   padding: 0.4rem 1rem; 
	    border-radius: 20px; 
	     font-size: 0.8rem; 
	    font-weight   :      600; 
		 text-transform: uppercase;
	
}

.service-body {
  display: grid; 
	   grid-template-columns: 1fr 1fr; 
	  gap: 2rem; 
	  padding: 2rem;
}

.service-img {
  height   :auto;
  border-radius: 8px;
   width: 100%;
  object-fit   :       cover;
}

.service-description h3   {
  font-size: 1.3rem;
    margin-bottom: 1rem;
  color: var(--text-primary);
}

.service-description p {
  color: var(--text-secondary);
     line-height: 1.8;
    margin-bottom    :        1.5rem;
}

.service-features {
      display: grid;
    grid-template-columns: 1fr;
  gap: 1rem;
}

.feature {
   background   :    #ffffff;
  padding: 1rem;
  border-left: 3px solid var(--primary-blue);
  border-radius: 4px;
}

.feature-label {
  font-weight: 600;
  color: var(--text-primary);
  display: block;
  margin-bottom: 0.3rem;
}

.feature p {
  font-size: 0.9rem; 
	  color: var(--text-secondary); 
	   margin:       0;
}

.comparison-section {
    max-width: 1200px;
  margin: 0 auto;
   padding: 4rem 2rem;
  background: var(--light-gray);
    border-radius: 12px;
  margin-bottom: 2rem;
}

.comparison-section h2 {
  text-align: center;
    margin-bottom: 2rem;
		 font-size: 2rem;
  color: var(--text-primary);
}

.comparison-table {


  display: grid;
     gap: 0;
   background   :       #ffffff;
    border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); 
	
}

.table-header {
	  display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 0;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-purple) 100%);
	color: #ffffff;
	font-weight: 600;
	}

.table-header .table-col {


               padding: 1.2rem;
  text-align   :      center;
     }

.table-header .table-col:first-child 
 {
    text-align: left;
}

.table-row {

	  display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border-light);
	
	}

.table-row:last-child {
  border-bottom     :        none;
}

.table-col {
	  padding: 1.2rem;
       text-align: center;
  color: var(--text-secondary);
	}

.table-col.table-label {
          font-weight: 600;
  color: var(--text-primary);
  text-align: left;
}

.table-col.check {
  color: #2ecc71;
    font-weight: 600;
  font-size: 1.2rem;
}

.faq-section {
	max-width  :    900px;
   margin: 0 auto;
               padding: 4rem 2rem;
}

.faq-section h2 {
 text-align: center;
    font-size: 2rem;
  margin-bottom   :       3rem;
  color: var(--text-primary);
}

.faq-container {


   gap: 1rem;
   flex-direction: column;
   display: flex;

}

.faq-item {
  background: var(--light-gray);
      border-radius: 8px;
   overflow: hidden;
  border-left: 4px solid var(--primary-blue);
}

.faq-question {

	    display: flex;
	justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  background: #ffffff;
  transition: all var(--transition-speed);
	 user-select: none;

}

.faq-question:hover  
  {
  background: var(--light-gray);
}

.faq-question span {
    font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.faq-icon		{

	    width: 20px;
  height: 20px;
  stroke: var(--primary-blue);
       fill   :      none;
    stroke-width: 2;
  transition: transform var(--transition-speed);
	 margin-left: 1rem;}

.faq-question.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer   {
  max-height: 0;
   overflow: hidden;
  transition: max-height var(--transition-speed);
  background: var(--light-gray);
}

.faq-answer.active
{
    padding: 1.5rem;
   max-height: 500px;
}

.faq-answer p	{
  color: var(--text-secondary);
   line-height: 1.7;
  margin: 0; 

}

.cta-services {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-purple) 100%);
    color: #ffffff;
  padding: 3rem 2rem;
   text-align: center;
  border-radius: 12px;
	margin: 0 2rem 4rem;
}

.cta-services h2 {
   font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-services p {


  font-size: 1.1rem;
  margin-bottom: 2rem;
      opacity: 0.95;
     }

.thankyou-section {
  min-height: 80vh;
                    display: flex;
   align-items: center;
    justify-content: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(15, 82, 186, 0.05) 0%, rgba(108, 46, 159, 0.05) 100%);
}

.thankyou-container
	{
       background: #ffffff; 
	    padding: 3rem 2rem; 
	    border-radius: 12px; 
	  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); 
	    max-width: 800px; 
		width: 100%; 
	  text-align: center;
     }

.thankyou-success {
    margin-bottom :2rem;
}

.success-icon {
  width: 80px;
	       height: 80px;
	                    margin: 0 auto;
	   animation: scaleIn 0.6s ease;
}@keyframes scaleIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-container h1 {
   font-size: 2.5rem;

	  color: #2ecc71;

	    margin-bottom: 0.5rem;
}

.thankyou-subtitle {
   font-size: 1.2rem;

  color: var(--text-secondary);

	 margin-bottom: 2rem;

}

.thankyou-message {

	  background: var(--light-gray);
	padding:        2rem;
   border-radius: 8px;
  margin-bottom: 2rem;
  border-left: 4px solid #2ecc71; 



}

.thankyou-message p   {
  color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
	
}

.thankyou-message strong {
  color: var(--text-primary);
}

.thankyou-info-grid {
            display   : grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
    margin: 2rem 0;}

.info-card {
  background: var(--light-gray);

          padding: 1.5rem;

   border-radius   :       8px;

  border-top: 3px solid var(--primary-blue);
}

.info-icon
	{
    height: 40px;

	  margin-bottom: 1rem;

		justify-content     : center;

		 display: flex;

	  align-items    :       center;


}

.info-icon img {
    width: 30px;
   height: 30px;
  stroke: var(--primary-blue);
}

.info-card h3 {
         font-size: 1rem;
  color: var(--text-primary);
   margin-bottom:     0.5rem;


}

.info-card p   {
     font-size: 0.9rem;
  color: var(--text-secondary);
    margin: 0;
}

.next-steps {
  background: linear-gradient(135deg, rgba(15, 82, 186, 0.1) 0%, rgba(108, 46, 159, 0.1) 100%);
    padding: 2rem;
  border-radius: 8px;
	 margin: 2rem 0;
}



.next-steps h2 {
  color: var(--text-primary);
   margin-bottom: 1.5rem;
}

.steps-list

{
  list-style: none;
    counter-reset :    step-counter;
               text-align: left;
}



.steps-list li	{
  counter-increment  :   step-counter; 
    margin-bottom   :1rem; 
       padding-left: 2.5rem; 
  position: relative; 
  color: var(--text-secondary); 
 line-height: 1.6;
}

.steps-list li:before {
  content: counter(step-counter);
   position: absolute;
  left: 0;
  top :        0;
  background: var(--primary-blue);
  color: #ffffff;
   width: 25px;
   height: 25px;
 border-radius: 50%;
   display: flex;
    align-items: center;
    justify-content :  center;
   font-size: 0.85rem;
    font-weight: 600;
} 

.faq-quick
	{
    background: #ffffff;
  padding: 2rem;
    border-radius: 8px;
  border-left: 4px solid var(--primary-blue);
   text-align :      left;
    margin: 2rem 0;
	
}

.faq-quick h3 {
  color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.faq-quick p {
  color: var(--text-secondary);
  line-height: 1.7;
        margin-bottom: 1rem; 

}

.faq-quick strong {
  color: var(--text-primary);
}

.faq-quick a {
  color: var(--primary-blue);
	text-decoration: none;
       font-weight: 600;
}

.faq-quick a:hover {
    text-decoration: underline;
}

.action-buttons {
  display: grid; 
   grid-template-columns: 1fr 1fr; 
	gap  : 1rem; 
    margin-top:    2rem;
}

.action-buttons .btn-primary,
.action-buttons .btn-secondary
	{
  margin: 0;
    font-size: 1rem;
}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 1.8rem;
    }

    .service-body {
        grid-template-columns: 1fr;
    }

    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .table-col {
        text-align: left;
    }

    .table-col.table-label:before {
        content: attr(data-label);
        font-weight: 600;
        display: block;
        margin-bottom: 0.5rem;
    }

    .thankyou-container {
        padding: 2rem 1rem;
    }

    .thankyou-container h1 {
        font-size: 1.8rem;
    }

    .action-buttons {
        grid-template-columns: 1fr;
    }

    .faq-quick {
        text-align: center;
    }

    .steps-list li {
        text-align: center;
        padding-left: 0;
        margin-bottom: 1.5rem;
    }

    .steps-list li:before {
        display: block;
        margin-bottom: 0.5rem;
    }

    .comparison-section {
        margin: 2rem 0;
    }
}

@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 1.5rem;
    }

    .service-header h2 {
        font-size: 1.3rem;
    }

    .service-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
    }

    .service-body {
        padding: 1rem;
    }

    .thankyou-info-grid {
        grid-template-columns: 1fr;
    }

    .info-icon {
        height: 30px;
    }

    .info-icon img {
        width: 25px;
        height: 25px;
    }

    .next-steps {
        padding: 1rem;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-icon {
        width: 18px;
        height: 18px;
    }
}.policy-section {
  padding: 4rem 2rem;
  background: var(--light-gray);
    min-height : 70vh;
}

.policy-container {
  max-width: 900px;
	margin: 0 auto;
	background: #ffffff;
    padding: 3rem;
    border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.policy-container h1 {
       font-size:     2.8rem;
  color: var(--text-primary);
   margin-bottom: 2rem;
   font-weight: 700;
  border-bottom: 3px solid var(--primary-blue);
    padding-bottom: 1rem;
     }

.policy-content {
	   text-align: left;}

.policy-container h2 {
    font-size: 1.6rem; 
  color: var(--text-primary); 
  margin-top: 2rem; 
  margin-bottom: 1rem; 
   font-weight: 600;
}

.policy-container h2:first-of-type {

	  margin-top: 0;
	}

.policy-container p {
  color: var(--text-secondary);
	 margin-bottom: 1.2rem;
    line-height: 1.8;
  font-size     :   1rem;
}  

.policy-container strong

{
  color: var(--text-primary); 
         font-weight: 600; 
	
}

.policy-container a {
  color: var(--primary-blue);
    text-decoration: none;
   font-weight: 500;
  transition: opacity var(--transition-speed);
}

.policy-container a:hover {
    opacity: 0.8;
    text-decoration: underline;

}@media (max-width: 768px) {
    .policy-section {
        padding: 2rem 1rem;
        min-height: auto;
    }

    .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.95rem;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 1.5rem 1rem;
    }

    .policy-container {
        padding: 1.5rem 1rem;
    }

    .policy-container h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .policy-container h2 {
        font-size: 1.1rem;
        margin-top: 1rem;
    }

    .policy-container p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
}