* {
    margin: 0;
	                    padding: 0;
	    box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height: 1.6;
   color: #2c3e50;
  background-color: #f8f9fa;
	}



.navigation-bar {
  background: linear-gradient(135deg, #1a3a52 0%, #2c5aa0 100%);
  padding: 1rem 0;
       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: 0 2rem;
    display: flex;
   justify-content: space-between;
  align-items :        center;
}

.nav-logo  
  {
	flex-shrink    :      0;
}

.logo-img {
  height: 45px;
  filter: brightness(0) invert(1);

}

.nav-links {
   display     :     flex;
    list-style: none;
   gap: 2.5rem;
}

.nav-links a {
	    color: white;
          text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
   font-size: 1rem;
}

.nav-links a:hover {
  color: #a8d5ff;
}

.burger-menu {
  display: none;
                    background: none;
   border: none;
    cursor: pointer;
	 flex-direction  :     column;
  gap: 6px;
}

.burger-menu span {
	 width    :  25px;
  transition: all 0.3s ease;
  height: 3px;
  background: white;
         border-radius: 2px;
}

.burger-menu.active span:nth-child(1)
{
  transform: rotate(45deg) translate(10px, 10px); 

}

.burger-menu.active span:nth-child(2) {

		opacity: 0;}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);


}

.hero-section {
    display: flex;
               align-items: center;
    justify-content: space-between;
	max-width: 1200px;
   margin: 0 auto;
	padding: 4rem 2rem;
    gap: 3rem;
}


.hero-content {
	flex :     1;
          color: #1a3a52;


}

.hero-content h1 {
    font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
   line-height: 1.2;
}

.hero-content p {


   font-size: 1.1rem;
    margin-bottom: 2rem;
	color:       #555;
    line-height: 1.8;


}

.hero-image {
    flex: 1;
    width: 100%;
	height: auto;
	border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    object-fit: cover;
}

.cta-button {
	         display: inline-block;
  background: linear-gradient(135deg, #2c5aa0 0%, #1a3a52 100%);
        color: white;
    padding: 1rem 2.5rem;
	border-radius    :  8px;
       text-decoration: none;
   font-weight: 600;
  transition: all 0.3s ease;
    cursor:       pointer;
	 border: none;
  font-size: 1rem;


}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(44, 90, 160, 0.3);
	
}

.cta-button-secondary {
	   display: inline-block;
    background: white;
  color: #2c5aa0;
      padding: 1rem 2.5rem;
   border-radius: 8px;
    text-decoration :  none;
   font-weight   :       600;
   transition: all 0.3s ease;
  border: 2px solid #2c5aa0;
  font-size: 1rem;
     }

.cta-button-secondary:hover {
  background: #f0f5fb;
  transform: translateY(-2px);
}

.about-section {
	    background: white;
   padding: 4rem 2rem;
	margin: 3rem 0;
}

