* {
       margin: 0;
  padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --accent-color: #3498db;
    --accent-hover: #2980b9;
    --light-bg: #ecf0f1;
    --text-dark: #2c3e50;
    --text-light: #555;
    --border-color: #ddd;
    --success-color: #27ae60;
    --error-color: #e74c3c;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text-dark);
   line-height: 1.6;
   background-color    :     #fff;
}

.navbar-container {
  background-color: var(--primary-color);
  padding: 0;
  position: sticky;
   top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar-main {
    max-width: 1200px;

	   margin     :    0 auto;

	  padding: 1rem 2rem;
}

.nav-wrapper {
	display: flex;
   justify-content: space-between;
   align-items     :center;


}

.logo-section {
       flex-shrink: 0;
}

.navbar-logo {

	   height: 40px;
 width: auto;
  filter: brightness(0) invert(1);
}

.burger-menu {
  display: none;
    background: none;
  border: none;
    cursor: pointer;
    flex-direction: column;
  gap: 6px;
  padding: 8px;
}  

.burger-line {
    width: 25px;
   height: 3px;
   background-color: #fff;
  transition: all 0.3s ease;
    border-radius: 2px;

}

.nav-links {
    display: flex;
   list-style: none;
  gap: 2rem;
}

.nav-link {
    color    : #fff;
	   text-decoration: none;
	  font-weight: 500;
	     transition: color 0.3s ease;
	  font-size: 1rem;
}

.nav-link:hover {
  color: var(--accent-color);
}

.hero-section {
    display: flex; 
	  align-items:center; 
		justify-content: space-between; 
	    gap: 3rem; 
	     max-width :      1200px; 
	  margin    :       4rem auto; 
	  padding: 0 2rem; 
	    min-height: 500px;
}

.hero-content


{
           flex: 1;



}

.hero-content h1   {
    font-size: 3rem;
   font-weight: 700;
	 line-height: 1.2;
    margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
    line-height: 1.8;
}


.hero-image {
   flex: 1;
	   overflow     :        hidden;
	   border-radius: 12px;
}

.hero-image img {
   width: 100%;
   height  : auto;
    display     : block;
   object-fit: cover;
}

.cta-button {
   padding: 14px 32px;
    border: none;
    border-radius  :    8px;
   font-size : 1rem;
    font-weight  :      600;
    cursor: pointer;
   transition: all 0.3s ease;
   text-decoration: none;
    display: inline-block;
}

.cta-button.primary {


  background-color: var(--accent-color);
  color: #fff;}

.cta-button.primary:hover  
  {
  background-color: var(--accent-hover); 
  transform: translateY(-2px); 
  box-shadow: 0 8px 16px rgba(52, 152, 219, 0.3);

}

.cta-button.secondary {
  background-color: var(--primary-color);
   color: #fff;
}

.cta-button.secondary:hover {
  background-color : #1a252f;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(44, 62, 80, 0.3);
}

.services-showcase {
    margin: 5rem auto;
  padding: 0 2rem;
    max-width: 1200px;
}



.services-showcase h2 {
      font-size  :      2.5rem;
	text-align: center;
      margin-bottom: 3rem;
  color: var(--primary-color);
    font-weight: 700;
}

.services-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
  background: #fff;
  border-radius: 12px;
    overflow     :hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
   transition    :     all 0.3s ease;
}

.service-card:hover
{
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);

}

.service-card img {
    width : 100%;
  height  :240px;
   object-fit     :cover;
   display: block;
}

.service-card h3 {
 font-size: 1.3rem;
     margin: 1.5rem 1.5rem 0.8rem;
  color: var(--primary-color);
   font-weight     :   600;}

.service-card p {


  margin: 0 1.5rem 1.5rem;
  color: var(--text-light);
  font-size: 0.95rem;
   line-height: 1.7;}

.benefits-section {
  background-color: var(--light-bg);
  padding: 4rem 2rem;
  margin: 3rem 0;
}

.benefits-section h2 {
  font-size: 2.5rem;
    text-align     :        center;
   margin-bottom :       3rem;
  color: var(--primary-color);
   font-weight: 700;
}

