*,
*::before,
*::after {
      padding: 0;
   margin: 0;
	box-sizing: border-box;
	}

:root {
    --primary-color: #2d5a6c;
    --secondary-color: #48a3c6;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --background-light: #f9fafb;
    --border-light: #e5e7eb;
    --spacing-unit: 16px;
}

html {
    scroll-behavior: smooth;
	
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  background-color: #ffffff;
    line-height: 1.6;
  font-size: 16px;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight   :       700;
   line-height:       1.3;
  color: var(--primary-color);
}



h1 {
   font-size: 3rem;
   margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

h2 {
   font-size     :   2.25rem;
   margin-bottom: 1.25rem;
}

h3  {
   font-size: 1.5rem;
                    margin-bottom: 0.75rem;
  color: var(--secondary-color);
}

h4 {
   font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
    font-size: 1rem;
}

a {
  color: var(--secondary-color);
  text-decoration: none;
   transition    :     color 0.3s ease;
}

a:hover {
  color: var(--accent-color);
}

.nav-container {
      background-color: #ffffff;
  border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
  z-index: 1000;
}

.nav-wrapper 
 {
  max-width: 1200px;
         margin: 0 auto;
  padding: 1rem var(--spacing-unit);
   display:      flex;
  justify-content  :       space-between;
    align-items: center;
}

.brand-section {
   flex: 0 0 auto; 
	
}

.brand-logo   {
    height:   40px;
   width    :     auto;
	 display: block; 
	
}



.burger-menu-toggle {
   display: none;
   flex-direction  :      column;
  background: none;
    border: none;
  cursor: pointer;
   padding   :      0.5rem;
}

.burger-line {
    width: 24px;
  height: 2px;
  background-color: var(--primary-color);
   margin    :     4px 0;
   transition: all 0.3s ease;
  display: block;
}


.burger-menu-toggle.burger-active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu-toggle.burger-active .burger-line:nth-child(2) {
   opacity: 0;
}



.burger-menu-toggle.burger-active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
} 

.nav-links {


   display: flex;
    list-style: none;
   gap:    2rem;
    align-items: center;
	}

.nav-links a {
    font-weight: 600;
    font-size  :   0.95rem;
  color: var(--text-dark);
          transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent-color);
}

.hero-section {
  display: grid; 
   grid-template-columns: 1fr 1fr; 
   gap: 3rem; 
	 align-items: center; 
   max-width: 1200px; 
    margin: 0 auto; 
  padding: 4rem var(--spacing-unit); 
  background: linear-gradient(135deg, rgba(45, 90, 108, 0.05) 0%, rgba(72, 163, 198, 0.05) 100%);
}

.hero-content h1
{
  color: var(--primary-color);
  margin-bottom    :     1.5rem;
}

.hero-content p   {
    font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom :  2rem;

}

.hero-image img {

	    width: 100%;
  height: auto;
   border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	display: block;

}

.cta-button {
  display: inline-block;
  background-color: var(--accent-color);
   color    :  #ffffff;
    padding: 0.875rem 2rem;
    border-radius: 6px;
  font-weight:   600;
  transition: background-color 0.3s ease, transform 0.2s ease;
   cursor: pointer;
   border: none;
   font-size: 1rem;
    text-align: center;
}

.cta-button:hover {
  transform: translateY(-2px);
                    color: #ffffff;
   background-color: #f59e0b;
}

.services-preview {
	max-width: 1200px;
     margin: 3rem auto;
     padding: 0 var(--spacing-unit);
}

.section-header {


	text-align: center;
   margin-bottom: 3rem;}

.section-header h2

{
  color: var(--primary-color);
}

.section-header p {
  font-size:  1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 1rem auto;
}

.services-grid
{
    display: grid;
  grid-template-columns: repeat(3, 1fr);
      gap     :        2rem;
}

