* {
    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;
}

.navbar {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 1rem 0;
  position: sticky;
  top: 0;
   z-index    :        1000;
  box-shadow: 0 2px 10px 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-brand {
		display: flex;
  align-items: center;




}

.logo-img		{
  height: 50px;
  width: auto;

}

.nav-toggle

{
   display:       none;
      flex-direction: column;
  cursor: pointer;
  gap: 6px; 
	
}

.burger-line
{
   height: 3px;
    background-color: white;
   width: 25px;
   border-radius: 3px;
   transition: all 0.3s ease;
}

.nav-menu {

	   display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link
{
	color:       white;
	text-decoration: none;
   font-weight     :    500;
    transition: color 0.3s ease;
	 padding: 0.5rem 1rem;
}

.nav-link:hover {
    color: #3498db;
}

.hero-section	{
  display     :     grid;
	 grid-template-columns  :     1fr 1fr;
    gap: 3rem;
  max-width: 1200px;
    margin: 0 auto;
  padding: 4rem 2rem;
		 align-items: center;
  background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
}

.hero-content h1 {
  font-size: 3rem;
        margin-bottom  : 1rem;
  color: #2c3e50;
    font-weight :   700;
   line-height: 1.2;
}

.hero-content p	{
  font-size: 1.1rem;
               margin-bottom: 2rem;
    color: #34495e;
   line-height: 1.8; 

}

.cta-button {
   display: inline-block;
	   padding    : 1rem 2.5rem;
	  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
	      color: white;
	    text-decoration   :    none;
	 border-radius: 50px;
	  font-weight: 600;
	    transition:all 0.3s ease;
	  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}



.cta-button:hover{

	  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
     }

.hero-image
{
  width: 100%;
  height: auto;
   border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.offerings-grid {
   max-width: 1200px;
  margin: 3rem auto;
	padding: 0 2rem;
}


.offerings-header {
        text-align: center;
      margin-bottom: 3rem;


}

.offerings-header h2 {
   font-size: 2.5rem;
   margin-bottom :        0.5rem;
   color: #2c3e50;
}

.offerings-header p

{
   font-size: 1.1rem;
  color  :     #7f8c8d;
}

.offerings-container {
    display   :    grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
}

.offering-card {
	 background: white;
  border-radius: 10px;
   overflow:   hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
   transition    :       all 0.3s ease;
}

.offering-card:hover

{
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.offering-img {
  width: 100%;
	height :        200px;
   object-fit: cover;
}

.offering-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
         color: #2c3e50;
  font-size    :       1.3rem;
}

.offering-card p {


   padding: 0.5rem 1.5rem 1.5rem;
  color: #7f8c8d;
  font-size: 0.95rem; 
	}

.conference-section {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   padding: 4rem 2rem;
  margin:  3rem 0;
   color: white;
}

.conference-wrapper {
  max-width: 1200px;
   margin: 0 auto;
      display: grid;
  grid-template-columns   : 1fr 1fr;
   gap: 3rem;
   align-items   :  center;
}

.conference-text h2
{
  font-size: 2rem;
    margin-bottom: 1rem;
}

.conference-text p  {
  font-size: 1rem;
  line-height     :    1.8;
   margin-bottom: 1.5rem;
}

.conference-highlights {
     list-style: none;
  margin-top: 1.5rem;
}

.conference-highlights li {
       padding   :        0.5rem 0 0.5rem 1.5rem;
    position: relative;
}

.conference-highlights li:before {

  content: "✓";
       position: absolute;
   left: 0;
    font-weight :       bold;
  font-size: 1.2rem;

}

.conference-img {
    width: 100%;
   height: auto;
    border-radius: 10px;
}

.cta-section {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    padding: 4rem 2rem;
  color: white;
  text-align: center;
}

.cta-wrapper {


  max-width: 800px;
	margin: 0 auto; 



}

.cta-wrapper h2 {
	font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-wrapper p {
    font-size: 1.1rem;
   margin-bottom: 2rem;
  line-height   :1.6;


}

.cta-button-large {
   padding: 1.2rem 3rem;
  font-size: 1.1rem;
  background: white;
   color: #e74c3c;
}

.cta-button-large:hover		{
  background: #ecf0f1;
}



.contact-section {
    max-width: 900px;
   	margin: 4rem auto;
      padding: 0 2rem;
}

.contact-wrapper {
   background: white;
   padding: 3rem;
     border-radius     :       10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-wrapper h2 {
   font-size: 2rem;
  margin-bottom: 0.5rem;
    color: #2c3e50;
   text-align: center;

}

.contact-wrapper > p {
    text-align: center;
	color: #7f8c8d;
   margin-bottom: 2rem;
}

.contact-form {
    display: grid;
   grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
}

.form-group {
   display: flex;
   flex-direction: column;
}

.form-group:nth-child(5),
.form-group:nth-child(6){
    grid-column: 1 / -1;
}

.form-group label {
	margin-bottom: 0.5rem;
    color: #2c3e50;
   font-weight    :    600;
}

.form-group input,
.form-group select,
.form-group textarea {
	    padding: 0.75rem; 
  border: 2px solid #ecf0f1; 
   border-radius: 5px; 
  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: #3498db;
  box-shadow: 0 0 5px rgba(52, 152, 219, 0.2);
}

.form-submit {
  grid-column: 1 / -1;
   padding: 1rem 2rem;
  background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
   color: white;
    border: none;
    border-radius: 5px;
  font-size: 1rem;
    font-weight: 600;
   cursor     :  pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);


}

.footer     {
  background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
	color: white;
  padding: 3rem 2rem 1rem;
  margin-top: 4rem;
}



.footer-content {
  max-width: 1200px;
  margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
   margin-bottom: 2rem;
}

.footer-logo-img {
   height : 60px;
    width: auto;
  filter: brightness(0) invert(1);
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-address {
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-phone {
        margin-top: 0.5rem;
  font-weight: 600;
}

.footer-links {
	list-style   :       none;
}

.footer-links li {
   margin-bottom   :       0.5rem;
}

.footer-links a {
  color: #bdc3c7;
	text-decoration: none;
    transition :  color 0.3s ease;
}

.footer-links a:hover     {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #34495e;
  color: #95a5a6;
  font-size    :     0.9rem;
}@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: #34495e;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 1rem 2rem;
        border-bottom: 1px solid #2c3e50;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .conference-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .form-group:nth-child(5),
    .form-group:nth-child(6) {
        grid-column: 1;
    }

    .offering-card {
        margin-bottom: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .offerings-header h2 {
        font-size: 1.8rem;
    }

    .cta-wrapper h2 {
        font-size: 1.8rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #16a085 0%, #117a65 100%);
               padding: 4rem 2rem;
  text-align: center;
   color  :white;
}

.services-hero-content h1 {
    font-size: 2.8rem;
   margin-bottom: 1rem;
    font-weight: 700;
}

.services-hero-content p {
  font-size: 1.15rem;
   opacity: 0.95;
}  

.services-overview {
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
    padding: 3rem 2rem;
}

.services-overview-container {

    max-width: 1200px;
    text-align: center;
  margin: 0 auto;
	}

.services-overview-container h2 {

		font-size: 2.2rem;
	margin-bottom: 1rem;
    color: #2c3e50;
     }

.section-intro {
  font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}



.service-detail-section {
  max-width: 1200px;
	margin: 3rem auto;
    padding: 0 2rem;
} 

.service-detail {
	  display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 3rem;
               margin-bottom :    4rem;
   align-items: center;
     }

.service-detail-reverse		{
    grid-template-columns: 1fr 1fr;
}

.service-detail-reverse .service-detail-image  {
   order: 2;
}

.service-detail-reverse .service-detail-content {
    order: 1;
}

.service-detail-image {


  overflow: hidden;
    border-radius    :       12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
     }

.detail-img {

	  width: 100%;
	height: 350px;
   object-fit: cover;
   transition: transform 0.4s ease;
     }

.service-detail:hover .detail-img {
  transform: scale(1.05);
}

.service-detail-content h2 {
    font-size: 1.8rem;
   color    :      #2c3e50;
                    margin-bottom: 1rem;
   font-weight: 700;
}  

.service-detail-content > p {
  color: #34495e;
	font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-list {
    list-style: none;
  margin: 1.5rem 0;

}

.service-list li {
   padding: 0.6rem 0 0.6rem 1.5rem;
 position: relative;
   color: #34495e;
  line-height: 1.6;
}

.service-list li:before {
	  content: "▸";
    position: absolute;
  left: 0;
   color     :  #16a085;
    font-size: 1.2rem;

}

.service-meta {
	  background: #ecf0f1;
	  padding: 1rem 1.2rem;
	  border-left: 4px solid #16a085;
	    margin-top: 1.5rem;
	   border-radius: 5px;
		font-size: 0.95rem;
	    color: #2c3e50;
     }

.pricing-section {
	  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
   padding: 4rem 2rem;
   margin  :      3rem 0;
}

.pricing-container {
  text-align: center;
  max-width   :    1200px;
   margin: 0 auto;
}

.pricing-container h2 {
     font-size :  2.2rem;

	   color: #2c3e50;

	 margin-bottom: 0.5rem;


}

.pricing-intro  
  {
          font-size   :  1rem;
   color: #7f8c8d;
   margin-bottom: 3rem;
}

.pricing-cards {
     display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2.5rem;}

.pricing-card   {
    background: white;
  border-radius: 12px;
    padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.pricing-card-featured {
    border: 3px solid #16a085;
  transform: scale(1.02);
}

.featured-badge {
    position :      absolute;
   top: -12px;
    left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #16a085 0%, #117a65 100%);
  color: white;
   padding: 0.5rem 1.2rem;
	 border-radius: 20px;
    font-size: 0.85rem;
  font-weight: 700;
} 

.pricing-card h3		{
   font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  margin-top: 0.5rem;
	}

.price {
  font-size: 1.8rem;
   color :       #16a085;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.pricing-features    {
  list-style: none;

		 text-align: left;

	               margin-bottom: 1.5rem;

	   min-height: 200px; 

}

.pricing-features li {
  position: relative;
    padding: 0.7rem 0;
  border-bottom: 1px solid #ecf0f1;
   padding-left: 1.5rem;
   color    : #34495e;
}

.pricing-features li:last-child {
  border-bottom     : none;


}

.pricing-features li:before {
  content: "✓";
	position: absolute;
  left: 0;
    color: #27ae60;
    font-weight: bold;
}

.pricing-note {

	    font-size: 0.9rem;
  color: #7f8c8d;
    margin-top :   1.5rem;
    font-style: italic; 
	


}

.why-ethicore {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 3rem 2rem;
}

.why-container h2 {
  margin-bottom: 3rem;
   text-align: center;
    color: #2c3e50;
   font-size: 2.2rem;
}

.why-grid	{
               display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
}

.why-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;
}

.why-card:hover {
  transform: translateY(-5px);
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.why-number {
       font-size: 2.5rem;
    color: #16a085;
  font-weight: 700;
	margin-bottom: 0.5rem;
}

.why-card h3 {
   font-size: 1.3rem;
	color: #2c3e50;
   margin-bottom: 1rem;
}

.why-card p {
    color: #7f8c8d;
  line-height: 1.6;
   font-size: 0.95rem;
}

.cta-services {
  background: linear-gradient(135deg, #2980b9 0%, #1a5276 100%);
   padding: 4rem 2rem;
   text-align: center;
   color  :     white;
 margin: 3rem 0;
}

.cta-services-wrapper {
  max-width: 900px;

	  margin: 0 auto;
}

.cta-services-wrapper h2 {
        font-size: 2.2rem;
		 margin-bottom: 1rem;
	
}

.cta-services-wrapper p {
  font-size  :     1.1rem;
	  margin-bottom  :     2rem;
	    opacity: 0.95;

}

.cta-button-white
	{
  color: #2980b9;
   border: 2px solid white;
  background: white;
}

.cta-button-white:hover
{
   background: #ecf0f1;
}

.thankyou-section {
	  max-width:   800px;
  margin: 3rem auto;
   padding: 3rem 2rem;
}

.thankyou-container {
	background: white;
    padding: 3rem;
   border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
   text-align: center;
}



.thankyou-icon {
      margin-bottom: 2rem;

}

.success-checkmark {
	  width: 80px;
   height: 80px;
  background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
    color: white;
  margin: 0 auto;
  box-shadow: 0 5px 20px rgba(39, 174, 96, 0.3);
    animation: scaleIn 0.5s ease;
     }@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-container h1 {

	  font-size: 2.2rem;
   color: #2c3e50;
  margin-bottom  :       0.5rem;
     }

.thankyou-main-text {


  font-size     :1.1rem;
   color: #34495e;
	 margin-bottom: 2rem;
     }

.thankyou-content {

		text-align  :     left;
         background :   #f8f9fa;
   padding: 2rem;
   border-radius: 10px;
  margin: 2rem 0;}

.thankyou-content p {

	    color: #34495e;
  line-height: 1.8;
    margin-bottom : 1.5rem;

}

.thankyou-info-box {
   background: white;
    padding: 1.5rem;
  border-left: 4px solid #16a085;
    border-radius: 8px;
               margin-bottom: 1.5rem;
}

.thankyou-info-box h3    {
	    color: #2c3e50;
   margin-bottom     :1rem;
    font-size: 1.1rem;}

.thankyou-steps {
    list-style: none;
	    counter-reset: step-counter;
}

.thankyou-steps li {


 padding: 0.7rem 0 0.7rem 2rem;
   line-height: 1.6;
   position: relative;
    color: #34495e;
	counter-increment: step-counter;
}

.thankyou-steps li:before {

	  content: counter(step-counter);
     position: absolute;
   left: 0;
          width: 24px;
   height: 24px;
	background: #16a085;
   color: white;
   border-radius: 50%;
    display: flex;
    align-items: center;
   justify-content: center;
   font-weight: bold;
        font-size: 0.85rem;
     }

.thankyou-contact-quick  {
   background: white;
   padding     :1.5rem;
    border-radius     : 8px;
   margin-bottom: 1.5rem;
   border: 2px solid #ecf0f1;
}

.thankyou-contact-quick p
{
	margin-bottom: 0.5rem;
  color: #34495e;
}

.phone-display		{
	  font-size: 1.5rem;
    color: #16a085;
  font-weight: 700;
   margin-bottom: 0.5rem;



}

.hours-display {
	 font-size     :    0.9rem;
    color: #7f8c8d;
}

.thankyou-actions {
   display: grid;
   grid-template-columns: 1fr 1fr;
  gap   :     1rem;
   margin-top: 2rem;
}

.button-primary    {
    display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #16a085 0%, #117a65 100%);
  color: white;
   text-decoration: none;
  border-radius: 8px;
   font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(22, 160, 133, 0.3);
}

.button-primary:hover
	{

  transform: translateY(-2px);

  box-shadow: 0 6px 18px rgba(22, 160, 133, 0.4);

}

.button-secondary


{
   display :     inline-block;
   padding: 1rem 2rem;
          background: white;
    color: #16a085;
    text-decoration: none;
   border :     2px solid #16a085;
   border-radius: 8px;
        font-weight: 600;
    transition: all 0.3s ease;
}

.button-secondary:hover {
    background: #f8f9fa;
	
}

.resources-section {
  background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
    padding: 4rem 2rem;
}

.resources-container {
	margin: 0 auto;
   text-align: center;
    max-width: 1200px;
}

.resources-container h2 {
  font-size :      2rem;
    color: #2c3e50;
                    margin-bottom    :    0.5rem; 
	
}

.resources-container > p {
               color: #7f8c8d;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.resources-grid {
 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem; 
	
}

.resource-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;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.resource-card h3 {
   font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.resource-card p {
      color: #7f8c8d;
    line-height: 1.6;
   font-size: 0.95rem;
}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .service-detail,
    .service-detail-reverse {
        grid-template-columns: 1fr;
    }

    .service-detail-reverse .service-detail-image,
    .service-detail-reverse .service-detail-content {
        order: unset;
    }

    .detail-img {
        height: 250px;
    }

    .service-detail-content h2 {
        font-size: 1.5rem;
    }

    .pricing-card-featured {
        transform: scale(1);
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-actions {
        grid-template-columns: 1fr;
    }

    .pricing-intro,
    .section-intro {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 1.5rem;
    }

    .pricing-container h2,
    .why-container h2,
    .cta-services-wrapper h2,
    .thankyou-container h1 {
        font-size: 1.6rem;
    }

    .service-detail-content h2 {
        font-size: 1.3rem;
    }

    .success-checkmark {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .thankyou-container {
        padding: 1.5rem;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }
}.policySection {
     padding: 80px 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
   min-height   :   100vh;

}

.policyContainer {
    max-width: 900px;
    margin: 0 auto;
   text-align    :  left;
   background: white;
  padding   :3rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); 
	
}

.policyContainer h2   {
   color: #2c3e50;
    margin-bottom: 2rem;
    border-bottom   :  3px solid #16a085;
  font-weight: 700;
    font-size: 2.8rem;
    padding-bottom: 1rem;
}

.policyContainer h3 {
    font-size: 1.5rem; 
	    color: #34495e; 
	    margin-top: 2.5rem; 
	    margin-bottom: 1rem; 
	   font-weight: 600;
}

.policyContainer p {

               color: #555555;
    margin-bottom: 1.2rem;
 line-height: 1.9;
					font-size     :  1rem;
   text-align: justify;

}

.policyContainer p:first-of-type   {
  font-size: 1.05rem;
   font-weight    :     500;
}@media (max-width: 1024px) {
    .policyContainer {
        padding: 2.5rem;
    }

    .policyContainer h2 {
        font-size: 2.4rem;
    }

    .policyContainer h3 {
        font-size: 1.35rem;
    }
}

@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer {
        padding: 2rem;
        border-radius: 8px;
    }

    .policyContainer h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h3 {
        font-size: 1.2rem;
        margin-top: 2rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        line-height: 1.8;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
    }

    .policyContainer {
        padding: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        padding-bottom: 0.8rem;
    }

    .policyContainer h3 {
        font-size: 1.1rem;
        margin-top: 1.5rem;
        margin-bottom: 0.7rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 0.8rem;
        text-align: left;
    }
}

@media print {
    .policySection {
        background: white;
        padding: 0;
    }

    .policyContainer {
        box-shadow: none;
        padding: 0;
    }

    .navbar,
    .footer {
        display: none;
    }
}