.benefits-content {

	  max-width   :     1200px;
 margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem; 

	}

.benefit-item{
   background: #fff;
   padding    :     2rem;
   border-radius: 10px;
  border-left: 4px solid var(--accent-color);


}

.benefit-item h3 {
  font-size :1.3rem;

	    margin-bottom: 1rem;

	  color: var(--primary-color);

	   font-weight: 600;

}

.benefit-item p {
  color: var(--text-light);
   line-height: 1.7;
  font-size: 0.95rem;
}

.cta-section {
  text-align  :      center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
   color: #fff;
  margin: 3rem 0;
}

.cta-section h2 {
  font-size: 2.2rem; 
   margin-bottom: 1rem; 
   font-weight     :        700;
}

.cta-section p {
  font-size: 1.1rem;

	    margin-bottom: 2rem;

	    max-width: 600px;

	  margin-left: auto;

	  margin-right: auto;

	  line-height: 1.8;
}

.contact-section {
  margin: 4rem auto;
  max-width: 1200px;
  padding: 0 2rem;
}

.contact-section h2 {

	  font-size: 2.5rem; 
		text-align: center; 
	   margin-bottom: 3rem; 
	  color: var(--primary-color); 
	    font-weight: 700;
	}

.contact-wrapper {
   display: grid;
               grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form {
  background: #fff;
}

.form-group {
   margin-bottom: 1.5rem;
	}

.form-group label {
       display: block;
   font-weight: 600;
    margin-bottom: 0.5rem;
  color: var(--primary-color);
    font-size :    0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
   font-family   :   inherit;
   font-size   :        0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;


}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus   {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height  :  120px;
}

.form-submit {
  background-color: var(--accent-color);
	 color: #fff;
   padding: 14px 32px;
	border: none;
    border-radius: 6px;
   font-weight: 600;
   font-size  :       1rem;
  cursor: pointer;
  transition    :  all 0.3s ease;
  width   :   100%;
}

.form-submit:hover
{
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(52, 152, 219, 0.3);
}

.contact-info {
     background-color: var(--light-bg);

	   padding: 2rem;

	                    border-radius:   10px;
}

.contact-info h3 {
    font-size: 1.5rem;

	    margin-bottom: 2rem;

	  color: var(--primary-color);

		font-weight: 700;
}

.info-item {
	 margin-bottom: 2rem;
}

.info-item h4


{
    font-weight :600;
  color: var(--primary-color);
    margin-bottom: 0.5rem;
   font-size: 1rem;
}

.info-item p  {
  color: var(--text-light);
   line-height: 1.6;
}

.footer-main   {
  background-color: var(--primary-color);
  color: #fff;
    padding: 3rem 2rem 1.5rem;
    margin-top :  5rem;
}

.footer-content     {
	max-width: 1200px;
      margin     :      0 auto;
       display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap :     2rem;
       margin-bottom: 2rem;
      padding-bottom: 2rem;
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h4 {

	   font-size: 1rem;
  font-weight:       600;
   margin-bottom :    1rem;

}



.footer-logo-img {
   height: 35px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-links {
	list-style: none;
}

.footer-links li {
   margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
 transition: color 0.3s ease;
  font-size: 0.9rem;


}

.footer-links a:hover {
  color: var(--accent-color);
}

.footer-address {
    line-height: 1.6;
    font-size: 0.9rem;
  margin-bottom: 1rem;


}

.footer-phone {
	   font-size: 0.9rem;
   font-weight: 600;
	}

.footer-bottom {

       max-width: 1200px;
    margin: 0 auto;
  text-align    : center;
   font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background-color: var(--primary-color);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
    }

    .nav-links.active {
        max-height: 300px;
        padding: 1rem 0;
    }

    .nav-links li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link {
        display: block;
        padding: 1rem 2rem;
    }

    .hero-section {
        flex-direction: column;
        gap: 2rem;
        margin: 2rem auto;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .services-showcase h2,
    .benefits-section h2,
    .contact-section h2 {
        font-size: 1.8rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .cta-section h2 {
        font-size: 1.6rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .benefits-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .navbar-logo {
        height: 32px;
    }

    .nav-links {
        gap: 0;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .services-showcase h2,
    .benefits-section h2,
    .contact-section h2 {
        font-size: 1.5rem;
    }

    .service-card img {
        height: 200px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}.services-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
  color: #fff;
   text-align: center;
   padding     :       4rem 2rem;
	 margin-bottom :  3rem;


}

.services-header h1 {
  font-size: 2.8rem;
    font-weight   : 700;
   margin-bottom:  1rem;
}

.services-header p {
                    font-size: 1.1rem;
  max-width: 600px;
     margin: 0 auto;
  line-height     :   1.8;
    opacity: 0.95;
}

.services-detailed {
	max-width :        1200px;
   margin: 0 auto;
    padding: 0 2rem;
}

.service-detailed-item {
    display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 3rem;
   align-items: center;
  margin-bottom: 5rem;
    padding    :    2rem 0;
}

.service-detailed-item.alt {
   grid-template-columns: 1fr 1fr;
}

.service-detailed-item.alt .service-detail-content {


    order: 1;}

.service-detailed-item.alt .service-detail-image {
	order: 2;
}

.service-detail-image {
    overflow: hidden;
    -webkit-border-radius: 12px;
    -moz-border-radius   : 12px;
   border-radius     :        12px;
}

.service-detail-image img {
          width: 100%;
   height: auto;
    display: block;
    object-fit: cover; 
	
}

.service-detail-content h2   {
    font-size: 2rem;
  color: var(--primary-color);
    margin-bottom: 1rem;
	font-weight: 700;
}

.service-intro {
    font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom  :     1.5rem;
  line-height: 1.8;
  font-style: italic;
}

.service-detail-content h3 {
          font-size     :        1.2rem;
  color: var(--primary-color);
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  font-weight     :600;
}

.service-features {
    list-style: none;
   margin-bottom:     1.5rem;
}

.service-features li {
    padding: 0.6rem 0;
  padding-left: 1.8rem;
    position: relative;
  color: var(--text-light);
  line-height: 1.6;
}

.service-features li:before   {
  content: "▸";

	  position     :      absolute;

	   left: 0;

	  color: var(--accent-color);

	   font-weight: bold; 

}

.service-detail-content p {


  color: var(--text-light);
	line-height :      1.8;
   margin-bottom: 1rem;
}

.service-meta {
	display: flex;
    gap:    2rem;
    margin-top: 2rem;
   padding-top    :  1.5rem;
  border-top: 1px solid var(--border-color);
   font-size: 0.9rem;
}

.service-duration,
.service-level    {
  color: var(--primary-color);
      font-weight: 600;


}

.pricing-overview
	{
	  background-color: var(--light-bg);
  padding: 3rem 2rem;
  margin: 4rem 0;
     }

.pricing-overview h2 {
  font-size    :      2.2rem;
  color: var(--primary-color);
	 text-align     :center;
    margin-bottom: 2.5rem;
   font-weight     :      700;
}

.pricing-table {
	max-width: 1100px;
   margin:  0 auto;
    background    :        #fff;
  border-radius: 10px;
   overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.pricing-row {
    display: grid;
   grid-template-columns: 2fr 1fr 1.2fr 1fr;
        gap: 1.5rem;
  padding: 1.5rem;
   align-items: center;
  border-bottom: 1px solid var(--border-color);
}

.pricing-row:last-child {
   border-bottom: none;


}

.pricing-header  
  {
  background-color: var(--primary-color);
	 color    :   #fff;
  font-weight: 700;
    padding: 1.5rem;
}

.pricing-header .pricing-col {
     color: #fff;}

.pricing-row:nth-child(odd):not(.pricing-header) {
  background-color: rgba(236, 240, 241, 0.5);
}

.pricing-col {
  color: var(--text-dark);
}

.pricing-name {
   font-weight: 600;
  color: var(--primary-color);
}

.link-cta {
	  color: var(--accent-color);
  text-decoration: none;
   font-weight :  600;
   transition     :color 0.3s ease;
	padding: 0.5rem 1rem;
  border: 1px solid var(--accent-color);
   border-radius     :        6px;
   display: inline-block;}

.link-cta:hover {
  background-color: var(--accent-color);
      color: #fff;
}

.faq-services {
    max-width: 1000px;
  margin: 4rem auto;
 padding: 0 2rem;
}

.faq-services h2  
  {
  font-size: 2.2rem;
  color: var(--primary-color);
    text-align: center;
    margin-bottom :   2.5rem;
  font-weight: 700;
}

.faq-container {


    display: grid;
    gap: 1.5rem;

}

.faq-item {
   background  :   #fff;
  border-left: 4px solid var(--accent-color);
  padding: 1.5rem;
    border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
   transition: all 0.3s ease; 
	
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateX(4px);
}

.faq-question {
    font-size: 1.1rem;
 font-weight: 600;
  color: var(--primary-color);
   margin-bottom: 0.8rem;
  cursor: pointer;
}

.faq-answer		{
  color: var(--text-light);
   line-height: 1.8;
    font-size: 0.95rem;
}

.services-cta {
  background: linear-gradient(135deg, var(--accent-color) 0%, #2980b9 100%);
    color: #fff;
        text-align: center;
    padding: 3rem 2rem;
   margin: 4rem 0 0;
  border-radius     :       0;
}

.services-cta h2 {

  font-size  :  2rem;
   margin-bottom: 1rem;
   font-weight  :    700;

}

.services-cta p {
    line-height: 1.8;
	margin-bottom: 2rem;
	 font-size: 1.1rem;
}

.thankyou-container {
  min-height: calc(100vh - 200px);
   display: flex;
  align-items: center;
         justify-content:center;
  padding: 3rem 2rem;
}

.thankyou-content {
  background: #fff;
    border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  padding: 3rem;
  max-width: 700px;
		 text-align:     center;


}

.thankyou-icon {
    width: 100px;
    height: 100px;
   margin: 0 auto 2rem;
}

.thankyou-icon svg {
   width: 100%;

	    animation: scaleIn 0.6s ease-out;

	    height: 100%;
}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-content h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
        font-weight: 700;
}

.thankyou-content h2 {
  font-size: 1.5rem;
  color: var(--accent-color);
    margin-bottom: 1.5rem;
	font-weight: 600;
}

.thankyou-message {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
        margin-bottom: 2rem;
}

.thankyou-info {
  background-color: var(--light-bg);
		 padding: 2rem;
	    border-radius: 8px;
	        margin-bottom: 2rem;
	 text-align: left;
}

.thankyou-info h3	{
	    font-size: 1.2rem;
  color: var(--primary-color);
               margin-bottom: 1.5rem;
   font-weight: 600;
    text-align    :center;
}

.next-steps{
   list-style:none;
}

.next-steps li {
    display :        flex; 
		align-items: flex-start; 
	     margin-bottom: 1.2rem; 
	   gap: 1rem;
}

.next-steps li:last-child {
  margin-bottom  :    0;
}

.step-number {
     background-color: var(--accent-color);
  color: #fff;
   width: 32px;
    height: 32px;
  border-radius: 50%;
	display: flex;
    align-items: center;
   justify-content   :     center;
  font-weight: 700;
	 flex-shrink: 0;
     }

.step-text {
  color: var(--text-light);
   line-height: 1.6;
}

.thankyou-contact-info {
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(52, 152, 219, 0.05) 100%);
    padding :    2rem;
  border-radius    :        8px;
       margin-bottom     :     2rem;
	text-align     :    left;
}

.thankyou-contact-info h3 {
  color: var(--primary-color);
  margin-bottom :        1rem;
    font-weight: 600;
}

.thankyou-contact-info p {
  color: var(--text-light);
    margin-bottom: 0.5rem;
   line-height: 1.6;
}

.contact-details {
    margin-top: 1rem;
}

.contact-details p {
  margin-bottom: 0.5rem;
}

.thankyou-actions {
   display: flex;
  gap: 1.5rem;
    justify-content: center;
  flex-wrap: wrap;
}

.action-link {
   padding: 12px 28px;
   border-radius: 6px;
  text-decoration   : none;
   font-weight:    600;
  transition: all 0.3s ease;
  display: inline-block; 

}

.action-link.primary {

	  background-color: var(--accent-color);
  color: #fff;
	}

.action-link.primary:hover {
     background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(52, 152, 219, 0.3);



}

.action-link.secondary {
  background-color: var(--primary-color);
                    color: #fff;
}

.action-link.secondary:hover

{
   background-color: #1a252f;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(44, 62, 80, 0.3);
}

.recommended-reading {
  background-color: var(--light-bg);

	  padding     :        3rem 2rem;
}

.recommended-reading h2 {
	font-size: 2rem;
  color: var(--primary-color);
   text-align     :center;
	margin-bottom: 2.5rem;
   font-weight: 700;
}

.reading-items {

    max-width: 1000px;
   margin: 0 auto;
     display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 2rem;
	}

.reading-card {


    background: #fff; 
	    padding: 2rem; 
	   border-radius: 8px; 
	  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06); 
	   transition: all 0.3s ease;

}

.reading-card:hover {

	  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);


}

.reading-card h3 {
    font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 0.8rem;
    font-weight: 600; 

}

.reading-card p {
  color: var(--text-light);
   line-height: 1.7;
   font-size: 0.9rem;
}@media (max-width: 768px) {
    .services-header h1 {
        font-size: 1.8rem;
    }

    .services-header p {
        font-size: 1rem;
    }

    .service-detailed-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .service-detail-content h2 {
        font-size: 1.5rem;
    }

    .service-meta {
        flex-direction: column;
        gap: 0.8rem;
    }

    .pricing-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }

    .pricing-header {
        display: none;
    }

    .pricing-row:before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--primary-color);
    }

    .pricing-header .pricing-col {
        display: none;
    }

    .faq-item {
        padding: 1.2rem;
    }

    .faq-question {
        font-size: 1rem;
    }

    .services-cta h2 {
        font-size: 1.5rem;
    }

    .thankyou-content {
        padding: 2rem;
    }

    .thankyou-content h1 {
        font-size: 2rem;
    }

    .thankyou-content h2 {
        font-size: 1.2rem;
    }

    .thankyou-actions {
        gap: 1rem;
    }

    .action-link {
        flex: 1;
        min-width: 140px;
    }

    .recommended-reading h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .services-header {
        padding: 2rem 1rem;
    }

    .services-header h1 {
        font-size: 1.5rem;
    }

    .service-detail-content h2 {
        font-size: 1.3rem;
    }

    .pricing-table {
        border-radius: 0;
    }

    .pricing-overview {
        padding: 2rem 1rem;
    }

    .thankyou-container {
        padding: 1rem;
    }

    .thankyou-content {
        padding: 1.5rem;
        border-radius: 8px;
    }

    .thankyou-icon {
        width: 80px;
        height: 80px;
    }

    .thankyou-content h1 {
        font-size: 1.5rem;
    }

    .next-steps li {
        gap: 0.8rem;
    }

    .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }

    .action-link {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .reading-items {
        grid-template-columns: 1fr;
    }
}.policySection {
	   padding: 80px 2rem; 
		background: #f8f9fa; 
	  min-height: calc(100vh - 300px);
}

.policyContainer {
        max-width: 800px; 
    margin: 0 auto; 
    text-align  :  left; 
  background: #fff; 
   padding: 3rem; 
   border-radius: 10px; 
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.policyContainer h1 {
    font-size: 2.8rem;
     color: var(--primary-color);
       margin-bottom   :     2rem;
   	font-weight: 700;
     border-bottom: 3px solid var(--accent-color);
      padding-bottom: 1rem;
}

.policyContainer h2 {
 font-size: 1.6rem;
  color: var(--primary-color);
    margin-top     :    2rem;
    margin-bottom: 1rem;
   font-weight: 600;
}

.policyContainer p {
	  color: var(--text-light);
   margin-bottom: 1.2rem;
    line-height: 1.8;
                    font-size: 1rem; 


}

.policyContainer strong {
  color: var(--primary-color);
   font-weight: 600;
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer {
        padding: 2rem;
        border-radius: 8px;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
    }

    .policyContainer {
        padding: 1.5rem;
        border-radius: 6px;
    }

    .policyContainer h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .policyContainer h2 {
        font-size: 1.1rem;
        margin-top: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }
}