*{
    margin    :     0;
  padding: 0;
   box-sizing    :   border-box;
}  

:root {
    --primary-color: #1a1f3a;
    --secondary-color: #667eea;
    --accent-color: #764ba2;
    --text-light: #f5f5f5;
    --text-dark: #2c3e50;
    --border-color: #e0e0e0;
    --success-color: #2ecc71;
}

html {
  scroll-behavior     :   smooth;

} 

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
  color: var(--text-dark);
       background-color   :     #f8f9fa;
}

.navbar {
  background-color: var(--primary-color);
	 padding: 0;
  position    :        sticky;
   top: 0;
    z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex; 
	   justify-content   :      space-between; 
	      align-items: center; 
	    padding: 1rem 2rem; 
	   max-width: 1400px; 
		 margin:0 auto;
}

.nav-brand {
   flex-shrink: 0;
}

.logo-img

{
   height: 45px;
   width: auto;
}

.nav-menu {
   display: flex;
  list-style    :none;
   gap: 2rem;
}

.nav-link {
  color: var(--text-light);

    text-decoration    :   none;

    font-size: 1rem;

    font-weight: 500;

   transition: color 0.3s ease;

	padding: 0.5rem 0;
}

.nav-link:hover {
  color: var(--secondary-color);
}

.burger-menu {
   display :  none;
    flex-direction: column;
    background: none;
	border: none;
    cursor     :      pointer;
}

.burger-line {
	  width: 25px;
  height: 3px;
  background-color: var(--text-light);
   margin   : 5px 0;
   transition: 0.3s;}@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: var(--primary-color);
        padding: 1rem;
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-item {
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .burger-menu {
        display: flex;
    }

    .burger-menu.active .burger-line:nth-child(1) {
        transform: rotate(-45deg) translate(-8px, 8px);
    }

    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active .burger-line:nth-child(3) {
        transform: rotate(45deg) translate(-7px, -7px);
    }
}.hero-section
{


    display: grid;
	grid-template-columns: 1fr 1fr;
  gap: 3rem;
    align-items: center;
	padding: 5rem 2rem;
    max-width :1400px;
   margin: 0 auto;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);}

.hero-content h1 {
    font-size:3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
    line-height     :      1.2; 
	
}

.hero-subtitle {
	 font-size: 1.1rem;
	color:      #555;
   margin-bottom: 2rem;
  line-height :      1.8;
} 

.hero-buttons {
  display  :flex;
   gap: 1rem;
    flex-wrap: wrap;
} 

.btn {
    padding: 0.9rem 2rem;
   border: none;
		 border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
	font-size: 1rem;
   font-weight: 600;
    transition: all 0.3s ease;
	display: inline-block;
   text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
	 color: white;


}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
   background-color: white; 
	  color: var(--secondary-color); 
	  border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
  background-color: var(--secondary-color);
   color: white;
}

.btn-large {
  padding: 1.2rem 3rem;
   font-size: 1.1rem;
}

.btn-submit {
	 width: 100%;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  color: white;
          padding: 1rem;
}

.btn-submit:hover	{
  transform: translateY(-2px);}

.hero-image img {

   width: 100%;
  height: auto;
    border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);}@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}.features-section {


  padding: 5rem 2rem;
    max-width:      1400px;
   margin: 0 auto;
     }

.features-section h2 {
  font-size: 2.5rem;
	  text-align: center;
	     margin-bottom: 3rem;
	  color: var(--primary-color);
}

.features-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	 gap  :       2rem;
}

.feature-card {
     background: white;
    padding: 2rem;
  border-radius :       10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
   text-align: center;
  transition: all 0.3s ease; 

}