.about-wrapper {
    max-width:   1200px;
   margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-text {
    flex: 1;
} 

.about-text h2 {
  font-size: 2.2rem;
 margin-bottom: 1.5rem;
    color    :  #1a3a52;
}

.about-text p {
	 margin-bottom: 1.5rem;
     font-size: 1rem;
     color: #555;
       line-height: 1.8;
}

.about-image {
  flex: 1;
         width: 100%;
   height: auto;
   border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.services-preview {
  max-width :      1200px;
  margin: 4rem auto;
                    padding: 0 2rem;
}

.services-preview h2 {
    text-align: center;
  margin-bottom: 3rem;
  font-size: 2.2rem;
    color: #1a3a52;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
  background :   white;
   padding: 2rem;
               border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
   transition  :      all 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-icon {
                    width: 80px; 
	    height: 80px; 
	    margin: 0 auto 1.5rem; 
	  background: linear-gradient(135deg, #e8f0f8 0%, #d4e5f7 100%); 
	    border-radius: 50%; 
	  display: flex; 
	    align-items: center; 
		justify-content: center;
}

.service-icon img	{
    width: 45px;
  height: 45px;
  filter: drop-shadow(0 0 4px #2c5aa0);
}

.service-card h3 {
    font-size: 1.3rem;
  margin-bottom: 1rem;
   color: #1a3a52;
}

.service-card p {


  color :    #666;

               font-size: 0.95rem;

  line-height: 1.6;
}

.consulting-showcase {
   max-width: 1200px;
	margin: 4rem auto;
  padding: 0 2rem;
}


.consulting-showcase h2 {
   font-size :        2.2rem;

	    text-align: center;

	  margin-bottom: 3rem;

	  color: #1a3a52;
}

.showcase-grid {

	   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}


.showcase-grid img {
	 width    :    100%;
  height :  250px;
   object-fit: cover;
    border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
   transition: transform 0.3s ease;
}

.showcase-grid img:hover {
  transform: scale(1.02);


}

.cta-section {
  background: linear-gradient(135deg, #1a3a52 0%, #2c5aa0 100%);
   padding: 4rem 2rem;
    text-align: center;
                    color: white;
    margin: 4rem 0;
}

.cta-content

{
    max-width     :  800px;
   margin: 0 auto;
}

.cta-content h2 {
   font-size:   2.2rem;
	 margin-bottom: 1.5rem;
}

.cta-content p {
   font-size: 1.1rem;
   margin-bottom: 2rem;
  line-height: 1.8; 

}

.contact-section {
   max-width: 800px;
  margin: 4rem auto;
   padding: 0 2rem;
}

.contact-section h2 {
   font-size   :        2.2rem;
    text-align: center;
        margin-bottom: 3rem;
	color: #1a3a52;
} 

.contact-form {
  background: white; 
     padding: 3rem; 
    border-radius: 12px; 
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {

	  margin-bottom: 2rem;}

.form-group label {
	    display: block;
  margin-bottom: 0.8rem;
    font-weight: 600;
  color: #1a3a52;


}

.form-group input,
.form-group select,
.form-group textarea {
	width   : 100%;
               padding: 0.9rem;
   border: 2px solid #e0e0e0;
         border-radius: 6px;
       font-family: inherit;
     font-size   :    1rem;
	transition  :  border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus   {
          outline: none;
    border-color: #2c5aa0;
  box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.submit-button {
 width: 100%;
   padding: 1rem;
  background: linear-gradient(135deg, #2c5aa0 0%, #1a3a52 100%);
   color: white;
   border :      none;
    border-radius  :      6px;
    font-weight: 600;
    font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}



.submit-button:hover {

	  transform: translateY(-2px);

  box-shadow: 0 8px 20px rgba(44, 90, 160, 0.3);


     }

.main-footer {
    background: #1a3a52;
   color: white;
    padding :     3rem 2rem 1rem;
	margin-top: 4rem;
}

.footer-container {
	    max-width     :        1200px;
         margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
   margin-bottom: 2rem;}

.footer-section h3 {
   margin-bottom: 1rem;
    font-size: 1.1rem;
	
}

.footer-logo {
   height: 50px;
  filter: brightness(0) invert(1);
}

.footer-section ul 
 {
   list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section a {
    color   :#a8d5ff;
  text-decoration: none;
	transition :  color 0.3s ease;
}

.footer-section a:hover {
  color: white;
	
}

.footer-section p {
     line-height  :       1.8;
	 font-size    :    0.95rem;
   color: #a8d5ff;
	}

.footer-bottom {
   text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
    color: #a8d5ff;
    font-size: 0.9rem; 
	
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #1a3a52;
        flex-direction: column;
        gap: 1rem;
        padding: 2rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-links.active {
        max-height: 300px;
    }

    .hero-section {
        flex-direction: column;
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .about-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-section {
        padding: 2rem 1rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }

    .services-preview h2,
    .about-text h2,
    .consulting-showcase h2,
    .contact-section h2 {
        font-size: 1.6rem;
    }

    .cta-button,
    .cta-button-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #1a3a52 0%, #2c5aa0 100%);
   color: white;
       padding: 5rem 2rem;
    text-align     :      center;
}

.services-hero-content {
    max-width: 900px;
	 margin: 0 auto;
}

.services-hero h1 {
  font-size: 2.8rem;
    margin-bottom   :      1rem;
   font-weight: 700;
}

.services-hero p {
   font-size: 1.2rem;
    line-height: 1.8;
   opacity: 0.95;
}

.services-detailed {
   padding: 4rem 2rem;
    background: #f8f9fa;
}

.services-container {
    max-width: 1200px;
   margin: 0 auto;
	
}

.service-detailed-card

{
  background   :white;
    border-radius: 12px;
        overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    display    :   flex;
  align-items: stretch;
   transition: all 0.3s ease;
}

.service-detailed-card:hover {
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
	  transform: translateY(-3px);
}

.service-detail-image
{
  flex: 0 0 40%;
	 overflow: hidden; 
	}

.service-detail-image img {
   width: 100%;
    height  :  100%;
   object-fit: cover;
   transition     :       transform 0.3s ease;
}

.service-detailed-card:hover .service-detail-image img {
  transform: scale(1.05); 
	
}

.service-detail-content {
  flex: 1;
  padding: 2.5rem;
  display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-detail-content h2  
  {
    color: #1a3a52;

	    font-size: 1.8rem;

	    margin-bottom  :1rem;
	
}

.service-detail-content > p     {


   color :     #555;
  font-size: 1rem;
   line-height     :       1.8;
        margin-bottom: 1.5rem;
}

.service-highlights {
         margin:        1.5rem 0;
}

.service-highlights h3 {
   margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
   color: #1a3a52;
}

.highlights-list{
  list-style: none;

   padding: 0;
}

.highlights-list li {
   padding  : 0.6rem 0;
   padding-left    : 1.8rem;
   position: relative;
   color: #666;
    font-size: 0.95rem;
}

.highlights-list li:before {
  content: '✓';
    position: absolute;
    left  :      0;
   color: #2c5aa0;
  font-weight: bold;
   font-size: 1.1rem;
}

.service-pricing {
  margin-top: 1.5rem;
   padding-top: 1.5rem;
    border-top: 2px solid #e0e0e0;


}

.service-pricing p {
  font-size :       0.95rem;
  color: #1a3a52;
   margin: 0.5rem 0;
}

.service-alt {
      flex-direction: row-reverse;
}

.comparison-section {
	  margin: 0 auto;
	 background: white;
  max-width: 1200px;
    padding: 4rem 2rem;


}


.comparison-section h2 {
   font-size: 2.2rem;
	text-align: center;
    margin-bottom: 3rem;
   color: #1a3a52;
}

.comparison-table-wrapper   {
    overflow-x: auto;
    border-radius   :   10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08); 
	
}

.comparison-table {
  width: 100%;
    border-collapse: collapse;
   background: white;


}

.comparison-table thead {
  background: linear-gradient(135deg, #1a3a52 0%, #2c5aa0 100%);
   color: white;
	
}

.comparison-table th {
    padding  :        1.5rem;

	    text-align: left;

	    font-weight: 600;

	    font-size: 0.95rem;
}

.comparison-table td {
  padding: 1.2rem 1.5rem;
 border-bottom: 1px solid #e0e0e0;
    color: #555;
   font-size: 0.9rem;
}

.comparison-table tbody tr:hover {
    background: #f8f9fa;
	
}

.table-yes {
               color :        #2ecc71;

	  font-weight: 600;
}

.table-no {
	color:       #e74c3c;
    font-weight: 600;
}

.table-ja {
               color: #f39c12;
        font-weight: 600;
}

.faq-section {
         max-width: 900px;
  margin    :      4rem auto;
      padding: 0 2rem;
}

.faq-section h2 {
  font-size: 2.2rem;
   text-align: center;
   margin-bottom: 3rem;
   color: #1a3a52;
}  

.faq-container {
  background: white;
	 border-radius: 10px;
   overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.faq-item  
  {
   border-bottom    :  1px solid #e0e0e0;
}

.faq-item:last-child {
   border-bottom :       none;
}

.faq-question {
      width :   100%;
  padding :     1.5rem;
	background: white;
               border: none;
    cursor: pointer;
  display    :flex;
   justify-content  :        space-between;
    align-items: center;
    font-size: 1rem;
	 font-weight: 600;
	color: #1a3a52;
    transition: all 0.3s ease;
	}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question span {
       text-align  :  left;

}

.faq-icon
	{
   width    :        24px;
   height: 24px;
   flex-shrink: 0;
  margin-left    :     1rem;
    transition: transform 0.3s ease;
  filter: drop-shadow(0 0 2px #2c5aa0);
}

.faq-question.active .faq-icon  {
  transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
  overflow: hidden;
  transition  : max-height 0.3s ease;
}

.faq-answer.active {
     max-height: 500px;


}

.faq-answer p{
	   padding: 0 1.5rem 1.5rem 1.5rem;
	 color: #666;
   line-height: 1.8;
    font-size: 0.95rem;
}

.cta-services {
  background: linear-gradient(135deg, #1a3a52 0%, #2c5aa0 100%);
  color: white;
		 padding: 4rem 2rem;
   text-align   :       center;
     }

.cta-services h2 {
       font-size: 2.2rem;
    margin-bottom  :      1rem;
}

.cta-services p
{
  font-size :   1.1rem;
       margin-bottom: 2rem;
     opacity: 0.95;
}

.thankyou-section {
   min-height: 80vh;
   padding: 4rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f0f8 100%);
}

.thankyou-container {
	max-width: 700px;
  margin: 0 auto;
   background: white;
   border-radius   :        15px;
 padding: 3rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    text-align: center;
}

.success-icon {
    width: 100px;
   height: 100px;
   margin: 0 auto 2rem;
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  border-radius: 50%;
   display: flex;
  align-items: center;
      justify-content: center;


}

.success-icon img {
   width: 60px;
  height: 60px;
  filter: brightness(0) invert(1);
}

.thankyou-section h1 {
    font-size: 2.5rem;
   color: #1a3a52;
    margin-bottom: 0.5rem;
	
}

.thankyou-subtitle {
    font-size: 1.3rem;
    color: #2c5aa0;
         font-weight: 600;
         margin-bottom: 2rem;
}

.thankyou-message   {
   background: #f0f5fb;
   padding: 1.5rem;
  border-radius: 8px;
		 margin-bottom: 2.5rem;
   border-left: 4px solid #2c5aa0;
}


.thankyou-message p {
   color: #555;
 line-height: 1.8;
        font-size     : 0.95rem;
}

.next-steps
{
    margin: 3rem 0; 
   text-align: left;
}

.next-steps h2 {
   font-size: 1.6rem;
    color: #1a3a52;
    margin-bottom: 1.5rem;
  text-align: center;
}

.steps-list {
	display     :   flex;
   flex-direction: column;
    gap: 1.5rem;
}

.step-item {
               display: flex;
    gap  :      1.5rem;
    align-items: flex-start; 
	
}  

.step-number {
  width  :        50px;
   height: 50px;
  background: linear-gradient(135deg, #2c5aa0 0%, #1a3a52 100%);
  color     :      white;
 border-radius: 50%;
	display: flex;
  align-items: center;
  justify-content: center;
   font-weight     :   bold;
   font-size: 1.3rem;
   flex-shrink: 0;
}

.step-content h3	{
  color: #1a3a52;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.step-content p {
          color: #666;
	   font-size: 0.9rem;

}

.additional-resources {
  margin: 3rem 0;
	text-align: center;
}

.additional-resources h2 {
    font-size: 1.6rem;

	   color: #1a3a52;

	   margin-bottom: 1rem;
}

.additional-resources > p {
  color: #666;
    margin-bottom: 1.5rem;
}

.resources-grid {
	   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap:        1.5rem;



}

.resource-card {
  transition: all 0.3s ease;
   	 padding: 1.5rem;
       border: 2px solid #e0e0e0;
     text-decoration: none;
   	 border-radius: 10px;
       background: white;
}

.resource-card:hover{
   border-color: #2c5aa0;
  box-shadow: 0 8px 20px rgba(44, 90, 160, 0.15);
  transform: translateY(-3px);
     }

.resource-icon {
  width  :       60px;
  height: 60px;
   margin: 0 auto 1rem;
    background: #f0f5fb;
    border-radius:       50%;
        display   :flex;
	align-items: center;
    justify-content: center;
}

.resource-icon img {
   width: 35px;
   height: 35px;
  filter: drop-shadow(0 0 3px #2c5aa0);
}

.resource-card h3 {
   color :   #1a3a52;
  font-size: 1rem;
    margin-bottom: 0.5rem; 
	
}

.resource-card p {
   color: #666;
    font-size: 0.85rem;
}

.contact-info {
   background: #f0f5fb;
   padding: 2rem;
    border-radius: 10px;
                    margin: 2rem 0;
}

.contact-info h3 {
   color: #1a3a52;
    margin-bottom: 0.5rem;
}

.contact-info p {
  color: #666;
    margin: 0.5rem 0;
  font-size: 0.95rem;
}

.contact-phone {
    font-size: 1.3rem;
   color     :      #2c5aa0;
   font-weight: 600;
}

.back-button {
  display    :     inline-block;
  background: linear-gradient(135deg, #2c5aa0 0%, #1a3a52 100%);
  color: white;
   padding  : 1rem 2.5rem;
	 border-radius: 8px;
  text-decoration: none;
    font-weight: 600;
   transition: all 0.3s ease;
   margin-top: 1.5rem;
}

.back-button:hover  
  {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(44, 90, 160, 0.3);
}@media (max-width: 1024px) {
    .service-detailed-card {
        flex-direction: column;
    }

    .service-alt {
        flex-direction: column;
    }

    .service-detail-image {
        flex: 0 0 250px;
    }
}

@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2rem;
    }

    .service-detailed-card {
        margin-bottom: 2rem;
    }

    .service-detail-content {
        padding: 1.5rem;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem;
    }

    .thankyou-container {
        padding: 2rem;
    }

    .thankyou-section h1 {
        font-size: 1.8rem;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-hero h1 {
        font-size: 1.6rem;
    }

    .service-detail-content h2 {
        font-size: 1.4rem;
    }

    .faq-question {
        padding: 1rem;
    }

    .step-item {
        gap: 1rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}.policySection {
   padding: 80px 2rem;
   background: #f8f9fa;
  min-height    :     60vh;
}

.policyContainer {
    max-width: 800px;
   margin: 0 auto;
  text-align: left;
         background    :  white;
    padding: 3rem;
   border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}


.policyContainer h1    {
  padding-bottom: 1rem;
        border-bottom  :     3px solid #2c5aa0;
	 margin-bottom     :       2rem;
    color: #1a3a52;
   font-weight     :   700;
  font-size: 2.5rem;
}

.policyContainer h2 {
  font-size: 1.5rem;
   color: #1a3a52;
  margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.policyContainer p {
      color: #555;
  margin-bottom: 1.2rem;
      line-height: 1.8;
  font-size: 1rem;
}

.policyContainer strong

{
    color: #1a3a52;
      font-weight: 600;
}

.policyContainer h2:first-of-type {
  margin-top: 0;
}

.policyContainer p + p   {
    margin-top :      0;


}

.policyContainer h2 + p {
	 margin-top: 0;
}

.policyContainer ul {
   list-style-position: inside;
   	 margin: 1.5rem 0;
       padding-left: 1rem;
}

.policyContainer li {
   margin-bottom: 0.8rem;
     color: #555;
      line-height: 1.7;
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer {
        padding: 2rem;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
    }

    .policyContainer {
        padding: 1.5rem;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .policyContainer h2 {
        font-size: 1.1rem;
        margin-top: 1.2rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
}