* {
    margin: 0;
    padding  :        0;
  box-sizing: border-box;
}

html

{
  scroll-behavior: smooth;
}  

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: #2c3e50;
	background-color: #f8f9fa;
}

.navbar {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
     padding: 1rem 0;
    position: sticky;
  top: 0;
	z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
       display :flex;
               padding: 0 1.5rem;
    max-width: 1200px;
  justify-content: space-between;
  margin: 0 auto;
    align-items: center;}

.nav-brand {
        flex-shrink: 0;
}

.logo-img {
    height: 74px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-menu


{
    display: flex;
   list-style: none;
    gap: 2rem;
}

.nav-link {
    color :   #ffffff;
    text-decoration: none;
    font-weight: 500;
   transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
   color: #00d4ff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
   width: 0;
  height: 2px;
  background: #00d4ff;
	transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
	
}

.hamburger-menu {
   display: none;
   flex-direction: column;
   background: none;
   border: none;
   cursor: pointer;
        gap: 5px;
	
}

.hamburger-line {
  width    :      25px;
  height: 3px;
  background: #ffffff;
    transition: all 0.3s ease;
      border-radius: 2px;
}

.hamburger-menu.active .hamburger-line:nth-child(1)


{
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
   opacity: 0;
	
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
  padding: 120px 1.5rem;
  text-align: center;
    min-height: 600px;
  display: flex;
	 align-items: center;
   justify-content: center;
}

.hero-content h1 {
    font-size: 3.5rem;
  margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
  opacity: 0.95;
  max-width:        700px;
    margin-left: auto;
  margin-right: auto;
} 

.cta-button {

    display: inline-block;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 15px 40px;
  text-decoration    :       none;
   border-radius: 50px;
    font-weight  :        600;
  font-size: 1rem;
  transition     :       all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
	}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

section {
    padding     :80px 1.5rem;
}

section h2 {
  font-size: 2.5rem;
   margin-bottom: 3rem;
  text-align: center;
   color: #1a1a2e;
	}

section h3 {
   font-size: 1.5rem;
   margin-bottom: 1rem;
      color: #2c3e50;
}

.intro-section {
   background: #ffffff;
}

.intro-container {

	    max-width: 1200px;
  margin: 0 auto;
    display     :        grid;
  grid-template-columns: 1fr 1fr;
    gap: 3rem;
  align-items: center;
}

.intro-text p {
  font-size: 1.05rem;
    margin-bottom: 1.5rem;
  line-height: 1.8;
  color: #555555;
}

.intro-image img {
    width: 100%;
          border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.intro-image img:hover{
  transform: scale(1.02);
}

.services-preview {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	
}

.services-grid  {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
  max-width: 1200px;
   margin: 0 auto;
}

.service-card {
   background: white;
    border-radius: 12px;
    overflow:   hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-card img {
        width: 100%;
  height: 250px;
  object-fit: cover;
    display  :       block;
}

.service-card h3 {

	    padding: 1.5rem 1.5rem 0 1.5rem;
}  

.service-card p {
   padding: 0 1.5rem 1.5rem 1.5rem;
    color: #666666;
  font-size   :     0.95rem;
   line-height: 1.7;
}

.methodology {
    background: white;
}

.methodology-content {
  max-width: 1200px;

  margin: 0 auto;

       display: grid;

  grid-template-columns: 1fr 1fr;

 gap: 3rem;

   align-items: center;
}

.methodology-text p {
    font-size:  1.05rem;
   margin-bottom: 1.5rem;
    line-height: 1.8;
    color : #555555;
}

.methodology-image img {
   width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.benefits {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color:     white;
}

.benefits section h2,
.benefits h2 {
  color: white;
}

.benefits-list {
      display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
   margin: 0 auto;}

.benefit-item {
  background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #f5576c;
  backdrop-filter: blur(10px);
   transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}

.benefit-item h3 {
   color: white;
   margin-bottom: 0.8rem;
}

.benefit-item p {
  font-size: 0.95rem;
    opacity: 0.95;
}

.webinar-section  {
   background: white;
     }

.webinar-content {
   max-width: 1200px;
  margin: 0 auto;
    display: grid;
  grid-template-columns  :        1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.webinar-image img    {
   width: 100%;
   border-radius:12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.webinar-text p {
	 font-size: 1.05rem;
    margin-bottom: 1.5rem;
  line-height: 1.8;
    color: #555555;
}

.conference-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.conference-content {
  max-width: 1200px;
   margin: 0 auto;
  display: grid;
  grid-template-columns     :  1fr 1fr;
    gap: 3rem;
   align-items: center;
}

.conference-text p {
	  font-size :       1.05rem;
  margin-bottom    :        1.5rem;
    line-height: 1.8;
  color: #555555;
     }

.conference-image img {
    width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); 

}

.testimonials {
  background: white;
}

.testimonials-grid {
      display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
   padding: 2rem;
    border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease; 

}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.testimonial-card p  {
       font-size: 1rem;
  margin-bottom: 1.5rem;
    font-style: italic;
    line-height     : 1.7;
     }

.testimonial-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0.9;
}

.cta-section{
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
  text-align: center;
}

.cta-section h2 {
    color: white;
}

.cta-section p {
  font-size: 1.2rem;
        margin-bottom: 2rem;
     opacity: 0.95;
}

.contact {
    background: #f8f9fa;
}

.contact-container {
	    max-width: 1200px;
    margin: 0 auto;
   display: grid;
   grid-template-columns: 2fr 1fr;
    gap    :   3rem;
	}

.contact-form {
    background: white;
    padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
     display: block;
    margin-bottom: 0.5rem;
   font-weight: 600;
	 color   :        #2c3e50;
   font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
   padding: 12px 15px;
   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: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1); 

}

.form-group textarea {
    resize   :   vertical;
  min-height  :     120px;
}

.submit-button  
  {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
    padding: 12px 30px;
   border: none;
    border-radius: 8px;
   font-size: 1rem;
    font-weight: 600;
  cursor: pointer;
    transition :all 0.3s ease;
   width: 100%;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.contact-info {
  background: white;
    padding: 2rem;
   border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  height: fit-content;
}

.contact-info h3


{
   margin-bottom: 1.5rem;
}

.info-item {
   margin-bottom: 1.5rem;
}

.info-item p {
    color :  #555555;
   font-size: 0.95rem;
   line-height: 1.6;
}

.info-item strong {
	 color: #2c3e50;
}

.footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #ffffff;
   padding: 3rem 1.5rem 1.5rem;
}

.footer-container {


    max-width: 1200px;
    margin: 0 auto;}

.footer-content {
		 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap:        2rem;
   margin-bottom:     2rem;

}

.footer-section {
   display: flex;
  flex-direction: column;
}

.footer-logo {
    height: 96px;
  width: auto;
  filter: brightness(0) invert(1);
   margin-bottom: 1rem;
}

.footer-section h4 {
   font-size: 1.1rem;
          margin-bottom: 1rem;
  color: #ffffff;
}

.footer-section ul {
   list-style    :      none;
}

.footer-section ul li {

	    margin-bottom   :        0.8rem;
}

.footer-section a {
   color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section a:hover {
  color: #ffffff;
}

.footer-section p {
      font-size: 0.95rem;
   color: #b0b0b0;
	line-height     :        1.6;
	}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
   padding-top: 1.5rem;
   text-align: center;
   color: #888888;
    font-size: 0.9rem;
}@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: #0f0f23;
        padding: 1rem;
        gap: 0;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 0.8rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero {
        padding: 80px 1.5rem;
        min-height: 400px;
    }

    .intro-container,
    .methodology-content,
    .webinar-content,
    .conference-content {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    section h2 {
        font-size: 2rem;
    }

    section h3 {
        font-size: 1.2rem;
    }

    section {
        padding: 50px 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    section h2 {
        font-size: 1.7rem;
    }

    .nav-menu {
        gap: 0;
    }

    .nav-link {
        padding: 0.6rem;
    }

    .service-card img {
        height: 200px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 0.95rem;
    }

    .submit-button {
        padding: 10px 20px;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-info {
        padding: 1.5rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 100px 1.5rem;
  text-align: center;
      min-height: 500px;
    display: flex;
  align-items: center;
    justify-content: center;
}

.services-hero-content h1 {
    font-size: 3.2rem;
  margin-bottom: 1rem;
   font-weight: 700;
   letter-spacing: -1px;
}

.services-hero-content p {
    font-size: 1.2rem;
    opacity: 0.95;
  max-width: 800px;
    margin-left: auto;
   margin-right: auto;
    line-height: 1.8;
}

.service-detail {
    background: white;
    padding: 80px 1.5rem;
}

.service-detail.alternate {

  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
     }

.service-item {
    max-width:       1200px;
  margin: 0 auto;
   display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 3rem;
   align-items: start;
}

.service-detail.alternate .service-item {
	 grid-template-columns: 1fr 1fr;
}

.service-content h2 {
 font-size: 2.2rem;
   margin-bottom: 1.5rem;
         color: #1a1a2e;
}

.service-content p     {
                       font-size: 1.05rem;
	 margin-bottom: 1.5rem;
      line-height: 1.8;
	color: #555555;
	}

.service-list {
    list-style: none;
   margin: 1.5rem 0;
}

.service-list li {
   padding: 0.8rem 0 0.8rem 2rem;
	color: #555555;
  position: relative;
	 font-size: 1rem;
	line-height: 1.6; 
	
}

.service-list li::before {
  content: '▸';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
  font-size: 1.2rem;


}

.service-image img {
   width: 100%;
   border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
   transition: transform 0.3s ease;


}

.service-image img:hover {
  transform: scale(1.02);
}

.service-pricing {
  background: rgba(102, 126, 234, 0.08);
    padding: 2rem;
    border-radius: 12px;
  margin-top: 2rem;
}

.service-pricing p {
      color    :    #2c3e50;
  margin-bottom: 1.5rem;}

.pricing-options {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem; 

}

.pricing-card {
       background: white;
   padding: 1.5rem;
   border-radius: 10px;
  border-left: 4px solid #667eea;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.pricing-card h3 {
  font-size: 1.1rem;
   margin-bottom: 0.8rem;
    color: #1a1a2e;
}

.pricing-card .price {
   font-size: 1.3rem;
	font-weight: 700;
    color: #667eea;
  margin: 0.5rem 0;
}

.pricing-card p:last-child {
  font-size   :       0.9rem;
    color: #888888;
     margin: 0;


}

.cta-section-services {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
   color:white;
   text-align: center;
    padding: 80px 1.5rem;
}

.cta-section-services h2 {

	 color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;


}

.cta-section-services p {
  font-size: 1.1rem;
   margin-bottom: 2rem;
    opacity: 0.95;
  max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.thankyou-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 1.5rem;
   min-height: 800px;
  display: flex;
  align-items: center;
   justify-content: center;
}

.thankyou-container    {
	 max-width: 700px;
    background: white;
       padding: 3rem 2rem;
  border-radius:      16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thankyou-icon {
    margin-bottom: 2rem;
   display: flex;
    justify-content    :       center;
}


.thankyou-icon svg  
  {
   width: 100px;
    height: 100px;
    animation: scaleIn 0.6s ease-out;
}@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}.thankyou-container h1 {
     font-weight: 700;
   margin-bottom: 0.5rem;
	 font-size: 2.5rem;
   color: #1a1a2e;

}

.thankyou-subtitle {
     font-size: 1.2rem;
  color: #667eea;
   margin-bottom: 2rem;
  font-weight: 600;
}

.thankyou-content {
   text-align: left;
	 margin-bottom: 2rem;
}

.thankyou-content p:first-of-type {
   font-size: 1.05rem;
    color: #555555;
    line-height: 1.8;
   margin-bottom: 2rem;
}

.next-steps {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
  padding: 2rem;
  border-radius  :      12px;
  margin: 2rem 0;
}

.next-steps h2 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.steps-list {
    display  :        grid;
    gap: 1.5rem;
}

.step-item {
   display: flex;
  gap: 1.5rem;
    padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
  backdrop-filter: blur(10px);
}

.step-number {
    min-width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
  display: flex;
  align-items    :  center;
    justify-content :     center;
   font-weight  :       700;
   font-size: 1.3rem;
    flex-shrink     :      0;
}

.step-content h3 {
	color: white;
   margin-bottom: 0.5rem;
    font-size: 1rem;
}

.step-content p {
  color: rgba(255, 255, 255, 0.95);
    font-size    :      0.9rem;
   margin: 0;
   line-height    :   1.5;

}

.contact-reminder {
    background: #f0f4ff;
  padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #667eea;
	 margin: 2rem 0;
   text-align:center; 
	
}

.contact-reminder h2 {
    color: #1a1a2e;
  font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.contact-reminder p {
  color: #555555;
   font-size: 0.95rem;
	margin: 0.5rem 0;
}

.phone-info {
    font-weight: 700 !important;
    margin: 1rem 0 !important;
    font-size: 1.3rem !important;
  color: #667eea !important;
}

.resources {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
          padding: 1.5rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.resources h2 {
  color: #1a1a2e;
               font-size: 1.3rem;
   margin-bottom: 0.8rem;
}

.resources p {
  color: #555555;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}


.resource-links {
    display: flex;
  gap: 1rem;
   justify-content: center;
	 flex-wrap   :   wrap;
}

.resource-link {
    display: inline-block;
	background: white;
		color: #667eea;
   padding: 0.8rem 1.5rem;
    border-radius: 8px;
	text-decoration: none;
  font-weight: 600;
    font-size: 0.9rem;
   transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.resource-link:hover {
  background: #667eea;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.cta-final {
   margin-top: 2rem;
}

.cta-final .cta-button {
  display: inline-block;
}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .services-hero-content p {
        font-size: 1rem;
    }

    .services-hero {
        padding: 60px 1.5rem;
        min-height: 350px;
    }

    .service-item {
        grid-template-columns: 1fr;
    }

    .service-detail.alternate .service-item {
        grid-template-columns: 1fr;
    }

    .service-content h2 {
        font-size: 1.8rem;
    }

    .service-detail {
        padding: 50px 1.5rem;
    }

    .pricing-options {
        grid-template-columns: 1fr;
    }

    .cta-section-services {
        padding: 60px 1.5rem;
    }

    .cta-section-services h2 {
        font-size: 1.8rem;
    }

    .thankyou-container {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .thankyou-container h1 {
        font-size: 2rem;
    }

    .thankyou-icon svg {
        width: 80px;
        height: 80px;
    }

    .step-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .resource-links {
        flex-direction: column;
    }

    .resource-link {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 1.6rem;
    }

    .services-hero-content p {
        font-size: 0.95rem;
    }

    .service-content h2 {
        font-size: 1.4rem;
    }

    .service-list li {
        padding: 0.6rem 0 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .service-pricing {
        padding: 1.5rem 1rem;
    }

    .pricing-card {
        padding: 1rem;
    }

    .thankyou-section {
        padding: 40px 1rem;
        min-height: auto;
    }

    .thankyou-container {
        padding: 1.5rem 1rem;
        margin: 0;
    }

    .thankyou-container h1 {
        font-size: 1.6rem;
    }

    .next-steps {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .next-steps h2 {
        font-size: 1.2rem;
    }

    .step-item {
        padding: 0.8rem;
    }

    .step-number {
        min-width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .contact-reminder {
        padding: 1rem;
    }

    .contact-reminder h2 {
        font-size: 1.1rem;
    }

    .phone-info {
        font-size: 1.1rem !important;
    }

    .resources {
        padding: 1rem;
        margin: 1.5rem 0;
    }

    .resources h2 {
        font-size: 1.1rem;
    }

    .resource-link {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
}.policy-section    {
  min-height     :        600px;
   padding: 80px 2rem;
    background: #f8f9fa;
}

.policy-container {
  max-width: 900px;
  margin: 0 auto;
  text-align    :       left;
    background: white;
	padding: 3rem;
    border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}



.policy-container h1 {
  font-size: 2.8rem;
               color: #1a1a2e;
   margin-bottom: 2rem;
   font-weight: 700;
    border-bottom: 3px solid #667eea;
   padding-bottom: 1rem;
}

.policy-container h2 {
    font-size: 1.8rem;
   color: #2c3e50;
   margin-top: 2.5rem;
  margin-bottom: 1rem;
   font-weight: 600;
  color: #667eea;
}

.policy-container p {
   color: #555555;
        margin-bottom: 1.5rem;
    line-height :1.8;
   font-size: 1.05rem;
  text-align: justify;
}

.policy-container p:first-of-type {
    margin-top: 1rem;
}@media (max-width: 768px) {
    .policy-section {
        padding: 60px 1rem;
    }

    .policy-container {
        padding: 2rem 1.5rem;
    }

    .policy-container h1 {
        font-size: 2rem;
    }

    .policy-container h2 {
        font-size: 1.4rem;
        margin-top: 2rem;
    }

    .policy-container p {
        font-size: 1rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 40px 0.5rem;
        min-height: auto;
    }

    .policy-container {
        padding: 1.5rem 1rem;
        border-radius: 8px;
    }

    .policy-container h1 {
        font-size: 1.6rem;
        padding-bottom: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .policy-container h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policy-container p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
        line-height: 1.6;
    }
}