* {
    margin    :     0;
	padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a3a52;
    --accent-color: #2d5a7b;
    --highlight-color: #e67e22;
    --light-bg: #f8fafc;
    --dark-text: #1a1a1a;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
}

html  {
  scroll-behavior: smooth;
}

body    {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height     :1.6;
  color: var(--dark-text);
    background-color    :        #ffffff;
}

.main-navigation {
  background-color: var(--primary-color);
                    position: sticky;
  top     :   0;
    z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}


.nav-container {
   max-width: 1200px;
   margin  :  0 auto;
    padding: 1rem 2rem;
   display: flex;
  justify-content: space-between;
   align-items: center;
}

.logo-section {

  display: flex;
	align-items: center; 
	


}

.logo-image   {
    height   : 50px;
    width    :       auto;
}

.nav-menu {
  display: flex;
               gap: 2.5rem;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight   :      500;
    transition: color 0.3s ease;
       font-size: 1rem;
}

.nav-link:hover{
  color: var(--highlight-color);
}

.burger-menu {
         display     :   none;
	    background: none;
	   border: none;
	        cursor: pointer;
	   flex-direction: column;
	  gap: 0.35rem;
     }



.burger-line {

	  width: 25px;
  height: 3px;
 background-color: #ffffff;
        transition: all 0.3s ease;


}

.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(7px, -7px);
}

.hero-section {

	 display: grid;
	grid-template-columns: 1fr 1fr;
  gap: 3rem;
   max-width: 1200px;
  margin: 0 auto;
    padding: 4rem 2rem;
       align-items: center;}

.hero-content h1 {
   font-size: 2.8rem;
  color: var(--primary-color);
   margin-bottom :   1.5rem;
   line-height: 1.2;
	
}

.hero-subtitle {
    margin-bottom: 2rem;
    color: #555555;
   font-size: 1.2rem;
}

.cta-button {
       display: inline-block;
  background-color: var(--highlight-color);
  color    : white;
  padding: 0.9rem 2rem;
    border-radius: 4px;
	text-decoration: none;
   font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
        cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-2px);
       background-color: #d46d0c;
} 

