* {
    margin: 0;
    padding: 0;
   box-sizing: border-box; 

}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
   color: #2c3e50;
   background-color: #ffffff;
}

.main-navigation {
     background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: fixed;
   width: 100%;
  top: 0;
    z-index: 1000;
	}

.nav-container   {
	    max-width   :      1200px;
	margin: 0 auto;
    display: flex;
  justify-content:space-between;
    align-items: center;
  padding: 1rem 2rem;


	}

.logo-section {
  display: flex; 
	  align-items: center; 
	    gap: 12px;
}

.company-logo
{
    height: 45px;
    width: auto;
  filter: brightness(0) invert(1); 

}

.brand-text {

   color: #ffffff;
    letter-spacing: -0.5px;
      font-size: 1.8rem;
    font-weight: 700;
	}

.desktop-menu {
    display : flex;
  gap: 2.5rem;
	
}

.nav-item {
	color :#ffffff;
    text-decoration: none;
    font-weight: 500;
   font-size: 1.1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-item:hover, .nav-item.active {
    color: #64b5f6;
}

.nav-item::after {
  content: '';
   position: absolute;
  width: 0;
  height: 2px;
    bottom: -5px;
    left: 0;
    background-color : #64b5f6;
         transition: width 0.3s ease;

}

.nav-item:hover::after, .nav-item.active::after {
   width: 100%;
}

.mobile-toggle   {
    display: none;
	    flex-direction: column;
	  cursor: pointer;
	    padding: 5px;
}

.burger-line {
   width: 25px;
  height: 3px;
   background-color: #ffffff;
	margin: 3px 0;
         transition: 0.3s;
}

.mobile-menu {
	    display: none;
    background: #1e3c72;
   padding: 1rem 2rem;

}



.mobile-nav-item {

       display: block;
   color: #ffffff;
  text-decoration: none;
	padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);


}

.hero-banner {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 140px 2rem 80px;
    color :      #ffffff;
}

.hero-content {
   max-width: 1200px;
  margin:     0 auto;
   display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 4rem;
       align-items: center;
}

.hero-text h1

{
   	 font-size: 3.2rem;
          font-weight: 800;
 line-height: 1.2;
   margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
   line-height: 1.7;
  color: rgba(255,255,255,0.9);
}

.hero-buttons {
    display: flex;
   gap: 1.5rem;
   flex-wrap   :   wrap;
}

.primary-btn, .secondary-btn {
                    padding: 15px 35px;
   text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
  transition: all 0.3s ease;
   display: inline-block;
}

.primary-btn {


  background: #ff6b6b;

    color: #ffffff;

  box-shadow: 0 8px 25px rgba(255,107,107,0.3);
	}

.primary-btn:hover {
  background: #ff5252; 
  transform: translateY(-2px); 
  box-shadow: 0 12px 35px rgba(255,107,107,0.4);
}

.secondary-btn {
   background : transparent;
	    color     :    #ffffff;
	   border   : 2px solid #ffffff;
}

.secondary-btn:hover {
    background :        #ffffff;
   color: #667eea;
  transform: translateY(-2px);
}

