* {
	    margin    : 0;
     padding: 0;
   box-sizing     :      border-box;
}



:root {
    --primary-color: #6B5B95;
    --secondary-color: #C7B8EA;
    --accent-color: #E74C3C;
    --dark-text: #2C3E50;
    --light-text: #ECF0F1;
    --border-color: #E8E8E8;
    --bg-light: #F9F9F9;
}

html {
   scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark-text);
    line-height: 1.6;
  background-color: #FFFFFF; 
	
}

/* Component styles */


.section-wrapper {
  max-width: 1140px;
	 margin: 0 auto;
  padding: 0 30px;
}

.mt-40 
 {

	   margin-top   :        40px;
}
/* Legacy code */

.align-center {
    text-align :        center;
}

h1 {
    font-size: 3.2rem;
    font-weight: 700;
  line-height: 1.2;
	margin-bottom     :20px;
  color: var(--primary-color);
}

h2 {
    font-size: 2.4rem;
    font-weight: 700;
	margin-bottom: 30px;
  color: var(--dark-text);
}

h3 {
  font-size :  1.6rem;
         font-weight: 600;
   margin-bottom: 15px;
  color: var(--dark-text);
}

h4 {
   font-size: 1.3rem;
    font-weight: 600;
  color: var(--dark-text);


}

p {

	    font-size: 1rem;
     margin-bottom :  15px;
  color: var(--dark-text);
     }

.navbar {
	background-color    :    #FFFFFF;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
                    position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
     max-width: 1140px;
      margin: 0 auto;
  padding: 0 30px;
	display: flex;
   justify-content   :      space-between;
  align-items: center;
  height: 70px;
}  

.logo-section {
   display: flex;
    align-items: center;
}

/* Cross-browser fix */
.logo-img {
  height: 50px;
  width: auto;
}

.nav-menu {
   display :    flex;
  list-style  :     none;
  gap: 40px;
}

.nav-link     {
    text-decoration: none;
  color: var(--dark-text);
   font-size: 1rem;
  font-weight: 500;
   transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color); 
	
}

.nav-link.nav-contact 
 {
  background-color: var(--primary-color);
  color :     white;
  padding: 10px 20px;
    border-radius  :       4px;
  transition: all 0.3s ease;
}

.nav-link.nav-contact:hover {
	background-color: #5A4A7D;
   color: white;
}

/* Vendor-specific */