.service-card    {
    background-color: #ffffff; 
  border-radius: 12px; 
   overflow: hidden; 
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); 
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
  display: flex; 
   flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);

	  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card img {
          width: 100%;

        height: 250px;

   object-fit: cover;
}

.service-card h3 {
	padding: 1.5rem 1.5rem 0.5rem;
  color: var(--secondary-color);
}

.service-card p {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.95rem;
  flex-grow: 1;
}

.methodology-section {
          display   :       grid;
   grid-template-columns: 1fr 1fr;
   gap: 3rem;
   align-items: center;
  max-width: 1200px;
    margin: 3rem auto;
  padding: 0 var(--spacing-unit);
  background-color: var(--background-light);
   border-radius     :     12px;
   padding: 3rem;

}

.methodology-content h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.methodology-points {
    display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  margin-top: 2rem;
}

.method-item {
  background-color: #ffffff;
    padding: 1.5rem;
   border-radius: 8px;
  border-left: 4px solid var(--accent-color);
}

.method-item h4    {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.method-item p {
	font-size: 0.95rem; 
	  color: var(--text-light);
}  

.methodology-image img
{
    width: 100%;
    height    :auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	
}

.cta-conversion {

  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
          color: #ffffff;
  padding: 4rem var(--spacing-unit);
  text-align: center;
  margin: 3rem 0;
     }

.cta-box {
  max-width: 600px;
    margin: 0 auto;
}

.cta-box h2 {
    color: #ffffff;
}

.cta-box p {
     color: rgba(255, 255, 255, 0.95);
        font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-button-secondary {
  background-color: var(--accent-color);
    color     :#ffffff;
}

.cta-button-secondary:hover {
   background-color: #f59e0b;
  transform: translateY(-2px);
}


.contact-section {
    max-width: 900px;
   margin: 3rem auto;
  padding: 0 var(--spacing-unit); 
	
}

.contact-wrapper {

	  background-color: var(--background-light);
   padding     :3rem;
   border-radius :  12px;}

.contact-wrapper h2 {
  color: var(--primary-color);
               margin-bottom: 0.5rem;
}

.contact-wrapper > p {
  color: var(--text-light);
	  margin-bottom: 2rem;
}

.contact-form {
  display :       grid;
       grid-template-columns: 1fr 1fr;
   gap: 1.5rem;
  margin-bottom :      2rem;

}

.form-group {
   grid-column: span 1;
    display: flex;
  flex-direction: column; 

}

.form-group:nth-child(3),
.form-group:nth-child(4)  
  {
   grid-column: span 1;
}

.form-group:nth-child(5) {
      grid-column: span 2;
}

.form-group label {
  font-weight  :       600;
	  margin-bottom: 0.5rem;
	  color: var(--primary-color);
	  font-size: 0.95rem;
     }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-light);
    border-radius: 6px;
    font-family: inherit;
  font-size: 1rem;
   transition     : border-color 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-dark);
}