.hero-image img {
   width: 100%;
    height: 400px;
    object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.services-overview {
   padding: 100px 2rem;
   background: #f8f9fa;
}

.section-container {
   max-width: 1200px;
    margin: 0 auto;
}

.services-overview h2 {
   text-align: center;
       font-size: 2.8rem;
    margin-bottom: 3rem;
          color: #2c3e50;
    font-weight: 700;

}

.services-grid {


    display :   grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
     }

.service-card {
               background: #ffffff;
    border-radius   :    15px;
	 overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-card img {
    width: 100%;
    height: 220px;
	 object-fit: cover;
}

.service-card h3 {
  font-size :     1.5rem;
  margin: 1.5rem 1.5rem 1rem;
  color: #2c3e50;
   font-weight: 600;
}

.service-card p {
  padding: 0 1.5rem 1.5rem;

		color: #5a6c7d;

	    line-height: 1.6;
}

.expertise-showcase {
  padding :  100px 2rem; 
	  background: #ffffff;
}

.content-wrapper {
       display: grid;
	gap: 4rem;
    margin: 0 auto;
    max-width: 1200px;
  align-items: center;
   grid-template-columns: 1fr 1fr;

}

.expertise-text h2 {
  font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
			font-weight: 700;
}

.expertise-text p {
   margin-bottom: 2rem;
    line-height:1.7;
   color:       #5a6c7d;
  font-size: 1.2rem;
} 

.benefits-list {
     list-style: none;

}

.benefits-list li {
    padding: 0.8rem 0;
   color: #2c3e50;
  position: relative;
    padding-left: 2rem;
  font-size: 1.1rem;
}

.benefits-list li::before {
	  content: '✓';
  position: absolute;
    left: 0;
    color: #ff6b6b;
       font-weight: bold;
    font-size: 1.2rem;
	}

.expertise-visual img 
 {
  width: 100%;
  height: 400px;
  object-fit   :   cover;
    border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 2rem;
        text-align: center;
  color: #ffffff;
}

.cta-container {
    max-width: 800px;
  margin    : 0 auto;
}

.cta-content h2 {
  margin-bottom: 1.5rem;
    font-size: 2.8rem;
   font-weight: 700;
}

.cta-content p {
  font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
  color: rgba(255,255,255,0.9);
}

.cta-button {
  display: inline-block;
  background :    #ff6b6b;
               color: #ffffff;
  padding: 18px 40px;
		 text-decoration: none;
   border-radius: 50px;
   font-weight: 600;
   font-size: 1.2rem;
	 transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255,107,107,0.3);
}

.cta-button:hover {
     background: #ff5252;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255,107,107,0.4);

}

.contact-section     {
   padding: 100px 2rem;
   background: #f8f9fa;
}

.contact-container

{
   max-width: 800px;

  margin: 0 auto;

   text-align     :  center;
}

.contact-container h2
{
  color: #2c3e50;
  margin-bottom: 1rem;
    font-weight: 700;
  font-size :        2.8rem;
}

.contact-container > p{
   font-size: 1.2rem;
	 margin-bottom: 3rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-form {
    background: #ffffff;
   padding: 3rem;
    border-radius:        20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  text-align :        left;
	}

.form-row {
    display: grid;
    grid-template-columns     :        1fr 1fr;
   gap: 1.5rem;
	margin-bottom: 1.5rem;
}

.form-group {
   margin-bottom: 1.5rem;
}

.form-group label {

	  display: block;
     margin-bottom: 0.5rem;
      color: #2c3e50;
       font-weight :    600;
      font-size: 1.1rem;}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
               padding: 12px 15px;
   border: 2px solid #e0e6ed;
   border-radius: 10px;
    font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.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);
}

.submit-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color  : #ffffff;
  padding: 15px 40px;
	border: none;
   border-radius: 50px;
  font-size: 1.1rem;
    font-weight: 600;
	 cursor: pointer;
   transition: all 0.3s ease;
  width: 100%;
  box-shadow: 0 8px 25px rgba(102,126,234,0.3);
}

.submit-btn:hover 
 {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(102,126,234,0.4); 
	
}

.main-footer {
   color: #ffffff;
   background     :    #1a252f;
   padding: 60px 2rem 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
  display: grid;
    grid-template-columns: 2fr 1fr 1fr;
   gap: 3rem;
}

.footer-section h3 {


    margin-bottom: 1.5rem;
  color     :  #64b5f6;
    font-size: 1.3rem;
	font-weight: 600; 



}

.footer-logo

{
    height: 40px;
   width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
	
}

.company-info p {
	          color: #a0aec0;
   line-height: 1.6;
    margin-top     :   1rem;
}

.quick-links ul {
   list-style: none;
}

.quick-links li
	{

	  margin-bottom: 0.8rem;


}

.quick-links a {

  color: #a0aec0;
  text-decoration: none;
  transition: color 0.3s ease;
     }

.quick-links a:hover {

    color: #64b5f6;
	


}

.contact-item {
   margin-bottom: 1rem;
}