.hero-visual img {
   width: 100%;
      height : auto;
	border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.introduction-section {
     background-color: var(--light-bg);
     padding: 3rem 2rem;
      margin: 2rem 0;
	}


.intro-wrapper {
    max-width: 900px;
  margin: 0 auto;
}

.introduction-section h2 {
   font-size: 2rem;
  color: var(--primary-color);
   margin-bottom:1.5rem;
}

.introduction-section p {
  font-size: 1.05rem;
  color: #333333;
   margin-bottom: 1.2rem;
   line-height: 1.8;
}

.services-overview {
   max-width: 1200px;
  margin: 3rem auto;
          padding     :     0 2rem;
}



.services-overview h2 {
     font-size: 2rem;
  color: var(--primary-color);
   text-align: center;
   margin-bottom: 2.5rem;
}

.services-grid {

  display  :   grid; 
	  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
	   gap: 2rem;


}

.service-card {
   background    :white;
  border-radius: 8px;
   overflow: hidden;
  box-shadow: 0 4px 12px 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 20px rgba(0, 0, 0, 0.15);}

.service-card img {
   width: 100%;
  height: 220px;
   object-fit: cover;
}

.service-card h3 {
  font-size: 1.4rem;
  color: var(--primary-color);
      padding: 1.5rem 1.5rem 0.5rem;
}

.service-card p {
      color: #666666;
  padding     : 0 1.5rem 1.5rem;
	font-size: 0.95rem;
   line-height: 1.7;}

.skills-section {
  background-color: var(--light-bg);
   padding  : 3rem 2rem;
  margin     : 3rem 0;
}

.skills-section h2 {
    text-align:   center;
	font-size     :  2rem;
  color: var(--primary-color);
  margin-bottom: 2.5rem;
}

.skills-container {
   max-width: 1100px;
   margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.skill-item {

	    background:   white;
   padding: 2rem;
	 border-radius: 6px;
    text-align: center;
  border-top: 4px solid var(--highlight-color);


}

.skill-icon 
 {
  margin-bottom    :       1rem;
    height: 60px;
    display: flex;
  justify-content: center;
	align-items: center;
}

.skill-icon img {
  width: 50px;

     height: 50px;

  filter: drop-shadow(0 2px 4px rgba(230, 126, 34, 0.3));


}


.skill-item h3 {


  color: var(--primary-color);
    font-size    :    1.2rem;
    margin-bottom: 0.8rem;
     }

.skill-item p {
  color: #666666;
    font-size: 0.95rem;
  line-height: 1.6;
}

.problem-solving-section {
	 max-width: 1200px;
	margin: 3rem auto;
   padding: 0 2rem;
}

.problem-solving-section h2 {
       font-size:       2rem;
  color: var(--primary-color);
    text-align: center;
  margin-bottom: 2.5rem;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap   :       2rem;
}

.approach-card {
   background: white;
   border-radius  :    8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
   transition: transform 0.3s ease;
}

.approach-card:hover {
  transform: scale(1.02);
}

.approach-card img {
  width: 100%;
      height: 250px;
   object-fit: cover; 
	
	}

.approach-card h3 {
    font-size: 1.3rem;

  color: var(--primary-color);

  padding    :1.5rem 1.5rem 0.5rem;
}

.approach-card p {
  color: #666666;
    padding: 0 1.5rem 1.5rem;
	 font-size: 0.95rem;
  line-height  :   1.7;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
 color: white;
  padding: 3.5rem 2rem;
  text-align   :        center;
  margin: 3rem 0;
}

.cta-content h2 {
    font-size   : 2rem;
    margin-bottom: 1rem;
}

.cta-content p {

  font-size   :     1.1rem;
  margin-bottom: 2rem;
    opacity    :0.95;

}

.cta-button-large {

  display: inline-block;
  background-color: var(--highlight-color);
   color   :white;
    padding: 1rem 2.5rem;
       border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
  font-size: 1.05rem;
  transition     :     background-color 0.3s ease, transform 0.2s ease;
	}

.cta-button-large:hover {
   background-color: #d46d0c;
  transform: scale(1.05);
}

.contact-section {
    max-width: 800px;
    margin    :     3rem auto;
    padding  :    0 2rem;
}

.contact-section h2 {
    font-size: 2rem;
  color: var(--primary-color);
    text-align: center;
  margin-bottom   :    2rem;
}

.contact-wrapper {
  background: var(--light-bg);
    padding: 2rem;
  border-radius: 8px;
}

.contact-form {
  display: flex;
	 flex-direction  :   column;
  gap: 1.5rem;
}

.form-group {
		 display: flex;
	flex-direction: column;}  

.form-group label	{
                    font-weight     :     600;
  color: var(--primary-color);
    margin-bottom    :   0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
   padding: 0.85rem;
  border: 1px solid var(--border-color);
	border-radius    :        4px;
    font-family: inherit;
         font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
      outline: none;
  border-color: var(--highlight-color);
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);

}  

.submit-button {
  background-color: var(--highlight-color);
    color: white;
    padding: 1rem;
    border: none;
         border-radius: 4px;
   font-weight: 600;
   font-size: 1rem;
    cursor: pointer;
	transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-button:hover {
	background-color: #d46d0c;
  transform: translateY(-2px);
}

.site-footer {
  background-color: var(--primary-color);
    color: #ffffff;
   padding   :      3rem 2rem 1.5rem;
	 margin-top: 3rem; 

}

.footer-container {
  max-width:    1200px;
     margin: 0 auto;
  display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 2rem;
   margin-bottom   :2rem;
}

.footer-brand {
  display   :     flex;
               align-items: flex-start;

}

.footer-logo {
               height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
}


.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h3 {
       font-size: 1.1rem;
  margin-bottom : 1rem;
  color: var(--highlight-color);

}

.footer-section ul 
 {
  list-style: none;
}

.footer-section ul li {
   margin-bottom: 0.7rem;
}

.footer-section a {
   color: #e0e0e0;
   text-decoration: none;
 transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--highlight-color);


}

.footer-section p {
   font-size: 0.95rem;
    line-height: 1.6;
   margin-bottom: 1rem;
}

.address, .phone {
		 color:    #d0d0d0;
}

.footer-bottom {
  text-align: center;
    padding-top    :   1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: #b0b0b0;
       font-size: 0.9rem;
}@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 1.5rem 0;
        gap: 1rem;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .nav-menu.active {
        left: 0;
    }

    .burger-menu {
        display: flex;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .skills-container {
        grid-template-columns: 1fr;
    }

    .approach-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .introduction-section h2,
    .services-overview h2,
    .problem-solving-section h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .logo-image {
        height: 40px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .cta-button,
    .cta-button-large {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .service-card img,
    .approach-card img {
        height: 180px;
    }

    .cta-content p {
        font-size: 0.95rem;
    }
}.services-hero {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
	 color: white;
    padding: 4rem 2rem;
   text-align: center;
  margin-bottom   :3rem;
}

.services-hero h1 {
       font-size: 2.5rem;
     margin-bottom: 1rem;
}

.services-hero p {
  font-size :        1.2rem;
	opacity: 0.95;
} 

.services-main {
   max-width: 1200px;

   margin: 0 auto;

   padding: 0 2rem;
}

.services-intro {
    text-align: center;
  margin-bottom: 3rem;
}

.services-intro h2 
 {
	font-size: 2rem;
  color: var(--primary-color);
	 margin-bottom: 1rem;
}

.services-intro p {
  font-size: 1.05rem;
  color: #666666;
   max-width: 700px;
   margin: 0 auto;
}

.service-detailed {
    display: flex;
    flex-direction: column;
  gap: 3rem;
   margin-bottom: 3rem;
}

.service-detail-item    {
	display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
    align-items: center;
}

.service-detail-item.reverse {
  direction: rtl;
}

.service-detail-item.reverse > * {
  direction: ltr; 

}

.detail-image {


   overflow   :      hidden;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
     }

.detail-image img {
   width: 100%;
   height: auto;
               display: block;
}



.detail-content h3 {
   font-size: 1.8rem;
  color: var(--primary-color);
   margin-bottom: 1rem;
}

.detail-content p{
   color: #555555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;


}

.detail-content h4{


    font-size    :       1.1rem;
  color: var(--primary-color);
   margin-top: 1.5rem;
     margin-bottom: 0.8rem;}

.feature-list    {
	list-style: none;
    padding: 0;
    margin-bottom    :1.5rem;
}

.feature-list li {
    padding :    0.6rem 0 0.6rem 1.8rem;
  position: relative;
  color: #555555;
	line-height: 1.6;
}

.feature-list li:before {

  content: "✓";
  position: absolute;
               left: 0;
  color: var(--highlight-color);
    font-weight: bold;
    font-size: 1.2rem;
	
}



.duration
	{
       font-size: 0.95rem;
  color: var(--accent-color);
    font-weight: 500; 

}

.pricing-comparison {
  background-color: var(--light-bg);
  padding: 3rem 2rem;
    margin: 3rem 0;
}

.pricing-comparison h2
	{
   text-align: center;
   font-size: 2rem;
  color: var(--primary-color);
    margin-bottom     :2.5rem;
}

.pricing-table {
   max-width: 1100px;
  margin: 0 auto;
}

.services-table {
   width: 100%;
  border-collapse: collapse;
   background: white;
   border-radius:  8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.services-table thead {
  background-color: var(--primary-color);
  color: white;
}

.services-table th {
   padding: 1.2rem;
   text-align: left;
   font-weight :        600;
  font-size: 0.95rem;
}

.services-table td {
   padding    : 1.2rem;
  border-bottom: 1px solid var(--border-color);
  color: #555555;
}

.services-table tbody tr:hover {

  background-color: rgba(230, 126, 34, 0.05);
     }

.process-section {
   max-width: 1200px;
   margin:       3rem auto;
    padding: 0 2rem;
}

.process-section h2     {
       text-align: center;
  font-size: 2rem;
  color: var(--primary-color);
   margin-bottom: 2.5rem;
     }

.process-steps {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.process-step {
    background: white;
   padding: 2rem;
	border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
   position: relative;
}

.step-number  
  {
       width: 60px;
    height: 60px;
  background: var(--highlight-color);
  color: white;
    border-radius: 50%;
  display: flex;
	align-items: center;
  justify-content: center;
 font-size: 1.8rem;
    font-weight: bold;
  margin: 0 auto 1rem;
}

.process-step h3 {
  color: var(--primary-color);
    font-size: 1.2rem;
 margin-bottom: 0.8rem;
}

.process-step p {
	color: #666666;
          font-size: 0.95rem;
       line-height: 1.6; 
	
}

.cta-services {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding     :3rem 2rem;
   text-align: center;
   border-radius: 8px;
   max-width: 1200px;
    margin: 3rem auto;
}

.cta-services h2 {

	    font-size: 2rem; 
	    margin-bottom:        1rem;}

.cta-services p {
   margin-bottom: 2rem;
     opacity: 0.95;
   font-size: 1.1rem;
}

.thank-you-section {
    max-width:   900px;
    margin     :    3rem auto;
    padding: 0 2rem;
}

.thank-you-container {
  background: white;
	padding: 3rem;
   border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
   text-align: center;
}

.success-icon {


    margin-bottom :        1.5rem;
   height   :  80px;
   display: flex;
   justify-content: center;
  align-items: center;}

.success-icon img{


    width: 80px;
  height    :        80px;
  filter: drop-shadow(0 4px 8px rgba(39, 174, 96, 0.3));
}

.thank-you-container h1 {
   font-size: 2.5rem;
  color: var(--success-color);
  margin-bottom: 0.5rem;
}

.thank-you-message     {
   font-size: 1.3rem;
	color: #555555;
    margin-bottom: 2rem; 
	
}

.confirmation-details {
  text-align: left;
  background-color: var(--light-bg);
 padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.confirmation-details p {
    color:        #666666;
   font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.next-steps {


    margin  :  2rem 0;

}

.next-steps h2 {
	font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
   text-align: left;
}

.steps-list {
   padding-left: 2rem;
   margin-bottom: 1.5rem;
    list-style: decimal;
}

.steps-list li {
  color: #555555;
	margin-bottom: 0.8rem;
  line-height  :      1.6;
}

.contact-info-card {

     background :white;
  padding: 1.5rem;
  border-left: 4px solid var(--highlight-color);
    margin-top: 1.5rem;
  text-align     :left;

}

.contact-info-card h3 {
  color: var(--primary-color);
  font-size: 1.1rem;
    margin-bottom: 1rem;
} 

.contact-info-card p {
  color: #666666;
         margin-bottom: 0.5rem;
}


.contact-phone, .contact-address {
  color: var(--accent-color);
   font-weight    : 500;
}

.action-buttons {
	justify-content: center;
  gap     :      1rem;
  margin-top     :      2rem;
    flex-wrap: wrap;
   display: flex;
}

.button-primary,
.button-secondary {
       padding: 0.9rem 2rem;
	 border-radius: 4px;
   text-decoration: none;
    font-weight: 600;
    transition    :     all 0.3s ease;
  display   :        inline-block;
	
}


.button-primary {
  background-color: var(--highlight-color);
  color :   white;
}

.button-primary:hover {
      background-color  :  #d46d0c;
  transform: translateY(-2px);
}


.button-secondary {
  background-color: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.button-secondary:hover {
  background-color: var(--primary-color);
  color    : white;
} 

.related-services {
  background-color: var(--light-bg);
  padding: 3rem 2rem; 
	
}

.related-services h2 {
  text-align: center;
    font-size: 2rem;
  color: var(--primary-color);
    margin-bottom   :       2rem;
}

.related-grid {
    max-width :       1100px;
      margin     :        0 auto;
     display   :     grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap:   2rem;
}

.related-card	{
  background:       white;
  padding:1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
   transition: transform 0.3s ease;
}

.related-card:hover


{


  -moz-transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);


}

.related-card h3 {
  color: var(--primary-color);
  font-size: 1.2rem;
          margin-bottom: 0.8rem; 

}

.related-card p {
  color: #666666;
	font-size: 0.95rem;
   line-height: 1.6;
   margin-bottom: 1rem;
	
}

.related-card a {
     color: var(--highlight-color);
  text-decoration: none;
   font-weight: 600;
  transition: color 0.3s ease;
}

.related-card a:hover {
	 color: #d46d0c;
	
}@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2rem;
    }

    .services-hero p {
        font-size: 1rem;
    }

    .service-detail-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-detail-item.reverse {
        direction: ltr;
    }

    .services-table {
        font-size: 0.85rem;
    }

    .services-table th,
    .services-table td {
        padding: 0.8rem 0.5rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .thank-you-container {
        padding: 2rem 1.5rem;
    }

    .thank-you-container h1 {
        font-size: 2rem;
    }

    .action-buttons {
        gap: 0.5rem;
    }

    .button-primary,
    .button-secondary {
        width: 100%;
        text-align: center;
    }

    .confirmation-details {
        text-align: center;
    }

    .contact-info-card {
        border-left: none;
        border-top: 4px solid var(--highlight-color);
    }

    .next-steps h2,
    .steps-list {
        text-align: left;
    }

    .cta-services h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 2rem 1rem;
    }

    .services-hero h1 {
        font-size: 1.5rem;
    }

    .services-intro h2 {
        font-size: 1.3rem;
    }

    .detail-content h3 {
        font-size: 1.3rem;
    }

    .thank-you-container {
        padding: 1.5rem 1rem;
    }

    .success-icon {
        height: 60px;
    }

    .success-icon img {
        width: 60px;
        height: 60px;
    }

    .services-table {
        font-size: 0.75rem;
    }

    .services-table th,
    .services-table td {
        padding: 0.6rem 0.3rem;
    }
}.policy-section {
  background-color: var(--light-bg);
	 padding: 3rem 2rem;
  min-height: calc(100vh - 200px);
}

.policy-container {
	 max-width     :      900px;
	 margin: 0 auto;
    background-color: white;
          padding: 3rem;
   border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.policy-container h1 {

	    font-size: 2.5rem;
  color: var(--primary-color);
   margin-bottom: 2rem;
  font-weight: 700;
  border-bottom: 3px solid var(--highlight-color);
  padding-bottom: 1rem;
	}

.policy-container h2 {
    font-size: 1.6rem;
  color: var(--primary-color);
   margin-top     :        2rem;
    margin-bottom: 1rem;
  font-weight     :600;
}



.policy-container p {

	    color: #555555;
    margin-bottom: 1.2rem;
   line-height: 1.8;
  font-size: 1rem;
  text-align: justify;
}

.policy-container p:first-letter {
	   font-size: 1.1em;

}@media (max-width: 768px) {
    .policy-section {
        padding: 2rem 1rem;
        min-height: calc(100vh - 150px);
    }

    .policy-container {
        padding: 2rem 1.5rem;
        border-radius: 6px;
    }

    .policy-container h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        padding-bottom: 0.8rem;
    }

    .policy-container h2 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policy-container p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 1.5rem 1rem;
    }

    .policy-container {
        padding: 1.5rem 1rem;
        border-radius: 4px;
    }

    .policy-container h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .policy-container h2 {
        font-size: 1.1rem;
        margin-top: 1.2rem;
        margin-bottom: 0.6rem;
    }

    .policy-container p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 0.8rem;
    }
}.policy-container {
	    animation: fadeIn 0.5s ease-in;


}@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}