.form-group input::placeholder,
.form-group textarea::placeholder {

	   color: #9ca3af;
	
	}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.submit-button
{
	grid-column: span 2;
  background-color: var(--accent-color);
    color: #ffffff;
    padding: 0.875rem 2rem;
	border :        none;
    border-radius: 6px;
   font-weight   :  600;
       font-size: 1rem;
    cursor: pointer;
   transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-button:hover {
   background-color: #f59e0b;
     transform: translateY(-2px);
}

.contact-info {
    background-color: #ffffff;

	padding: 2rem;

   border-radius: 8px;

  border-left: 4px solid var(--secondary-color);
}

.contact-info h3{
  color: var(--primary-color);
    margin-bottom    :1rem;
}

.contact-info p {
     color: var(--text-light);
	font-size  :    0.95rem;
   margin-bottom: 0.5rem;


}

.footer-container {
  background-color: var(--primary-color);
               color: #ffffff;
  padding: 3rem var(--spacing-unit);
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
	 display: grid;
  grid-template-columns: auto 1fr auto;
	 gap:    3rem;
	align-items: start;


}

.footer-brand {
               flex: 0 0 auto;
}

.footer-logo {
	 height: 40px;
  width:    auto;
  filter: brightness(0) invert(1);
  display: block;


}

.footer-nav {
   display: flex;
  gap: 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.85);
       font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {

	  color: var(--accent-color);}

.footer-info p
	{
  color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}



.footer-info strong {
    color: #ffffff;
}

.footer-bottom {
  text-align: center;
	grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
        margin-top: 1rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}@media (max-width: 768px) {
    .burger-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.menu-active {
        max-height: 400px;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid var(--border-light);
    }

    .nav-links a {
        display: block;
        padding: 1rem var(--spacing-unit);
        color: var(--text-dark);
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem var(--spacing-unit);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .methodology-section {
        grid-template-columns: 1fr;
        padding: 2rem var(--spacing-unit);
    }

    .methodology-points {
        grid-template-columns: 1fr;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .form-group:nth-child(5),
    .submit-button {
        grid-column: span 1;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    .nav-wrapper {
        padding: 0.75rem var(--spacing-unit);
    }

    .hero-content p {
        font-size: 1rem;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .contact-wrapper {
        padding: 1.5rem;
    }

    .section-header p {
        font-size: 1rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #2d5a6c 0%, #48a3c6 100%);
    color: #ffffff;
  padding: 4rem var(--spacing-unit);
  text-align: center;
}

.services-hero-content  
  {
   max-width: 800px;
    margin: 0 auto;
}

.services-hero h1 {
  color     : #ffffff;
  font-size: 2.75rem;
  margin-bottom: 1rem;


}

.services-hero p {
  color: rgba(255, 255, 255, 0.95);
   font-size: 1.1rem;
    max-width : 700px;
  margin: 0 auto;
}

.services-main{
   max-width: 1200px;
   margin: 3rem auto;
  padding: 0 var(--spacing-unit); 

}

.services-container {
    flex-direction: column;
   display: flex;
   gap    :4rem;
}

.service-detailed
	{
  display: grid;
    grid-template-columns    :  1fr 1fr;
         gap: 3rem;
	align-items: start;
  background-color: #ffffff;
    padding: 2.5rem;
   border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}

.service-detailed:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.service-alternate {
   grid-template-columns: 1fr 1fr;


}

.service-alternate .service-visual {
  order: 2;
}

.service-alternate .service-info {
   order: 1;
}

.service-visual img {
   width: 100%;
    height :        350px;
  object-fit: cover;
          border-radius: 10px;
    display: block;
}

.service-info h2     {
  color: var(--primary-color);

               font-size: 1.85rem;

  margin-bottom     :        1rem;
}

.service-info > p {
   font-size: 1.05rem;
  color: var(--text-light);
    line-height: 1.7;
	margin-bottom: 1.5rem;
	
}

.service-features {
   margin: 2rem 0;
  background-color: var(--background-light);
	 padding: 1.5rem;
    border-radius: 8px;
  border-left: 4px solid var(--accent-color);
}

.service-features h3 {
  color: var(--primary-color);
    font-size: 1.125rem;
  margin-bottom: 1rem;
}

.feature-list {
  list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
  position: relative;
  color: var(--text-dark);
      font-size: 0.95rem;
    line-height: 1.5;
}

.feature-list li::before {
     content: "✓";
	 position: absolute;
    left: 0;
  color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;


}

.service-price-info {
   background-color:  #ffffff;
   padding  :1.5rem;
    border-radius: 8px;
  border: 1px solid var(--border-light);
    margin-top: 1.5rem;
}

.service-price-info p {
  margin-bottom: 0.75rem;
	font-size: 0.95rem;
  color: var(--text-dark);
}

.service-price-info strong {
	  color: var(--primary-color);
	}

.service-comparison {
   max-width: 1200px;
  margin: 4rem auto;
  padding: 3rem var(--spacing-unit);
  background-color: var(--background-light);
  border-radius: 12px; 

}

.service-comparison h2{
   text-align: center; 
	  color: var(--primary-color); 
	     margin-bottom     :        2rem; 
	  font-size     :      2rem;
}

.comparison-table {
  display    :     flex;
    flex-direction: column;
    gap   :       0;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  background-color: #ffffff;
}

.comparison-row {
   display  :      grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--border-light);
}

.comparison-row:last-child    {
    border-bottom: none;
}

.header-row {
  background-color: var(--primary-color);
  color: #ffffff;
	 font-weight: 700;




}


.header-row .comparison-cell {
	 color: #ffffff;
}

.alt-row {
    background-color: #f3f4f6;
}

.comparison-cell {
    padding: 1.25rem;
  color: var(--text-dark);
   font-size: 0.95rem;
  border-right: 1px solid var(--border-light);
   display  : flex;
  align-items :center;
}

.comparison-cell:last-child     {
   border-right: none;
}  

.service-cta {
  background: linear-gradient(135deg, #48a3c6 0%, #2d5a6c 100%);
  color: #ffffff;
  padding: 3rem var(--spacing-unit);
   text-align    :   center;
   border-radius: 12px;
  max-width: 1200px;
     margin: 4rem auto;
}

.cta-content h2 {
   color: #ffffff;
        font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.95);
   font-size: 1.1rem;
	 max-width   :   600px;
   margin  :1rem auto 2rem;
}

.thankyou-container {


    min-height: 60vh;
      display: flex;
   align-items: center;
	justify-content: center;
  padding: 3rem var(--spacing-unit);
  background: linear-gradient(135deg, rgba(45, 90, 108, 0.03) 0%, rgba(72, 163, 198, 0.03) 100%);
     }

.thankyou-content {
  max-width: 700px;
  background-color: #ffffff;
  padding: 3rem;
    border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}



.thankyou-icon {
    display: flex;
  justify-content  :       center;
   margin-bottom: 2rem;
}

.thankyou-icon svg {
   width: 80px;
	height: 80px;
  color: var(--accent-color);
   stroke-width: 2;
}

.thankyou-content h1 {
  color: var(--primary-color);
   font-size: 2.25rem;
 margin-bottom: 1.5rem;
}

.thankyou-greeting {

	    font-size: 1.1rem;
  color: var(--text-light);
    margin-bottom: 1.5rem;
  font-weight: 500;
	
     }

.thankyou-message {
  text-align: left;


}

.thankyou-message p {
  color: var(--text-light);
   font-size: 1rem;
  line-height: 1.7;
   margin-bottom: 1.5rem;
}

.message-box {
  background-color: var(--background-light);
  padding: 2rem;
				 border-radius: 8px;
  border-left: 4px solid var(--accent-color);
   margin: 1.5rem 0;
}

.message-box h3 {
  color: var(--primary-color);
	          font-size: 1.1rem;
	        margin-bottom: 1rem;
	   text-align :       left;
}

.next-steps {

	    list-style :none;
    padding: 0;
}

.next-steps li {
       padding: 0.75rem 0;
    padding-left: 1.5rem;
  position  : relative;
  color: var(--text-dark);
          font-size: 0.95rem;
	line-height: 1.6;
  text-align: left;
}

.next-steps li::before {

  content: "→";
  position: absolute;
   left: 0;
  color: var(--accent-color);
  font-weight: bold;
	}

.info-section {
	   background-color: #f9f9f9;
  padding: 1.5rem;
    border-radius: 8px;
               margin: 1.5rem 0;
}

.info-section h3 {
  color: var(--primary-color); 
	    font-size: 1rem; 
	       margin-bottom: 0.75rem;
	
}

.contact-detail  {
    margin: 0.5rem 0 !important;
  font-size: 0.95rem;
  text-align: left;
}

.additional-resources
	{
  background-color: var(--background-light);
                    padding: 1.5rem;
   border-radius: 8px;
    margin-top: 1.5rem;
}  

.additional-resources h3 {
  color: var(--primary-color);
   margin-bottom: 0.5rem;
}


.additional-resources p {
  text-align: left;
  margin-bottom: 1rem;
   font-size: 0.95rem;
}

.resource-buttons {
    display  :      grid; 
	   grid-template-columns: 1fr 1fr; 
	   gap: 1rem; 
	  margin-top     :     1rem;
}

.resource-link {


    display: inline-block;
  background-color: var(--accent-color);
   color: #ffffff;
	padding: 0.75rem 1.5rem;
  border-radius: 6px;
   font-weight: 600;
   text-align: center;
  transition: background-color 0.3s ease;
    text-decoration: none;}

.resource-link:hover {
    background-color: #f59e0b;
}

.quote-section {
   margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border-light);
	 font-style: italic;
  color: var(--text-light);
}

.quote-section p    {


       margin: 0.5rem 0;
                    font-size: 0.95rem;
	}

.quote-author {
    font-size  :       0.85rem;
    color:       #9ca3af;
	 margin-top: 0.75rem;
}

.next-steps-full 
 {
  max-width: 1200px;

	  margin   :        4rem auto;

	  padding: 0 var(--spacing-unit);
}

.next-steps-full h2 {


  color: var(--primary-color);
  text-align: center;
   margin-bottom: 3rem;
  font-size: 2rem;
     }

.faq-grid {
    display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.faq-item {
   background-color: #ffffff;
      padding: 1.5rem;
     border-radius: 8px;
     border-left: 4px solid var(--accent-color);
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
     transition: box-shadow 0.3s ease;
}

.faq-item:hover
{
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.faq-item h4 {
  color: var(--primary-color);
  margin-bottom: 0.75rem;
   font-size   : 1rem;
}

.faq-item p {
  color: var(--text-light);
   font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}@media (max-width: 768px) {
    .service-detailed {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .service-alternate .service-visual,
    .service-alternate .service-info {
        order: unset;
    }

    .services-hero h1 {
        font-size: 1.75rem;
    }

    .services-hero p {
        font-size: 1rem;
    }

    .service-info h2 {
        font-size: 1.5rem;
    }

    .comparison-row {
        grid-template-columns: repeat(5, 1fr);
    }

    .comparison-cell {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }

    .thankyou-content {
        padding: 2rem 1.5rem;
    }

    .thankyou-content h1 {
        font-size: 1.75rem;
    }

    .resource-buttons {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}@media (max-width: 480px) {
    .service-detailed {
        padding: 1rem;
    }

    .services-hero {
        padding: 2rem var(--spacing-unit);
    }

    .services-hero h1 {
        font-size: 1.5rem;
    }

    .service-visual img {
        height: 200px;
    }

    .comparison-cell {
        font-size: 0.75rem;
        padding: 0.5rem;
    }

    .thankyou-container {
        min-height: auto;
        padding: 1.5rem var(--spacing-unit);
    }

    .thankyou-content {
        padding: 1.5rem;
        border-radius: 8px;
    }

    .thankyou-icon svg {
        width: 60px;
        height: 60px;
    }

    .thankyou-content h1 {
        font-size: 1.35rem;
    }

    .faq-item {
        padding: 1rem;
    }

    .faq-item h4 {
        font-size: 0.95rem;
    }

    .faq-item p {
        font-size: 0.85rem;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.policySection {
  padding: 80px 2rem;
                    background: #f8f9fa;
}

.policyContainer {
  max-width: 800px;
    margin   :       0 auto;
   text-align:      left;
}

.policyContainer h2 {
	 font-size:    2.5rem;
    color     :#2c3e50;
   margin-bottom: 1.5rem;
  font-weight: 700;
}

.policyContainer p {
          color: #7f8c8d;
    margin-bottom  :1.5rem;
	 line-height     :    1.7;
  font-size: 1.1rem;
}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }
    .policyContainer p {
        font-size: 1rem;
    }
    .policySection {
        padding: 60px 1rem;
    }
}
