* {
   margin: 0;
	padding: 0;
    box-sizing: border-box;
}

html {
   font-size: 16px;
   scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
       color: #2c3e50;
  background: #fafafa;


}

h1, h2, h3, h4, h5, h6 {

	   font-weight: 700;

   line-height:       1.2;

  margin-bottom  :    1.5rem;

			color: #1a252f;


}

h1 {
    font-size: 3.5rem;
}

h2
{

   font-size: 2.5rem;
	}

h3 {
    font-size: 1.75rem;

}

h4 {

	       font-size: 1.375rem;



}

p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

a {
                    color: #0066cc;
   text-decoration: none;
   transition: color 0.3s ease; 
	
}

a:hover {
    color: #0052a3;
}

.navbar {
   background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
                    top  :   0;
   z-index: 100;
}

.nav-container {
    max-width  :       1200px;
    margin: 0 auto;
  padding :   1rem 2rem;
    display: flex;
  justify-content: space-between;
  align-items    :center;
}

.logo-section {
  display: flex;
   align-items: center;
}

.logo {
   height: 50px;
    width: auto;
  filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.nav-menu {
    list-style: none;
     display: flex;
       gap: 3rem;
     align-items: center;
}

.nav-link


{
   font-weight :      600;
    color: #2c3e50;
		 transition: color 0.3s ease;
	 position   :       relative;
}

.nav-link::after {
  content: '';
    position: absolute;
                    bottom: -5px;
   left  :      0;
   width: 0;
    height: 2px;
    background: #0066cc;
    transition: width 0.3s ease;
}

.nav-link:hover::after	{
    width: 100%;
}

.burger-menu {
    display: none;
        flex-direction: column;
  background: none;
   border: none;
  cursor: pointer;
    gap: 6px;
}

.burger-line		{
	   width: 28px;
   height: 3px;
     background: #2c3e50;
        border-radius: 2px;
    transition: all 0.3s ease;
	}

.hero {

   max-width: 1200px; 
    margin   :     0 auto; 
  padding: 6rem 2rem; 
    display: grid; 
  grid-template-columns: 1fr 1fr; 
   gap: 4rem; 
    align-items   :  center;

}

.hero-content h1 {

	  font-size: 3.5rem;
       margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
					background-clip: text;
}

.hero-subtitle {
     font-size: 1.25rem;
                    color: #555;
   margin-bottom: 2rem;

}

.hero-btn
{
     display :  inline-block;
  background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
  color: white;
   padding: 1rem 2.5rem;
    border-radius: 50px;
  font-weight   :  600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}


.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

.hero-visual img {
   width: 100%;
  border-radius    :      12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
} 

.section-container {
	max-width: 1200px;
   margin: 0 auto;
    padding: 0 2rem;
}

.programs-showcase {
 padding: 6rem 0; 
  background: #fff;
}

.programs-showcase h2

{
  text-align: center;
    margin-bottom: 1rem;
}

.section-intro {
   text-align: center;
         font-size: 1.1rem;
    color: #666;
  margin-bottom: 4rem;
}

.programs-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.program-card {
    background: #fff;
    border-radius: 12px;
	 overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border:     1px solid #e8e8e8;
}


.program-card:hover {
     transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 102, 204, 0.15);

}

.program-card img		{

       width: 100%;
    height    :     200px;
   object-fit: cover;
     }

.program-card h3 {
  padding: 1.5rem 1.5rem 0;
    margin-bottom: 1rem;
}

.program-card p {
  padding: 0 1.5rem;
      color    : #666;
    font-size: 0.95rem;
}

.card-meta {
	  display: flex;
    gap: 1rem;
  padding: 1.5rem;
  flex-wrap: wrap;}

.duration, .format {

	   background     :     #f0f5ff;
        color: #0066cc;
   padding: 0.4rem 0.8rem;
  border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;


}