.contact-item p {
  color: #a0aec0;
    font-size: 1.1rem;
}

.footer-bottom {
    max-width: 1200px;
  margin: 2rem auto 0;
  padding-top   :   2rem;
    border-top: 1px solid #2d3748;
   text-align: center;
}

.footer-bottom p {
   color: #718096;
}@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-menu.active {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }

    .contact-container h2 {
        font-size: 2.2rem;
    }

    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .hero-banner {
        padding: 120px 1rem 60px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .primary-btn, .secondary-btn {
        width: 100%;
        text-align: center;
        max-width: 300px;
    }

    .services-overview, .expertise-showcase, .contact-section {
        padding: 60px 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}.about-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 140px 2rem 80px;
	 color: #ffffff;
    text-align:        center;
}

.about-hero-content h1 {

	    font-size: 3.5rem;
   font-weight: 800;
  margin-bottom :   1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);

}

.about-hero-subtitle
	{
  font-size: 1.4rem;
  color: rgba(255,255,255,0.9);
    max-width:  600px;
  margin: 0 auto;
}

.our-story {
  padding: 100px 2rem;
   background: #ffffff;
}


.story-container {
  max-width :1200px; 
    margin: 0 auto; 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 4rem; 
  align-items: center;
}

.story-text h2 {
       font-size: 2.8rem;
  margin-bottom: 2rem;
  font-weight   :   700;
   color: #2c3e50;
}

.story-text p {
  font-size   :       1.1rem;
		 line-height: 1.8;
   margin-bottom: 1.5rem;
    color: #5a6c7d;
}