.feature-card:hover {
  transform: translateY(-5px);
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.feature-icon-wrapper {
	width: 60px;
   height: 60px;
  margin: 0 auto 1.5rem;
    display :   flex;
   align-items   :   center;
   justify-content: center;
}


.feature-icon {
	width: 50px;
     height: 50px;
     stroke: var(--secondary-color);
      fill: none;
      stroke-width: 2;
       stroke-linecap: round;
       stroke-linejoin: round;
     filter: drop-shadow(2px 2px 4px rgba(102, 126, 234, 0.2));
     transition: all 0.3s ease;
}

.feature-card:hover .feature-icon   {
  stroke: var(--accent-color);
  filter: drop-shadow(3px 3px 8px rgba(118, 75, 162, 0.3));


}

.feature-card h3 {
    font-size   :        1.3rem;
  margin-bottom: 0.8rem;
  color: var(--primary-color);
}

.feature-card p {
   color: #666;
  line-height: 1.7;
   font-size     : 0.95rem;
}

.showcase-section {
      padding: 5rem 2rem;
   margin: 0 auto;
	max-width: 1400px;
}

.showcase-item {
 display: grid;
    align-items    :     center;
	 margin-bottom: 4rem;
   grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.showcase-item.reverse {
  direction: rtl; 
	
}

.showcase-item.reverse > * {

	   direction: ltr;}

.showcase-item img {

    width: 100%;
   height :  auto;
   border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);}

.showcase-text h2 {
   font-size  :     2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.showcase-text p {
   color: #555;
    line-height: 1.8;
      font-size: 1rem;
}@media (max-width: 768px) {
    .showcase-item {
        grid-template-columns: 1fr;
        margin-bottom: 2rem;
    }

    .showcase-item.reverse {
        direction: ltr;
    }

    .showcase-text h2 {
        font-size: 1.5rem;
    }
}.services-overview {
   padding: 5rem 2rem;
      background-color: white;
    max-width: 1400px;
                       margin: 0 auto;
}


.services-overview h2 {

	         font-size: 2.5rem;
  text-align: center;
	margin-bottom    :        3rem;
  color: var(--primary-color);


}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-item {
    padding: 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  border-radius: 8px;
  border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.service-item:hover  
  {
  border-left-color: var(--accent-color);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-item h3 {
   font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 0.8rem;
}

.service-item p {
   color: #555;
   line-height: 1.6;
}

.cta-section {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
	 color: white;
    padding: 4rem 2rem;
  text-align: center;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 10px;
}

.cta-section h2 {
    font-size: 2.2rem;
  margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
  margin-bottom: 2rem;
    line-height : 1.7;
}

.btn-large {
    background-color: white;
  color: var(--secondary-color);
}

.btn-large:hover  {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.contact-section {
  padding: 5rem 2rem;
   max-width: 1400px;
	margin: 0 auto;
}

.contact-section h2 {
               font-size :2.5rem;
   text-align: center;
  margin-bottom  :        1rem;
  color: var(--primary-color);
}

.contact-intro {
  text-align: center;
  font-size: 1.1rem;
  color:     #555;
   margin-bottom: 3rem;
}



.contact-form {
  max-width: 600px;
   	margin: 0 auto;
     background: white;
      padding    :  2.5rem;
      border-radius: 10px;
     box-shadow: 0 4px 20px 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: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
     width: 100%;
  padding: 0.9rem;
  border: 1px solid var(--border-color);
	border-radius     :       5px;
       font-family: inherit;
  font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;

	  border-color: var(--secondary-color);

	  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1); 

}

.form-group textarea {
   resize: vertical;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer {
  background-color: var(--primary-color);

	  color: var(--text-light);

		padding: 3rem 2rem;

	                    margin-top: 5rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
} 

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
 height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-content {


   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
    margin-bottom: 2rem;
}  

.footer-section h4 {
       font-size: 1.1rem;
    margin-bottom: 1rem;
  color: var(--secondary-color);
	}

.footer-section ul
	{
    list-style: none;
}

.footer-section ul li {
	margin-bottom: 0.5rem;
}  

.footer-section a {
  color: var(--text-light);
    text-decoration    :      none;
    transition: color 0.3s ease;
	
}

.footer-section a:hover {
  color: var(--secondary-color);
}

.footer-section p 
 {
   line-height: 1.8; 
	   color: #ccc;
}

.footer-bottom {
   text-align: center;
   padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
}@media (max-width: 768px) {
    .features-section h2,
    .services-overview h2,
    .contact-section h2 {
        font-size: 1.8rem;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .cta-section h2 {
        font-size: 1.6rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .features-grid,
    .services-list {
        grid-template-columns: 1fr;
    }
}.services-hero {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  color: white;
      padding: 4rem 2rem;
		 text-align: center;
          max-width: 1400px;
    margin   :0 auto;
}  

.services-hero-content h1 {
  font-size: 2.8rem; 
  margin-bottom: 1rem; 
  line-height: 1.2;
}

.services-hero-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 700px;
   margin: 0 auto;
}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .services-hero-content p {
        font-size: 1rem;
    }
}.service-detail-section {
   padding :    4rem 2rem;
   max-width: 1400px;
  margin :    0 auto;
       background-color: white;
}

.service-detail-section h2 {
             font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom     :     2rem;
    text-align: center;
     }

.service-detail-container {
  display: grid;
   grid-template-columns: 1fr 1fr;
	gap : 3rem;
    align-items: center;
}

.service-detail-container.reverse {
  direction: rtl;
}

.service-detail-container.reverse > * {
    direction   :       ltr;
}

.service-detail-image img {
    width: 100%;
  height: auto;
   border-radius   :       10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.service-detail-text h3 {
  font-size     :       1.8rem;
  color: var(--primary-color);
	margin-bottom: 1rem;
}

.service-detail-text p
{
  color     :#555;
  line-height: 1.8;
   margin-bottom: 1.5rem;
     font-size: 1rem;
}

.service-features {
  display: flex;
  flex-direction: column;
   gap: 1.2rem;
    margin-top: 1.5rem;
}

.feature-item {
   display: flex;
          gap  :   1rem;
  padding: 1.2rem;
	 background-color: #f8f9fa;
   border-radius: 8px;
  border-left: 4px solid var(--secondary-color);
}

.feature-number {
    display: flex;
   align-items  :center;
   justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
       color: white;
 border-radius: 50%;
  font-weight: bold;
	font-size   :  1.2rem;
   flex-shrink: 0;
}

.feature-item h4 {
  font-size: 1.1rem;
  color: var(--primary-color);
    margin-bottom: 0.3rem;
}


.feature-item p {
          color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.webinar-schedule {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
	margin-top: 1.5rem;
}

.schedule-item {
		 padding: 1.5rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
   border-radius: 8px;
  border-top: 3px solid var(--secondary-color);


}  

.schedule-item h4 {
  font-size   : 1.1rem;
     color: var(--primary-color);
   	 margin-bottom :        0.5rem;
}

.schedule-item p
{
  color: #555;
               font-size: 0.95rem;
   margin: 0;
}

.conference-benefits ul {
    list-style: none;
  padding: 0;
	margin-top: 1.5rem;
}

.conference-benefits li {
		padding: 0.8rem 0;
         padding-left: 2rem;
    color: #555;
	position: relative;
  line-height: 1.6; 

}

.conference-benefits li:before {
  content: "✓";
    position: absolute;
	left: 0;
  color: var(--secondary-color);
   font-weight: bold;
    font-size: 1.2rem;
	
}

.coaching-modules {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
               margin-top: 1.5rem;

}

.module-item


{
  padding: 1.5rem;
	background-color: #f8f9fa;
   border-radius: 8px;
  border: 2px solid var(--secondary-color);
    transition: all 0.3s ease;
     }

.module-item:hover {
	  border-color: var(--accent-color);
  box-shadow: 0 6px 15px rgba(102, 126, 234, 0.2);
  transform: translateY(-3px);
     }

.module-item h4 {
  font-size: 1.1rem;
  color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.module-item p {
    color: #666;
    font-size: 0.95rem;
   margin:   0;


}@media (max-width: 1024px) {
    .service-detail-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-detail-section {
        padding: 2rem 1rem;
    }

    .service-detail-section h2 {
        font-size: 1.6rem;
    }

    .service-detail-text h3 {
        font-size: 1.4rem;
    }

    .service-detail-container.reverse {
        direction: ltr;
    }

    .webinar-schedule,
    .coaching-modules {
        grid-template-columns: 1fr;
    }
}.service-comparison {

	    padding  : 4rem 2rem;
   max-width: 1400px;
  margin: 0 auto;
   background-color: #f8f9fa;
}

.service-comparison h2 {
	   font-size: 2.2rem;
  color: var(--primary-color);
         margin-bottom: 2rem;
   text-align: center;
	
	}

.comparison-table {
   overflow-x: auto;
  background-color: white;
    border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

table {
	width: 100%;
   border-collapse: collapse;
}

table thead   {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
               color: white;
	
}

table th {
    padding: 1.5rem;
  text-align: left;
   font-weight    :       600;
   font-size: 1rem;
}

table td  
  {
  padding: 1.2rem 1.5rem; 
	   border-bottom: 1px solid #e0e0e0; 
	  color: #555;
}

table tbody tr:hover {
    background-color: #f5f7fa;
}

table td.check {
  color: var(--secondary-color);
   font-weight: bold;
  font-size: 1.3rem;
  text-align: center;

} @media (max-width: 768px) {
    .service-comparison {
        padding: 2rem 1rem;
    }

    .service-comparison h2 {
        font-size: 1.6rem;
    }

    table th,
    table td {
        padding: 0.8rem 0.5rem;
        font-size: 0.85rem;
    }

    table th {
        font-size: 0.9rem;
    }
}.pricing-section {
	   padding: 5rem 2rem;
         max-width: 1400px;
 margin: 0 auto;
     }


.pricing-section h2 {
   font-size: 2.5rem;
   text-align: center;
  color: var(--primary-color);
   margin-bottom: 3rem; 
	
}

.pricing-grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
         gap: 2rem;
}

.pricing-card  {
       background     :   white;
    padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--border-color);
    transition: all 0.3s ease;
	 position: relative;



}

.pricing-card h3 {
        font-size: 1.5rem;
  color: var(--primary-color);
   margin-bottom: 1rem;
	
}

.price {
	   font-size: 2.2rem;
  color: var(--secondary-color);
   font-weight: bold;
        margin: 1rem 0;
}

.price-note {
  color :#999;
      font-size :  0.95rem;
      margin-bottom: 1.5rem;
}

.features-list {
    list-style  :     none;
   padding: 0;
	
}

.features-list li {
	padding: 0.8rem 0;
   color: #555;
   border-bottom: 1px solid #eee;
    position: relative;
   padding-left: 1.8rem;
}

.features-list li:before {
  content: "•";
  position: absolute;
   left: 0;
  color: var(--secondary-color);
	 font-weight: bold;
}

.features-list li:last-child {
    border-bottom  :none;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.pricing-card.basic {
	border-top-color: #3498db;
}

.pricing-card.standard {
  border-top-color: var(--secondary-color);
}

.pricing-card.featured {
  border-top-color: var(--accent-color);
  transform: scale(1.05);
   z-index: 10;


}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-card.enterprise {
    border-top-color: #2ecc71;
}

.badge {

    position: absolute;
   top    :       -15px;
    right   :  20px;
  background: var(--accent-color);
   color    : white;
    padding: 0.4rem 1rem;
        border-radius: 20px;
    font-size: 0.85rem;
         font-weight: bold;}

.cta-services {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  color: white;
                    padding: 4rem 2rem;
  text-align: center;
    max-width   :     1400px;
 margin: 3rem auto 0;
  border-radius: 10px;
}

.cta-services h2  
  {
    font-size: 2.2rem;
	margin-bottom: 1rem;
}

.cta-services p {
	font-size: 1.1rem;
   margin-bottom: 2rem;
     line-height: 1.7;
}@media (max-width: 768px) {
    .pricing-section {
        padding: 2rem 1rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .pricing-section h2 {
        font-size: 1.8rem;
    }

    .cta-services h2 {
        font-size: 1.6rem;
    }
}.thankyou-section {
       justify-content: center;
    margin:   3rem auto;
   display: flex;
  max-width     :    800px;
    min-height: 70vh;
   padding: 4rem 2rem;
    align-items: center;
    text-align: center;
}

.thankyou-container {
   background: white;

   padding: 3rem;

                    border-radius: 15px;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.success-icon {
   margin-bottom: 2rem;
}

.success-icon img   {
   width: 80px;
          height: 80px;
  stroke: var(--secondary-color);
  fill: var(--secondary-color);
  filter: drop-shadow(0 4px 12px rgba(102, 126, 234, 0.3));
}

.thankyou-section h1 {
	font-size: 2.5rem;
  color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.main-message {
  font-size: 1.3rem;
  color: var(--secondary-color);
   font-weight: 600;
   margin-bottom: 1rem;
}

.description {
   color: #555;
   font-size: 1rem;
      line-height: 1.8;
   margin-bottom   :  2.5rem;
}

.next-steps {
    text-align: left;
    margin: 2.5rem 0;
 padding: 2rem;
	 background-color: #f8f9fa;
    border-radius: 10px;
  border-left: 4px solid var(--secondary-color);
}

.next-steps h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
    margin-bottom: 1.5rem;
  text-align: center;
}

.steps-list		{
      gap: 1.2rem;
   flex-direction: column;
   display: flex;
}

.step {
        display: flex;
  gap: 1rem;
}

.step-number


{
   display:        flex;
   align-items: center;
      justify-content: center;
    width: 40px;
   height: 40px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  color: white;
   border-radius: 50%;
  font-weight: bold;
	flex-shrink: 0;
}



.step-content h4 {

		 font-size: 1.05rem;
  color: var(--primary-color);
   margin: 0 0 0.3rem 0;
	}

.step-content p {
	  color: #666;
  font-size   :   0.95rem;
	margin     :   0;
  line-height: 1.5;
	}

.additional-info {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 1.5rem;
       border-radius: 8px;
    margin     :    2rem 0;
}

.additional-info h3 {


         font-size: 1.2rem;
  color: var(--primary-color);
   margin-bottom: 0.8rem;

}

.additional-info p {
  color  :      #555;
	margin: 0;
  line-height: 1.6;
}

.cta-buttons {

		display  : flex;
   gap  :1rem;
   justify-content: center;
  margin-top: 2.5rem;
   flex-wrap: wrap; 
}

.cta-buttons .btn {
   margin: 0;
}@media (max-width: 768px) {
    .thankyou-section {
        padding: 1.5rem;
        margin: 1rem auto;
    }

    .thankyou-container {
        padding: 1.5rem;
    }

    .thankyou-section h1 {
        font-size: 1.8rem;
    }

    .main-message {
        font-size: 1.1rem;
    }

    .description {
        font-size: 0.95rem;
    }

    .next-steps {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}.policySection {
        padding:   80px 2rem;
    background: #f8f9fa;
    min-height:      70vh;
}

.policyContainer {
	max-width: 900px;
    margin: 0 auto;
   text-align: left;
}



.policyContainer h1 {
        font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-weight: 700;
  line-height: 1.2;
}


.policyContainer h2 {
    font-size: 1.8rem;
  color: var(--primary-color);
	margin-top: 2.5rem;
   margin-bottom:      1rem;
    font-weight: 600;
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 0.5rem;
}

.policyContainer p {
	color: #555;
	margin-bottom: 1.5rem;
   line-height: 1.8;
    font-size:    1rem;
   text-align: justify;
}

.policyContainer p:first-of-type {


    font-size: 1.05rem;
   color    : #666;
   font-style: italic;


}

.policyContainer h2 + p {
   margin-top: 1rem;
}@media (max-width: 1024px) {
    .policyContainer {
        max-width: 800px;
    }

    .policyContainer h1 {
        font-size: 2.4rem;
    }

    .policyContainer h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
        min-height: auto;
    }

    .policyContainer {
        max-width: 100%;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 2rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.2rem;
        text-align: left;
    }
}

@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;
    }

    .policyContainer p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
}.policyContainer
	{
  background: white;
    padding: 2rem;
   border-radius     :      8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);



}  @media print {
    .policySection {
        background: white;
        padding: 0;
    }

    .policyContainer {
        max-width: 100%;
        box-shadow: none;
        padding: 0;
    }

    .navbar,
    .footer {
        display: none;
    }
}