.webinars-section {
	 padding: 6rem 0;
  background: linear-gradient(135deg, #f5f9ff 0%, #fff 100%);


}



.webinars-section h2 {
    text-align: center;
    margin-bottom: 1rem;


}

.webinars-list {
      display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.webinar-item  
  {
               background: white;
  padding: 2rem;
  border-radius: 12px;
   border-left: 4px solid #0066cc;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.webinar-item:hover {
  box-shadow: 0 8px 24px rgba(0, 102, 204, 0.15);
  transform: translateX(4px);
}

.webinar-item h3 {
  color     :#0066cc;
          margin-bottom: 1rem;
}

.webinar-item p {
               color: #666;
   	margin-bottom: 1.5rem;
}

.webinar-type {
	   display    :  inline-block;

	        background: #e8f2ff;

	  color     :  #0066cc;

	  padding: 0.5rem 1rem;

	  border-radius: 20px;

	      font-size: 0.85rem;

	    font-weight: 600; 

	}

.cta-section    {
  background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
  color: white;
       padding: 5rem 2rem;
					text-align: center;

}

.cta-container {
	 max-width: 800px;
    margin   : 0 auto;
}

.cta-section h2	{

	   color: white;

	    font-size: 2.5rem;

	   margin-bottom    :       1rem;
     }

.cta-section p {
               font-size: 1.1rem;
   margin-bottom: 2rem;
   opacity    :      0.95;
}

.cta-btn {
    display: inline-block;
  background: white;
  color: #0066cc;
	 padding: 1rem 2.5rem;
        border-radius: 50px;
   font-weight: 700;
    transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
  transform: scale(1.05);

	  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);


}

.contact-section {

	                    padding    :       6rem 0;
   background: white; 

	}

.contact-section h2 {
    text-align   :center;
    margin-bottom:     1rem;
}

.contact-wrapper {
        display: grid;
   grid-template-columns: 1fr 1fr;
   gap    :    4rem;
	margin-top: 3rem;
}

.contact-form {
    display: flex; 
	  flex-direction: column; 
	   gap: 1.5rem;
}

.form-group {
  display: flex;
   flex-direction:      column;
}

.form-group input,
.form-group select,
.form-group textarea {
   padding: 1rem;
    border: 2px solid #e8e8e8;
   border-radius :   8px;
	font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;
  border-color: #0066cc;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-btn {
  background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
  padding: 1rem 2rem;
   border: none;
   border-radius: 8px;
  font-weight:    700;
  font-size: 1rem;
   cursor: pointer;
 transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.form-btn:hover   {
     transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

.contact-info {
   -moz-border-radius: 12px;
    padding: 2rem;
  background: #f9f9f9;
	border-radius: 12px;
         border: 1px solid #e8e8e8;
}

.contact-info h3	{
   margin-bottom: 2rem;
}

.info-item {
	          margin-bottom: 2rem;
	}

.info-label {
   display: block;
   font-weight: 700;
   color: #0066cc;
  margin-bottom   :  0.5rem; 
	
}

.info-item p {
       color: #666;
    line-height: 1.8; 
}

.footer {
      padding: 4rem 0 2rem;
   color: #ccc;
   background: #1a252f;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
        padding: 0 2rem;

}

.footer-logo-section {
   margin-bottom: 2rem;
}



.footer-logo {
  height: 50px;
  width :     auto;
  filter: brightness(0) invert(1);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem; 

}

.footer-col h4 {
   color:  white;
    margin-bottom: 1rem;
}

.footer-col ul {
	 list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-col a:hover {


          color: #0066cc;

}

.footer-col p {
   margin-bottom: 0.5rem;
    line-height: 1.7;
}

.footer-bottom {
   border-top: 1px solid #444;
    padding-top: 2rem;
	 text-align: center;
    color: #999;
}

.footer-bottom a {
  color: #999;

}

.footer-bottom a:hover {

    color  :   #0066cc;
     }@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: white;
        gap: 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 1rem 0;
        text-align: center;
        border-bottom: 1px solid #f0f0f0;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 3rem 1rem;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .webinars-list {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .programs-showcase,
    .webinars-section,
    .contact-section {
        padding: 3rem 0;
    }

    .cta-section {
        padding: 3rem 1rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-intro {
        font-size: 1rem;
    }

    .nav-container {
        padding: 0.8rem 1rem;
    }

    .logo {
        height: 40px;
    }

    .programs-showcase,
    .webinars-section,
    .contact-section {
        padding: 2rem 0;
    }

    .section-container {
        padding: 0 1rem;
    }

    .program-card img {
        height: 150px;
    }

    .cta-btn, .hero-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
   padding: 4rem 2rem;
   text-align: center;
    margin-top: 70px;}

.services-hero-content h1 {
       font-size: 3rem;
   margin-bottom :      1rem;
    color: white;
}

.services-hero-subtitle {

    font-size: 1.25rem;
   opacity: 0.95;
	}

.services-overview {
  padding :4rem 0;
   background: white;
}

.services-overview h2 {
      text-align :  center;
}

.service-filter {
  color: #2c3e50;
   font-weight :  600;
    border: 2px solid #e8e8e8;
         cursor    :       pointer;
  background: white;
    border-radius: 25px;
   margin: 0.5rem;
  padding: 0.75rem 1.5rem;
   transition: all 0.3s ease;
}

.service-filter:hover {
	border-color: #0066cc;
  color: #0066cc;
	
}

.service-filter.active {
  background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
   color: white;
    border-color: #0066cc;
}

.services-menu {
   display: flex;
   justify-content: center;
	flex-wrap: wrap;
               gap: 1rem;
   margin-top: 2rem;
}

.services-grid {
          display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem; 
	
}

.service-detailed-card {
  background: white;
    border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	 transition: all 0.3s ease;
   border:   1px solid #e8e8e8;
    display: flex;
  flex-direction: column; 
	
}

.service-detailed-card:hover
	{
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 102, 204, 0.15);
}

.service-image		{
   position: relative;
    height     : 200px;
    overflow: hidden;
}

.service-image img {
  width: 100%;
   height: 100%;
    object-fit: cover;
    transition   :     transform 0.3s ease;
}

.service-detailed-card:hover .service-image img {
  transform: scale(1.05);
}

.service-badge {
  position: absolute;
   top: 1rem;
	right: 1rem;
  background: rgba(0, 102, 204, 0.9);
    color  :  white;
   padding: 0.5rem 1rem;
   border-radius: 20px;
     font-size    : 0.85rem;
   font-weight: 600;
}

.service-content {
   padding: 1.5rem; 
        flex: 1; 
   display: flex; 
   flex-direction :        column;

}

.service-content h3 
 {
    color: #0066cc;
  margin-bottom :1rem;
}

.service-description {
    color: #666;
  margin-bottom  : 1.5rem;
    line-height: 1.7;
}

.service-details {
        display   :     grid;
    grid-template-columns: 1fr 1fr;
   gap: 1rem;
               margin-bottom: 1.5rem;
   padding-bottom    :  1.5rem;
  border-bottom: 1px solid #e8e8e8; 
	
}

.detail-item {
  display :    flex;
   flex-direction :   column;
}

.detail-label {
  font-size: 0.85rem;
         color   :        #999;
  font-weight: 600;
  margin-bottom: 0.3rem; 
	
}

.detail-value {
        color: #2c3e50;
   font-weight: 600;
}

.service-includes {


	margin-bottom: 1.5rem;
	 flex: 1;
     }


.service-includes h4 {
  font-size: 1rem;

   margin-bottom: 0.8rem;

    color: #2c3e50;
}

.service-includes ul {
   list-style: none;

}

.service-includes ul li  {
  padding     :0.4rem 0;
    color: #666;
   padding-left: 1.5rem;
    position: relative;
}

.service-includes ul li::before {
  content: '✓';
   position: absolute;
  left: 0;
  color   :#2ecc71;
	font-weight: bold;
}

.service-cta {

	    display   :     inline-block;
  background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
	padding: 0.8rem 1.5rem;
   border-radius:8px;
    text-align: center;
  font-weight   :  600;
    transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
	}

.service-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 102, 204, 0.4);
}

.pricing-section		{
   padding: 6rem 0;
  background: linear-gradient(135deg, #f5f9ff 0%, #fff 100%);
}


.pricing-section h2  {


    text-align:        center;
	
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
   margin-top   : 3rem;
}

.pricing-card  
  {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 12px;
    border: 2px solid #e8e8e8;
    text-align: center;
   transition: all 0.3s ease;
                    position:        relative;}



.pricing-card.featured {
  border-color: #0066cc;
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 102, 204, 0.2);
}

.pricing-card:hover {
  box-shadow: 0 8px 24px rgba(0, 102, 204, 0.15);
}

.popular-badge {
		 position: absolute;
    top: -12px;
   left    :    50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
	 color  :     white;
        padding: 0.4rem 1rem;
	 border-radius: 20px;
   font-size: 0.8rem;
    font-weight   :700;
} 

.pricing-card h3 {
  font-size     :     1.5rem;
  margin-bottom: 0.5rem;
}

.pricing-desc {
   color  :       #999;
         margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.pricing-features {
         list-style: none;
  margin-bottom: 2rem;
   text-align: left;
}

.pricing-features li {
    padding: 0.6rem 0;
 color: #666;
	 border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-btn {

	   display: inline-block;
   padding: 0.8rem 2rem;
  border-radius: 8px;
  border: 2px solid #0066cc;
               color : #0066cc;
   font-weight    :600;
                    transition: all 0.3s ease;
   background     :       white;

}

.pricing-btn:hover {
   background: #f0f5ff;
  transform: translateY(-2px);
}

.pricing-btn.primary {


  background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
  color: white;
   border-color: #0066cc;


}

.pricing-btn.primary:hover {
  background: linear-gradient(135deg, #0052a3 0%, #003366 100%);
}


.faq-section {

	    padding: 6rem 0;
         background :  white;
	}

.faq-section h2 {
  text-align: center;
}

.faq-container {
  max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: white;
   border: 1px solid #e8e8e8;
   border-radius: 8px;
   margin-bottom: 1rem;
	overflow: hidden;
}


.faq-item summary {


    padding   :     1.5rem;
  background: #f9f9f9;
  cursor: pointer;
    font-weight: 600;
   color: #2c3e50;
  display  :   flex;
    justify-content: space-between;
   align-items: center;
    transition: all 0.3s ease;
  user-select     :none;
	}

.faq-item summary:hover {
   background: #f0f5ff;
  color: #0066cc;
} 

.faq-item[open] summary {
  background: linear-gradient(135deg, #f0f5ff 0%, #fff 100%);
  color: #0066cc;
   border-bottom: 2px solid #0066cc;
}

.faq-item p {
   padding: 1.5rem;
  color: #666;
    line-height: 1.8;
}

.thankyou-container {
  min-height: calc(100vh - 140px);
    display: flex;
   align-items: center;
          justify-content: center;
   padding  :       3rem 2rem;
  background: linear-gradient(135deg, #f5f9ff 0%, #fff 100%);
}

.thankyou-content {
  background: white;
    border-radius: 16px;
  padding: 3rem;
  max-width:       600px;
   width: 100%;
  box-shadow: 0 10px 40px rgba(0, 102, 204, 0.1);
   text-align: center;
}

.success-icon {
   margin-bottom: 2rem;
  display: flex;
   justify-content: center;
}

.success-icon svg {
  animation: scaleIn 0.6s ease-out;
}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-content h1 {
    color: #2ecc71;
 font-size: 2.5rem;
   margin-bottom: 0.5rem;
}

.thankyou-subtitle {
    color: #999;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.thankyou-message {
   background: #f9f9f9;
   padding: 1.5rem;
        border-radius: 8px;
    margin-bottom :   2rem;
	text-align: left;
}



.thankyou-message p {
  margin-bottom: 1rem;
  color  : #666;
}

.next-steps {
         margin-bottom: 2rem;
      text-align: left; 

}

.next-steps h3 {
	   margin-bottom     :      1.5rem;
      color: #2c3e50;

}

.steps-list  
  {
  display: flex;
   flex-direction:     column;
  gap: 1rem;
}

.step-item {
                    align-items:     flex-start;
  display: flex;
  gap: 1.5rem;
}

.step-number {
   display: flex;
   align-items: center;
   justify-content: center;
    width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
   color: white;
    border-radius: 50%;
   font-weight: 700;
  flex-shrink: 0;

}

.step-content h4 {
   margin-bottom: 0.3rem;
    color :       #2c3e50;
}

.step-content p {
    color: #999;
  font-size: 0.9rem;
    margin: 0;
	
}

.action-buttons {
      display: flex;
  gap: 1rem;
    margin-bottom    :      2rem;
    flex-wrap: wrap;
                    justify-content: center;


}

.btn-primary, .btn-secondary  
  {
 display: inline-block;
    padding: 0.9rem 1.8rem;
               border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
 transition: all 0.3s ease;
}

.btn-primary	{
  background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 102, 204, 0.4);
}

.btn-secondary {
   background: white;
    color: #0066cc;
   border: 2px solid #0066cc;
}

.btn-secondary:hover {
	  background: #f0f5ff;
}

.contact-reminder {


    padding-top: 1.5rem;
   border-top     : 1px solid #e8e8e8;
    color  :#666;
}

.contact-reminder p {
  margin: 0;}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-details {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
    }

    .thankyou-content {
        padding: 2rem 1.5rem;
    }

    .thankyou-content h1 {
        font-size: 2rem;
    }

    .step-item {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 2rem 1rem;
    }

    .services-hero-content h1 {
        font-size: 1.5rem;
    }

    .services-hero-subtitle {
        font-size: 1rem;
    }

    .service-menu {
        padding: 0 1rem;
    }

    .service-filter {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .services-grid {
        gap: 1rem;
    }

    .service-content {
        padding: 1rem;
    }

    .service-details {
        gap: 0.5rem;
    }

    .pricing-grid {
        padding: 0 1rem;
    }

    .thankyou-container {
        padding: 1rem;
    }

    .thankyou-content {
        padding: 1.5rem 1rem;
    }

    .thankyou-content h1 {
        font-size: 1.75rem;
    }

    .next-steps {
        display: none;
    }
}.policy-section {
    padding:       80px 2rem;
  background: linear-gradient(135deg, #f5f9ff 0%, #fff 100%);
  min-height: calc(100vh - 140px);
   margin-top: 70px;
}  

.policy-container {
   max-width: 900px;
    margin: 0 auto;
    text-align: left;
  background: white;
	 padding: 3rem;
	border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.policy-container h1 {
  font-size: 2.8rem;
  color: #0066cc;
   margin-bottom: 2rem;
    font-weight: 700;
   padding-bottom     :1rem;
   border-bottom: 3px solid #0066cc;

}

.policy-container h2 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-top: 2.5rem;
	margin-bottom  :     1rem;
    font-weight: 700;
}

.policy-container h2:first-of-type	{
    margin-top: 0;
}

.policy-container p {
   color    :      #555;
  margin-bottom: 1.5rem;
      line-height: 1.9;
   font-size     :1rem;
	text-align: justify;
}

.policy-container p:last-child {

	   margin-bottom: 0;
     }

.policy-container h1 {
  letter-spacing: -0.5px;
}

.policy-container h2     {
  letter-spacing: -0.3px;
}

.policy-container h2 + p {

	   font-weight: 500;

	        color    :#333;}@media (max-width: 1024px) {
    .policy-container {
        padding: 2.5rem;
    }

    .policy-container h1 {
        font-size: 2.4rem;
    }

    .policy-container h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .policy-section {
        padding: 60px 1rem;
        margin-top: 60px;
    }

    .policy-container {
        padding: 1.5rem;
        border-radius: 8px;
    }

    .policy-container h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        padding-bottom: 0.8rem;
    }

    .policy-container h2 {
        font-size: 1.4rem;
        margin-top: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .policy-container p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
        line-height: 1.8;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 40px 0.75rem;
        margin-top: 50px;
    }

    .policy-container {
        padding: 1rem;
        border-radius: 6px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .policy-container h1 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
        padding-bottom: 0.6rem;
    }

    .policy-container h2 {
        font-size: 1.2rem;
        margin-top: 1.4rem;
        margin-bottom: 0.7rem;
    }

    .policy-container p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.7;
        text-align: left;
    }
}

@media print {
    .navbar,
    .footer {
        display: none;
    }

    .policy-section {
        padding: 0;
        margin: 0;
        background: white;
    }

    .policy-container {
        max-width: 100%;
        padding: 0;
        box-shadow: none;
        background: white;
    }

    .policy-container h1 {
        page-break-after: avoid;
    }

    .policy-container h2 {
        page-break-after: avoid;
    }
}