.story-image img {
    width: 100%;
  height: 450px;
	 object-fit: cover;
   border-radius:15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.our-approach {
  padding: 100px 2rem;
			background: #f8f9fa;
}

.approach-container {
       max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.approach-container h2 {
  font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #2c3e50;
   font-weight: 700;
}

.approach-grid    {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.approach-item {
       background: #ffffff; 
  padding: 2.5rem 2rem; 
    border-radius: 15px; 
  box-shadow: 0 10px 30px rgba(0,0,0,0.08); 
    text-align: left; 
   transition: transform 0.3s ease, box-shadow 0.3s ease;


}

.approach-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
	
}

.approach-item h3 {
	 font-size: 1.4rem;
  color: #2c3e50;
  margin-bottom    :   1rem;
    font-weight: 600;
}

.approach-item p {
    color: #5a6c7d;
  line-height: 1.7;

}



.team-expertise {
    padding: 100px 2rem;
    background : #ffffff;
}

.expertise-container {
	grid-template-columns: 1fr 1fr;
    gap:   4rem;
	 margin: 0 auto;
  align-items: center;
    display: grid;
  max-width: 1200px;
}

.expertise-content h2 {
    font-size: 2.8rem;
   margin-bottom: 1.5rem;
  color: #2c3e50;
  font-weight: 700;
}

.expertise-content > p {
   font-size: 1.2rem;
   margin-bottom:    2.5rem;
   color     :       #5a6c7d;
  line-height: 1.7;
}

.expertise-areas {
    display: flex;
   flex-direction: column;
  gap: 2rem;
} 

.expertise-area h4 
 {
  font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
  font-weight: 600;
}

.expertise-area p {
  color: #5a6c7d;
  line-height: 1.6;
}

.expertise-visual img {
    width: 100%;
   height: 450px;
  object-fit: cover;
   border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.company-values {
  padding: 100px 2rem;
	background: #f8f9fa;
}

.values-container {
  max-width: 1200px;
    margin : 0 auto;
    text-align: center;
}

.values-container h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
  color: #2c3e50;
    font-weight: 700;
}

.values-grid {
        display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.value-card {
  background: #ffffff;
    padding: 3rem 2rem;
    border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: left;
   border-top: 4px solid #667eea;
}

.value-card h3 {
   font-size: 1.5rem;
  color: #2c3e50;
   margin-bottom   :        1.2rem;
    font-weight: 600;
}

.value-card p {
         color: #5a6c7d;
    font-size     :        1.1rem;
	line-height: 1.7;
}

.why-choose-us {
 padding: 100px 2rem;
   background:      #ffffff;
}

.why-container {
  max-width:        1200px;
   margin: 0 auto;
   display: grid;
  grid-template-columns: 1fr 1fr;
	 gap: 4rem;
  align-items: center;
}

.why-content h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
    color   :      #2c3e50;
    font-weight: 700;
}

.why-content > p {
    font-size     : 1.2rem;
        margin-bottom:        3rem;
  color: #5a6c7d;
	 line-height :        1.7;
}

.statistics {
  display     :        grid;
  grid-template-columns :       1fr 1fr;
    gap: 2rem;
}

.stat-item {

   text-align: center;
   padding: 1.5rem;
    background: #f8f9fa;
               border-radius: 15px; 

     }

.stat-number {
   	display: block;
  font-size: 2.5rem;
  font-weight  :   800;
  color: #667eea;
   margin-bottom     :       0.5rem;
     }

.stat-label {
  font-size: 1rem;
   color: #5a6c7d;
   font-weight: 500;
}

.why-visual img	{
                    width: 100%;
    height: 450px;
    object-fit: cover;
	border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.thankyou-hero  {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 140px 2rem 80px;
    min-height: 100vh;
	 display :    flex;
  align-items: center;
}

.thankyou-container

{
	max-width: 1200px;
   margin: 0 auto;
  display: grid;
   grid-template-columns: 2fr 1fr;
   gap: 4rem;
    align-items: start;
}

.thankyou-content {
    background  :     #ffffff;
      padding: 3rem;
      border-radius: 20px;
     box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.success-icon {
  text-align: center;
    margin-bottom: 2rem;
}

.checkmark {
       display: inline-block;
   width: 80px;
   height: 80px;
  background: linear-gradient(135deg, #4CAF50, #45a049);
  color: #ffffff;
   border-radius: 50%;
   font-size: 2.5rem;
    line-height: 80px;
  text-align: center;
   margin-bottom: 1rem;
  box-shadow: 0 10px 30px rgba(76,175,80,0.3);}

.thankyou-content h1 {

	 font-size: 2.8rem;
   color: #2c3e50;
    text-align: center;
   margin-bottom: 1rem;
  font-weight: 700;
	}

.thankyou-subtitle {
    text-align     :   center;
   font-size: 1.3rem;
   color     :     #5a6c7d;
  margin-bottom: 2rem;
	}

.thankyou-message {
      background: #f8f9fa;
  padding: 2rem;
	 border-radius: 15px;
   margin-bottom: 2.5rem;
    border-left: 4px solid #667eea;
}

.thankyou-message p {
   color: #5a6c7d;
   line-height   :1.7;
       margin: 0;
}

.next-steps h2 {
  font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
   font-weight: 600;

}

.steps-timeline {

	   margin-bottom: 2.5rem; 


}

.timeline-item {


     display  :        flex;
  align-items: flex-start;
    margin-bottom     :       2rem;
    gap: 1.5rem;
     }

.timeline-number   {
  background: linear-gradient(135deg, #667eea, #764ba2);
   color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius     :   50%;
    display: flex;
 align-items: center;
        justify-content:      center;
	 font-weight: 700;
	 flex-shrink : 0;
	margin-top: 0.2rem;
}


.timeline-content h3 {
    font-size: 1.3rem;
	color: #2c3e50;
  margin-bottom: 0.5rem;
  font-weight :      600;
}

.timeline-content p {
   color: #5a6c7d;
   line-height: 1.6;
   margin: 0;
}

.additional-info {
        margin-bottom :    2.5rem;
}

.additional-info h2 {


   font-size: 2rem;
  color:       #2c3e50;
   margin-bottom: 1rem;
  font-weight :  600;
	}

.additional-info > p {
   color: #5a6c7d;
    line-height: 1.7;
	margin-bottom: 1.5rem;
}

.preparation-tips {
   background: #f0f4f8;
   padding: 1.5rem;
  border-radius: 12px;
}

.tip-item h4    {
   color: #2c3e50;
   margin-bottom: 1rem;
    font-weight: 600;
}

.tip-item ul {
   margin-left: 1.5rem;
  color: #5a6c7d;
}

.tip-item li {
    margin-bottom: 0.5rem;
    line-height: 1.5;

}

.thankyou-actions {
         display: flex;
   gap:  1rem;
   justify-content: center;
   flex-wrap: wrap;
}

.primary-action-btn, .secondary-action-btn {
    padding: 12px 30px;
   text-decoration: none;
    border-radius  :   50px;
    font-weight: 600;
     transition: all 0.3s ease;
    display: inline-block;
}

.primary-action-btn {


  background: linear-gradient(135deg, #667eea, #764ba2);
	color :      #ffffff;
  box-shadow: 0 8px 25px rgba(102,126,234,0.3);
     }

.primary-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(102,126,234,0.4);
}

.secondary-action-btn {
    background: transparent;
 color  :        #667eea;
    border: 2px solid #667eea;
}

.secondary-action-btn:hover {
   background: #667eea;
    color: #ffffff;
  transform: translateY(-2px);
}

.thankyou-visual

{
    position  : sticky;
   top: 120px;
}

.thankyou-visual img {
    width: 100%;
    height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.emergency-contact {
  background  : #f8f9fa;
   padding: 60px 2rem;
}

.emergency-container {
   max-width: 800px;
  margin: 0 auto;
 text-align: center;
}

.emergency-container h2 {
  font-size: 2.2rem;
	color: #2c3e50;
  margin-bottom: 1rem;
         font-weight: 600;
}

.emergency-container > p {
  color: #5a6c7d;

    margin-bottom: 2rem;

   font-size: 1.1rem;
}

.emergency-info {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2rem;
    margin-top: 2rem;
}

.emergency-item {
   background: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: flex;
	 flex-direction: column;
   gap: 0.5rem;
}

.emergency-label
{
    font-weight: 600;
    color: #2c3e50;
}

.emergency-value
	{
    color: #667eea;
    font-weight: 500;
   font-size: 1.1rem;
}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }

    .story-container,
    .expertise-container,
    .why-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .approach-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .statistics {
        grid-template-columns: 1fr;
    }

    .thankyou-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .thankyou-content {
        padding: 2rem;
    }

    .thankyou-content h1 {
        font-size: 2.2rem;
    }

    .thankyou-actions {
        flex-direction: column;
        align-items: center;
    }

    .primary-action-btn,
    .secondary-action-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .emergency-info {
        grid-template-columns: 1fr;
    }
}.policy-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding  :140px 2rem 80px;
     color: #ffffff;
    text-align:       center;
}

.policy-content h1 {
   font-size: 3.2rem; 
    font-weight: 800; 
   margin-bottom: 1rem; 
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.policy-subtitle {
	font-size: 1.3rem;
  color: rgba(255,255,255,0.9);
  max-width  :     600px;
 margin: 0 auto;
   line-height: 1.7;
}

.policy-details {
  padding: 100px 2rem;
  background: #ffffff;
}

.policy-container {
    max-width: 1200px;
   margin: 0 auto;
}

.policy-container h2 {
   font-size: 2.5rem;
    color: #2c3e50;
   margin-bottom  :1.5rem;
    font-weight: 700;
}

.policy-container h3 {
  font-size: 1.8rem;
    color   :   #2c3e50;
    margin: 2rem 0 1rem;
   font-weight: 600;
}

.policy-container p {
  font-size: 1.1rem;

    line-height: 1.8;

    margin-bottom: 1.5rem;

  color: #5a6c7d;
}@media (max-width: 768px) {
    .policy-content h1 {
        font-size: 2.5rem;
    }

    .policy-subtitle {
        font-size: 1.2rem;
    }

    .policy-details {
        padding: 60px 1rem;
    }

    .policy-container h2 {
        font-size: 2.2rem;
    }

    .policy-container h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .policy-content h1 {
        font-size: 2rem;
    }

    .policy-subtitle {
        font-size: 1.1rem;
    }

    .policy-details {
        padding: 40px 1rem;
    }
}