.nav-burger {
 display   :  none;
    flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.nav-burger span {

   width: 25px;
  height: 3px;
  background-color: var(--dark-text);
    transition: all 0.3s ease;
        border-radius: 2px;
}

.nav-burger.active span:nth-child(1) {

  transform: rotate(45deg) translate(8px, 8px);
}  

.nav-burger.active span:nth-child(2) {
    opacity: 0;
}

.nav-burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.hero-section {
   display: flex;
  align-items: center;
  padding: 80px 30px;
  background: linear-gradient(135deg, #F9F9F9 0%, var(--secondary-color) 100%);
   max-width: 1200px;
  margin: 0 auto;
	 gap     :    60px;
}

.hero-content {
  flex: 1;
   -webkit-flex: 1;
}

.hero-subtitle {
  font-size: 1.2rem;
    color: #555;
  margin-bottom :      30px;
}

.hero-image {


    flex: 1;
	}

.hero-image img {
  width  : 100%;
  height: auto;
   border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.cta-button {
  display: inline-block;
   padding: 14px 32px;
                    text-decoration: none;
   border-radius: 4px;
               font-size: 1rem;
          font-weight: 600;
  transition: all 0.3s ease;
    border   :       none;
    cursor    :       pointer;
   text-align: center;
}
/* Cross-browser fix */


/* State modifiers */


/* Hack for old browsers */


.cta-button.primary-btn {
  background-color: var(--primary-color);
   color: white;
}

.cta-button.primary-btn:hover {
   background-color: #5A4A7D;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(107, 91, 149, 0.3);
}

.cta-button.secondary-btn {
 background-color   :   transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.cta-button.secondary-btn:hover {
  background-color: var(--primary-color); 
  color: white;
}

/* TODO: optimize for mobile */

.cta-button.large {
      padding: 16px 40px;
    font-size: 1.1rem; 

	}

.intro-section {


    padding: 70px 30px;
	 background-color: #FFFFFF;

}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
    margin-top: 40px;
}

.benefit-card {
   padding: 30px;
  background-color: var(--bg-light);
   border-radius: 8px;
  border-left: 4px solid var(--primary-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Cross-browser fix */


.benefit-card:hover

{
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.benefit-card h3 {
     margin-bottom: 15px;
}

.services-preview-section {
    padding :  70px 30px;
  background-color: var(--bg-light);
}

.services-row
{
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
   margin: 40px 0;
}
	/* Production ready */


.service-item {
    background-color: white; 
   border-radius  : 8px; 
         overflow     :   hidden; 
  box-shadow: 0 5px 15px rgba(0,0,0,0.08); 
               transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-item img {

   width   :    100%;
      height: 250px;
  object-fit: cover; 
	
	}

.service-item h3 {
    padding: 20px 20px 10px;
  margin  : 0;
}

.service-item p {
         padding: 0 20px 20px;
}

.testimonials-section {
	padding: 70px 30px;

	  background-color: #FFFFFF;}

.testimonials-grid {
       display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap   :   30px;
   margin-top     :      40px;
}  

.testimonial-card {
   	 padding: 30px;
  background-color: var(--bg-light);
    border-radius: 8px;
  border-top: 3px solid var(--primary-color);
     }

.testimonial-text  {
    font-size  :     1.05rem;
  font-style: italic;
   margin-bottom: 20px;
	color: #555;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
}

.conference-section {
  padding: 70px 30px;
  background: linear-gradient(90deg, var(--secondary-color) 0%, #E8D9F3 100%);
}

.conference-content {
  display: flex;
        gap  :      50px;
  align-items: center;
   margin-top: 40px;
}

.conference-content img {
   flex: 1;
    border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.conference-info {
    flex   :       1; 

}

.conference-info h3 {
  margin-bottom: 20px;
}

.conference-highlights {
	    list-style :    none;
    margin: 25px 0;
     }

.conference-highlights li {
     padding: 12px 0;
   padding-left: 30px;
       position  :relative;
  color: var(--dark-text);} 

.conference-highlights li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight    :      bold;
    font-size: 1.2rem;
}

.cta-section {
    padding: 80px 30px;
  background-color: var(--primary-color);
  color: white;
          text-align: center;
}


.cta-section h2 {
   color: white;
    margin-bottom: 20px;
}

.cta-section p {
  color: var(--light-text);
	 font-size: 1.1rem;
	 margin-bottom   :        30px;
}

.contact-section {
  padding: 70px 30px;
   background-color: #FFFFFF;
}

.contact-intro {
   text-align: center;
  margin-bottom: 50px;
    font-size   :       1.05rem;
}

.contact-layout {
    display: grid;
               grid-template-columns: 1.5fr 1fr;
    gap: 50px;
  margin-top: 40px;
}

.contact-form {


  background-color: var(--bg-light);
	 padding: 40px;
	border-radius: 8px;
     }

.form-group {
    margin-bottom   :    25px;


}

.form-group label   {
    display: block;
  margin-bottom: 8px;
   font-weight    :    600;
  color: var(--dark-text);
  font-size: 0.95rem;

}

.form-group input,
.form-group select,
.form-group textarea {
  width     :100%;
   padding: 12px 15px;
  border: 1px solid var(--border-color);
   border-radius: 4px;
          font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(107, 91, 149, 0.1);
}

.form-submit {
      width: 100%;
     padding: 14px;
  background-color: var(--primary-color);
  color: white;
    border: none;
   border-radius: 4px;
    font-size : 1rem;
    font-weight: 600;
   cursor: pointer;
         transition: all 0.3s ease;
}

.form-submit:hover {
   background-color: #5A4A7D;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(107, 91, 149, 0.3);
}

/* Production ready */

.contact-info {
  background-color: var(--bg-light);
  padding    :       40px;
   border-radius: 8px;
  height: fit-content;
}

.contact-info h3 {
   margin-bottom: 25px;
}

.contact-info p {

  margin-bottom: 20px;
    line-height:   1.8;

}
	/* Vendor-specific */
/* Debug styles */

.main-footer {

	  background-color: var(--dark-text);
    color: white;
  padding: 60px 30px 20px;}

.footer-content {
   max-width: 1140px; 
	  margin: 0 auto; 
		display     :     grid; 
	   grid-template-columns :        200px 1fr; 
		 gap: 80px; 
	    margin-bottom     : 40px;
}

.footer-logo {
   display: flex;
    align-items:       flex-start;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
	
}

.footer-links
{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 50px;
}

.footer-column h4 {
    color: white; 
	margin-bottom  :        20px; 
   font-size: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {

    margin-bottom: 12px;


}

.footer-column a {
    color     :#BDC3C7;
   text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease; 

}

.footer-column a:hover {
  color: white;

}

.footer-column p {
   color: #BDC3C7;
          font-size: 0.95rem;
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
	       padding-top: 20px;
	        text-align: center;
	    color: #95A5A6;
	          font-size: 0.9rem;}
@media (max-width: 768px) {
    .nav-burger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        display: block;
        padding: 15px;
    }

    .nav-link.nav-contact {
        margin: 10px 20px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-section {
        flex-direction: column;
        padding: 50px 30px;
        gap: 30px;
    }

    .services-row {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .conference-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .section-wrapper {
        padding: 0 15px;
    }

    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .nav-container {
        padding: 0 15px;
    }

    .hero-section {
        padding: 30px 15px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}.services-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #5A4A7D 100%);
	color: white;
	padding: 60px 30px;
    text-align: center;
}

.services-hero h1  
  {
   color: white;
    font-size: 2.8rem;
  margin-bottom: 15px;
}

.services-hero p {
  color: var(--light-text);
       font-size: 1.2rem;
}

.services-intro     {
   padding: 50px 30px;
  background-color: var(--bg-light);
       text-align: center;
}

.intro-text {
 max-width: 800px;
  margin: 0 auto;
					font-size: 1.1rem;
  color: var(--dark-text);
}

.services-detailed {
  padding: 70px 30px;
  background-color     :       white;
}

.service-detail-card {
          margin-bottom: 80px;
    grid-template-columns   :     1fr 1fr;
   display:        grid;
    gap: 60px;
    align-items    :    center;
}

.service-detail-card.reverse {
    grid-template-columns  :       1fr 1fr;
}

.service-detail-card.reverse .service-detail-content {
   order: 2;
}

.service-detail-card.reverse .service-detail-image {
	   order:        1;
	}

.service-detail-content h2    {
  color: var(--primary-color); 
	  margin-bottom: 20px;


}

.service-detail-content h3 {
   margin-top: 30px;
	margin-bottom     :   15px;
    font-size :   1.3rem;
  color: var(--dark-text);
}


.service-features {


   margin: 15px 0;
  list-style: none;}

.service-features li {
  padding: 12px 0 12px 30px;
         position     :      relative;
  color: var(--dark-text);
			line-height: 1.6;
}

.service-features li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary-color);
    font-weight:       bold;
   font-size: 1.1rem;
}

.service-detail-image img {

	 width: 100%;
    border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
	}

.service-packages-section {
    padding: 70px 30px;
  background: linear-gradient(180deg, var(--bg-light) 0%, white 100%);
}

.packages-intro {
  text-align   :      center;
   margin-bottom  :        50px;
    font-size: 1.1rem;
}

.packages-grid		{

	   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
    margin-top: 40px;


}

.package-card {
    background  :white;
  border: 2px solid var(--border-color);
    border-radius: 12px;
               padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
   position: relative;
}

.package-card:hover {
  transform: translateY(-10px);
     box-shadow: 0 20px 40px rgba(0,0,0,0.15);
     border-color: var(--primary-color);
}

.package-card.featured {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, rgba(107, 91, 149, 0.05) 0%, rgba(199, 184, 234, 0.1) 100%);
  transform: scale(1.02);
}

.package-card.featured:hover {
  transform: scale(1.02) translateY(-10px);
}


.package-header {
   margin-bottom: 30px;
}

.package-header h3 {
   margin-bottom: 10px;
  color: var(--primary-color);
}

.package-price {
  font-size: 1.8rem;
  color: var(--primary-color);
  font-weight   :   bold;
}

.package-features {
   list-style: none;
    margin     :    30px 0;
  text-align: left;


}

.package-features li {

	    padding:  12px 0 12px 30px;
   position: relative;
  color: var(--dark-text);
    line-height: 1.5;


}

.package-features li:before {
  content: "✓";
  position     :    absolute;
    left: 0;
  color: var(--primary-color);
   font-weight: bold;
  font-size: 1.2rem;
}

.package-btn {
  display   :    inline-block;
  padding: 12px 30px;
  margin-top: 20px;
  background-color: var(--border-color);
  color: var(--dark-text);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
   transition    : all 0.3s ease;
  border: 2px solid transparent;

}

.package-btn:hover {
        background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.package-btn.btn-primary{
  background-color: var(--primary-color);
  color     : white;
  border-color: var(--primary-color);
}

.package-btn.btn-primary:hover {
   background-color   :   #5A4A7D;
   border-color: #5A4A7D;
}

.process-section {
         padding: 70px 30px;
    background-color: white;
}

.process-steps {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
    margin-top: 50px;
}  

.process-step {

   text-align: center;
  padding: 30px;
  background-color: var(--bg-light);
   border-radius:      8px;
    transition: all 0.3s ease;
	}

.process-step:hover {
  background-color: var(--secondary-color);
  transform: translateY(-5px);
}

.step-number {
    width: 50px;
   height: 50px;
  background-color: var(--primary-color);
    color: white;
  border-radius: 50%;
  font-size  :     1.5rem;
   font-weight: bold;
   display    :    flex;
    align-items: center;
  justify-content: center;
   margin: 0 auto 20px;
}

.process-step h3 {
	    margin-bottom: 15px;

}

.faq-section     {
	padding: 70px 30px;
  background-color: var(--bg-light);


}

.faq-items {

   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 30px;
   margin-top:40px;


}

.faq-item 
 {
   background-color: white;
    padding: 25px;
   border-radius   :  8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-item h3 
 {
     color: var(--primary-color);
   margin-bottom     :   15px;
  font-size: 1.1rem;


}

.faq-item p {
  color: var(--dark-text);
  line-height: 1.7;}

.cta-section-services {
               padding: 80px 30px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #5A4A7D 100%);
   color: white;
      text-align: center;
}

.cta-section-services h2 {


    margin-bottom: 20px;
	color    : white;

}

.cta-section-services p {
     color: var(--light-text); 
  font-size: 1.1rem; 
         margin-bottom: 30px;
}

.thankyou-section {
   padding: 80px 30px;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--secondary-color) 100%);
  min-height: calc(100vh - 70px);
       display: flex;
    align-items: center;
}

.thankyou-container {
	background-color:      white;
   padding: 60px;
                    border-radius     :    12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
	 text-align  :      center;
    max-width: 700px;
   margin :     0 auto;
}

.thankyou-icon {
  margin-bottom: 30px;
}

.thankyou-icon img {
      width  :      80px;
          height :    80px;
  filter: drop-shadow(0 4px 12px rgba(107, 91, 149, 0.3));
}

.thankyou-container h1 {
  color: var(--primary-color);
   font-size:2.5rem;
  margin-bottom: 10px;
}

.thankyou-subtitle {

               font-size: 1.3rem;
  color: var(--dark-text);
  margin-bottom: 30px;


}

.thankyou-message  
  {
      text-align :left;
  background-color: var(--bg-light);
    padding    :    30px;
         border-radius: 8px;
	 margin: 30px 0;
  border-left: 4px solid var(--primary-color);
	}

.thankyou-message p {
	 margin-bottom :   15px;
    line-height: 1.8;
}

.thankyou-info


{
  margin   :  25px 0;
}

.thankyou-info h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.thankyou-info ul {
	list-style    : none;
    margin-left   :       0;

}

.thankyou-info li
{
  padding: 10px 0 10px 30px;
  position: relative;
}

.thankyou-info li:before {
  content: "✓";
  position: absolute;
   left: 0;
  color: var(--primary-color);
	font-weight    :  bold;
}

.thankyou-contact {
   background-color: white;
   padding: 20px;
         border-radius: 8px;
                    margin    :      25px 0;
}

.thankyou-contact h3 {
  color: var(--primary-color);
     margin-bottom :  10px;
}


.contact-phone {
   font-size  :    1.4rem;
  color: var(--primary-color);
  margin: 15px 0 0 0 !important;
}

.thankyou-actions {

        display: flex;
   gap     :  20px;
   margin-top    :     30px;
   justify-content: center;
  flex-wrap: wrap;}

.thankyou-social-hint {
   margin-top: 30px;
               padding-top: 30px;
  border-top: 1px solid var(--border-color);
   color: #888;
          font-size: 0.95rem;
}


.next-steps-section {
  padding: 70px 30px;
      background-color     :       white;
}

.next-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
	margin-top: 40px;
}

.next-step-card {
  background-color: var(--bg-light);
	   padding: 30px;
	  border-radius: 8px;
	  text-align: center;
	    transition: all 0.3s ease;
} 

.next-step-card:hover {

	  background-color: var(--secondary-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1); 
	}

.step-icon {
    margin-bottom: 20px;

}

.step-icon img {
	width: 50px;
    height: 50px;
  filter: drop-shadow(0 2px 4px rgba(107, 91, 149, 0.2));
}

.next-step-card h3 {
  color: var(--primary-color);
	 margin-bottom: 10px;
}

.faq-quick-section


{
   padding: 70px 30px;
  background-color: var(--bg-light);
}@media (max-width: 768px) {
    .service-detail-card {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }

    .service-detail-card.reverse .service-detail-content {
        order: initial;
    }

    .service-detail-card.reverse .service-detail-image {
        order: initial;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card.featured {
        transform: scale(1);
    }

    .package-card.featured:hover {
        transform: translateY(-10px);
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .faq-items {
        grid-template-columns: 1fr;
    }

    .thankyou-container {
        padding: 30px;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .next-steps-grid {
        grid-template-columns: 1fr;
    }

    .services-hero h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 30px 15px;
    }

    .services-hero h1 {
        font-size: 1.6rem;
    }

    .service-detail-content h2 {
        font-size: 1.4rem;
    }

    .package-card {
        padding: 25px 15px;
    }

    .package-price {
        font-size: 1.5rem;
    }

    .thankyou-container {
        padding: 20px;
    }

    .thankyou-container h1 {
        font-size: 1.8rem;
    }

    .contact-phone {
        font-size: 1.2rem;
    }
}.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;
    }
}