*   {
	   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: #ffffff;
}

.navbar {

         background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
   position: sticky;
  top: 0;
    z-index: 1000;
   transition: all 0.3s ease;
	}

.nav-container {


	max-width    :       1200px;
    margin: 0 auto;
   padding   :       1rem 2rem;
	display: flex;
   justify-content: space-between;
         align-items: center;


}

.nav-brand {
   display  :      flex;
    align-items: center;
    cursor  :     pointer;
}

.brand-logo {
   height:50px;
    width: auto;
  object-fit: contain;
}

.nav-menu {
  gap: 2rem;
   display: flex;
  align-items: center;
   list-style: none;
}

.nav-item {
       position: relative;
}

.nav-link {
    text-decoration: none;
  color: #2c3e50;
  font-weight: 500;
      transition  :     color 0.3s ease;
	 font-size: 1rem;
}

.nav-link:hover {
  color: #3498db;

}

.nav-link::after {
  content: ''; 
  position     :  absolute; 
  bottom  :  -5px; 
   left: 0; 
   width: 0; 
    height: 2px; 
  background: linear-gradient(90deg, #3498db, #2ecc71); 
  transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
   display: none;
                    flex-direction: column;
    cursor: pointer;
   gap: 5px;
}

.hamburger span
{
    width: 25px;
  height: 3px;
  background-color: #2c3e50;
	 border-radius :3px;
  transition   :      all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
   opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding     :80px 2rem;
  display: flex;
   align-items: center;
  justify-content    :     center;
    gap   :     3rem;
    max-width: 1400px;
   margin: 0 auto;
   border-radius: 0; 
	
} 

.hero-content {
   flex :      1;
  animation: fadeInLeft 0.8s ease;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.hero-content p {
    font-size    :1.2rem;
   margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-image {


   flex: 1;
	width   :        100%;
    height: auto;
   border-radius: 15px;
    object-fit: cover;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
   animation: fadeInRight 0.8s ease;}



.cta-button {
   display: inline-block;
          padding  :       12px 30px;
    border-radius: 50px;
  text-decoration: none;
    font-weight   :    600;
    transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.cta-button.primary   {
    background: #2ecc71;
    color: white;
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.cta-button.primary:hover  {
    background: #27ae60;
	  transform: translateY(-3px);
	  box-shadow: 0 6px 20px rgba(46, 204, 113, 0.5);
}

.cta-button.secondary {
  background    :#3498db;
  color: white;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.cta-button.secondary:hover {
   background: #2980b9; 
  transform: translateY(-3px); 
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.5);


}

.section-container {

	    max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;

}

section {


  padding: 80px 0;


}

section h2 {
    font-size: 2.5rem;
   text-align     :   center;
  margin-bottom: 3rem;
	color: #2c3e50;
	position  :      relative;
          padding-bottom  :1rem;
}

section h2::after {
	  content: '';
    position: absolute;
  bottom: 0;
	left: 50%;
  transform: translateX(-50%);
    width: 80px;
	 height: 4px;
  background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 2px;
}

.about-section     {
   background: #f8f9fa;
}


.about-grid {

	    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap    :   2rem;
     }

.about-card {
    background: white;
  padding     :    2rem;
  border-radius  : 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.about-card:hover 
 {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.about-card h3 {
     color  :      #2c3e50;
 font-size  :   1.5rem;
   margin-bottom: 1rem;
}

.about-card p {
    color: #555;
   line-height: 1.8;
}

.services-preview {
          background: white;
}

.services-grid {
     display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
}

.service-item {

		 background: white;
    border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
               transition: all 0.4s ease;
   border: 1px solid #e8e8e8;
	}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
} 

.service-image-wrapper {
  width: 100%;
    height: 200px;
   overflow: hidden;
}  

.service-image {
    -moz-transition: transform 0.4s ease;
   width: 100%;
    -o-transition: transform 0.4s ease;
   -webkit-transition:   transform 0.4s ease;
 height: 100%;
   object-fit: cover;
    transition: transform 0.4s ease;


}

.service-item:hover .service-image {
     transform: scale(1.08);


}

.service-item h3 {
   font-size: 1.3rem;
      color: #2c3e50;
     padding: 1.5rem 1.5rem 0.5rem;
}

.service-item p {
    color: #666;
    padding: 0.5rem 1.5rem 1.5rem;
   font-size: 0.95rem;
    line-height: 1.7;
}

.conference-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
       color: white;
} 

.conference-content {
  display: flex;
  gap: 3rem;
   align-items: center;
   flex-wrap: wrap;
}

.conference-content > p {
     flex: 1; 
  min-width: 300px; 
  font-size: 1.1rem; 
   line-height: 1.8;
}

.conference-highlights {
  flex: 1;
  min-width: 300px;
	 display: grid;
   grid-template-columns: 1fr;
    gap: 1.5rem;
}

.highlight	{
  background: rgba(255, 255, 255, 0.1);
   padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #2ecc71;
  backdrop-filter: blur(10px);
}

.highlight strong {
    display: block;
   margin-bottom: 0.5rem;
  font-size: 1.1rem;
     }

.highlight p  {
    font-size:   0.95rem;
    opacity: 0.9;
}

.cta-section {
	background: #f8f9fa;
    text-align: center;
}

.cta-section h2 
 {
	    margin-bottom: 1.5rem;
}



.cta-section p {
   font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
               max-width: 600px;
    margin-left: auto;
   margin-right   :auto;
}

.contact-section {
        background: white;
}

.contact-section h2 {
   margin-bottom: 1rem;
}

.contact-section > .section-container > p {
    text-align: center;
   font-size    :      1.1rem;
    color: #666;
  margin-bottom  :2rem;
}

.contact-form {
  max-width: 600px;
   margin: 0 auto;
   background: #f8f9fa;
    padding    :    2rem;
    border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.form-group


{

	  margin-bottom:   1.5rem;
   display: flex;
   flex-direction   :column;
	}

.form-group label {
   color: #2c3e50;
	font-weight    :        600;
  margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
        font-size: 1rem;
  font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
	 border-color: #3498db;
  box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
}

.submit-button 
 {
  width: 100%;
	padding: 14px;
  background: linear-gradient(90deg, #3498db, #2ecc71);
   color: white;
  border: none;
    border-radius: 8px;
	font-weight: 600;
    font-size: 1rem;
  cursor: pointer;
   transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.submit-button:hover {
     transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.5);
}

.submit-button:active
	{
  transform: translateY(0);
}

.footer {
  color: white;
    padding    :      60px 0 0;
  background: #2c3e50;
}

.footer-container {
     max-width: 1200px;
   margin: 0 auto;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}  

.footer-section h4 {
  font-size: 1.2rem;
	margin-bottom: 1.5rem;
    color: #2ecc71;

}

.footer-logo


{
    display: flex;
   align-items: center;
}

.footer-brand-logo {
  height: 60px;
	width: auto;
         object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-links {


   list-style: none;
	}

.footer-links li {
    margin-bottom: 0.8rem;


}

.footer-links a {
               color: #bdc3c7;

	   text-decoration: none;

		 transition: color 0.3s ease;

	    font-size: 0.95rem;
}

.footer-links a:hover


{
   color: #2ecc71;
}

.footer-contact {
    color: #bdc3c7;
	 font-size: 0.95rem;
   line-height  :  1.8;
  margin-bottom: 1rem;
}

.footer-contact strong {
      color   :        #2ecc71;
	
}

.footer-bottom {
                    background: #1a252f;
  text-align: center;
   padding: 1.5rem 2rem;
  color: #95a5a6;
    font-size: 0.9rem; 

}@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 1rem 2rem;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-link::after {
        display: none;
    }

    .hero {
        flex-direction: column;
        padding: 40px 1rem;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    section {
        padding: 40px 0;
    }

    section h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .conference-content {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    section h2 {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 10px 24px;
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
    }
}.services-hero {
	  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
   padding: 100px 2rem;
  text-align: center;


}

.services-hero h1 {
  font-size: 3rem;
	 margin-bottom: 1rem;
    font-weight: 700;
}

.services-hero p

{
    font-size: 1.3rem;
    opacity: 0.95;
}

.services-detailed {
   background: white;
  padding    :   60px 0;
}

.services-list {
  display: flex;
   flex-direction: column;
	gap: 3rem;
}

.service-detailed-card	{
   background  : white;
	border: 1px solid #e8e8e8;
   border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
   animation: slideUp 0.6s ease;

}

.service-detailed-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); 
	  transform: translateY(-5px);
}

.service-detail-header {
	display     :   grid;
    grid-template-columns: 300px 1fr;
  gap: 2rem;
  padding: 2rem;
  background: #f8f9fa;
    align-items: center; 
	}

.service-detail-image{
	 width: 100%;

    object-fit: cover;

    border-radius: 10px;

    height: 250px;
}

.service-detail-info h2	{
	font-size: 1.8rem;
  color  :        #2c3e50;
  margin-bottom: 1rem;
}

.service-duration	{
  display: inline-block;
   background: #3498db;
  color :      white;
   padding: 6px 14px;
   border-radius: 20px;
   font-size: 0.9rem;
    font-weight: 600;
}

.service-detail-content {
  padding: 2rem;
}

.service-detail-content h3   {


   font-size: 1.3rem;
    color: #2c3e50;
    margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  border-bottom: 3px solid #2ecc71;
                    padding-bottom: 0.5rem;
     }

.service-detail-content h3:first-of-type {
    margin-top     :    0;
}

.service-detail-content p {
    color    :       #555;
   line-height: 1.8;
   margin-bottom: 1rem; 
	
}  

.service-modules {
    list-style: none;
   margin-bottom: 1.5rem; 
	
}

.service-modules li {
    padding: 0.8rem 0;
       padding-left: 2rem;
    color: #555;
	position   :relative;
   line-height: 1.6;
}

.service-modules li::before {
  content: '→';
   position: absolute;
  left: 0;
	 color: #2ecc71;
   font-weight: bold;
}

.service-price {


       margin-bottom: 1.5rem;
     color: #2ecc71;
       font-weight: 700;
      font-size: 1.2rem;
     } 

.service-cta-button {
   display: inline-block;
		 padding: 12px 28px;
	  background: linear-gradient(90deg, #3498db, #2ecc71);
	   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);
}

.service-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.5);
}

.service-options {
   background: #f8f9fa;
  padding: 80px 0;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                    gap: 2rem;
}

.option-card {
  background: white;
   padding: 2rem;
    border-radius: 10px;
    text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
    border-top: 4px solid #3498db;
}

.option-card:nth-child(2) {
    border-top-color: #2ecc71;
}

.option-card:nth-child(3) {
   border-top-color: #e74c3c;
	}

.option-card:nth-child(4) {
    border-top-color: #f39c12;
}

.option-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.option-card h3 {
   font-size: 1.3rem;
   color: #2c3e50;
   margin-bottom: 1rem;
}

.option-card p {
  color: #666;
   line-height     :   1.7;
    font-size: 0.95rem;
}

.pricing-info {
   background :white;
    padding     :   80px 0; 
	
}

.pricing-content  
  {


    max-width: 800px;
    margin: 0 auto;

}

.pricing-content p {
   font-size: 1.05rem;
   color     :    #555;
    line-height:     1.8;
   margin-bottom: 1.5rem;
}

.pricing-factors
	{
  list-style: none;
   background     :  #f8f9fa;
   padding: 2rem;
  border-radius: 10px;
   margin-bottom: 1.5rem;

}

.pricing-factors li {
        padding-left: 2rem;
  padding    :  0.7rem 0;
   position: relative;
  color: #555;
}

.pricing-factors li::before {

	  color: #2ecc71;
  content: '✓';
     position: absolute;
    left: 0;
   font-weight: bold;
	font-size: 1.2rem;
     }

.pricing-note {
	background: #e8f5e9;
	padding:  1.5rem;
	border-radius: 10px;
   border-left: 4px solid #2ecc71;
    color: #2c3e50;
  margin-bottom: 2rem !important;
}

.pricing-info .cta-button {
  margin-top: 1rem;
}

.thankyou-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 2rem;
  min-height: calc(100vh - 200px);
	 display: flex;
    align-items:  center;

}

.thankyou-container {
  text-align:  center;
   max-width: 700px;
   margin: 0 auto;
  animation: slideUp 0.8s ease;
}

.thankyou-icon {
   margin-bottom: 2rem;
}

.thankyou-checkmark {
  width: 100px;
  height: 100px;
   animation: scaleIn 0.6s ease;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));

}

.thankyou-container h1   {
  font-size :     3rem;
     margin-bottom:1rem;
	font-weight: 700;
}

.thankyou-main-text {
  font-size: 1.5rem;
    margin-bottom: 2rem;
  opacity: 0.95;
}

.thankyou-content {
  background: rgba(255, 255, 255, 0.1);

  padding: 2rem;

    border-radius: 12px;

  backdrop-filter: blur(10px);

    text-align: left;

   margin-bottom: 2rem;
}

.thankyou-content p {
    line-height: 1.8;
          margin-bottom: 1.5rem;
    font-size   : 1.05rem;
}

.what-next h2 {
  font-size   :     1.5rem;
  margin-bottom: 1rem;
    margin-top: 1.5rem;
  text-align: center;
	
}

.thankyou-list {
  list-style: none; 
	  margin-bottom :1.5rem;
}

.thankyou-list li {
	padding: 0.7rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 1rem;
}

.thankyou-list li::before {
     content: '→';
   position: absolute;
  left  :0;
    color: #2ecc71;
                    font-weight     : bold;
     }

.thankyou-additional-info {
    margin-top: 1.5rem;
   padding-top    : 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.thankyou-additional-info p {
        text-align: center;
}

.info-list {

  list-style :     none; 
	   margin-top    : 1rem;
	}

.info-list li {
	padding: 0.5rem 0; 
  text-align: center;
}

.info-list a {
  color: #2ecc71;
	 text-decoration: none;
        font-weight: 600;
    transition: all 0.3s ease;
	}

.info-list a:hover {
       text-decoration: underline;
}

.thankyou-actions {
    justify-content: center;
   display:      flex;
   flex-wrap   :        wrap;
     gap  :        1rem;
}

.thankyou-button {
    display: inline-block;
   padding:     12px 30px;
  border-radius: 50px;
    text-decoration: none;
     font-weight  :        600;
    transition: all 0.3s ease;
   font-size: 1rem;
}



.thankyou-button.primary {
  background: #2ecc71;
  color: white;
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.thankyou-button.primary:hover {

  background: #27ae60;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(46, 204, 113, 0.5);


}

.thankyou-button.secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border     :     2px solid white;
  backdrop-filter: blur(10px); 

}

.thankyou-button.secondary:hover  {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.next-steps-section {
   background: white;
   padding   :       60px 2rem; 
	
}

.security-info {

	   border-radius: 10px;
    -webkit-border-radius: 10px;
   -moz-border-radius: 10px;
   max-width: 800px;
    padding    :        2rem;
  margin: 0 auto;
    background: #f8f9fa;
    border-left: 4px solid #3498db;
	}

.security-info p {


    color: #555;
 line-height: 1.8;
  margin-bottom: 1rem;


}

.security-info a {
        text-decoration: none;
   font-weight     : 600;
   color: #3498db;
}

.security-info a:hover {
    text-decoration: underline;
}@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2rem;
    }

    .services-hero p {
        font-size: 1rem;
    }

    .service-detail-header {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-detail-image {
        height: 200px;
    }

    .service-detail-info h2 {
        font-size: 1.4rem;
    }

    .service-detail-content {
        padding: 1.5rem;
    }

    .options-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-container h1 {
        font-size: 2rem;
    }

    .thankyou-main-text {
        font-size: 1.2rem;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .thankyou-button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .services-hero h1 {
        font-size: 1.5rem;
    }

    .service-detail-info h2 {
        font-size: 1.2rem;
    }

    .service-modules li {
        font-size: 0.9rem;
    }

    .thankyou-checkmark {
        width: 70px;
        height: 70px;
    }

    .thankyou-container h1 {
        font-size: 1.5rem;
    }

    .thankyou-content {
        padding: 1.5rem;
    }
}.policySection {
	 padding: 80px 2rem;
  background: #f8f9fa;
  min-height: calc(100vh - 300px);
}

.policyContainer {
 max-width: 900px;

   margin: 0 auto;

  text-align: left;

    animation: fadeInLeft 0.8s ease;
}



.policyContainer h1 {
  font-size    :       2.8rem;
         color: #2c3e50;
  margin-bottom: 2rem;
  font-weight: 700;
  padding-bottom: 1rem;
    border-bottom: 4px solid #2ecc71;
}

.policyContainer h2 {
   font-size  :      1.8rem;
    color: #2c3e50;
  margin-top: 2.5rem;
   margin-bottom: 1rem;
   font-weight: 600;
    position : relative;
   padding-left: 1rem;
}

.policyContainer h2::before {
  content: '';
  position: absolute;
  left: 0;
   top     :      0;
    bottom: 0;
    width: 4px;
  background: linear-gradient(180deg, #3498db, #2ecc71);
    border-radius: 2px;
}

.policyContainer p {


    color: #555;
    margin-bottom     :        1.2rem;
   line-height: 1.8;
	font-size: 1rem;
}

.policyContainer strong {
  color     :     #2c3e50; 
	    font-weight: 600; 

}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.7rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        margin-bottom: 0.9rem;
        line-height: 1.6;
    }
}