* {
    margin  : 0;
    padding: 0;
  box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --accent-color: #667eea;
    --light-bg: #f8f9fa;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.12);
}

html {
    scroll-behavior: smooth; 

}


body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: #ffffff;
   overflow-x :hidden;
}

h1, h2, h3, h4, h5, h6 {
   font-weight: 600;
    margin-bottom: 1rem;
  color: var(--primary-color);
}

h1 
 {


    font-size: 3rem;
    line-height: 1.2;

}

h2 {
    font-size: 2.2rem;
}

h3 {
	font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
   font-size: 1rem;
}

a {
  text-decoration: none;
  color: var(--accent-color);
   transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-color);
}

.navbar-main {

   background: white;
  box-shadow: var(--shadow-soft);
   position: sticky;
   top: 0;
  z-index: 1000;}

.navbar-container {
     max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
   align-items: center;
}

.navbar-logo {
    display     :       flex;
    align-items: center;


}

.logo-link {


  display  :   flex;
	    align-items: center;


}

.logo-image {
	height: 50px;
   width: auto;
}

.burger-toggle {
    display: none;
    background: none;
  border: none;
   cursor: pointer;
   padding: 0.5rem;

}

.burger-icon 
 {
	 width: 28px;
	height: 28px;
  stroke: var(--primary-color);
}

.navbar-menu {
  display: flex;
      list-style: none;
      gap: 2rem;
}

.navbar-item {
  position: relative;
}

.navbar-link {
  color: var(--text-dark);
    font-weight: 500;
   padding: 0.5rem 0;
  border-bottom:  2px solid transparent;
   transition: border-color 0.3s ease, color 0.3s ease;
}

.navbar-link:hover,
.navbar-link.active {
  border-bottom-color: var(--accent-color);

	  color: var(--accent-color);
} 

.hero-section {
    max-width: 1200px;
   margin: 0 auto;
   padding: 4rem 2rem;
   display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 3rem;
    align-items: center;
}

.hero-content {
  z-index: 2;
	
}

.hero-title
{
    font-size: 3rem; 
   margin-bottom: 1.5rem; 
          line-height: 1.2;
}

.hero-subtitle {
   font-size: 1.2rem;

	  color: var(--text-light);

	   margin-bottom: 2rem;

	    line-height     :       1.6;
}

.hero-cta{
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-color), #764ba2);
   color: white;
      padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
       color: white;
}

.hero-image {
    position: relative;
}

.hero-img {
    width: 100%;
   height: auto;
  border-radius: 20px;
    object-fit: cover;
  box-shadow: var(--shadow-medium);
}

.intro-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e8eaf6 100%);
          padding: 3rem 2rem;}  

.intro-wrapper {
	max-width: 900px;
          margin: 0 auto;
   text-align: center;
}

.section-title {
    font-size: 2.2rem;
   margin-bottom: 2rem;
  color: var(--primary-color);
}

.section-title.centered {
	 text-align: center;
     }

.intro-text {


  font-size: 1.1rem;
   line-height: 1.8;
  color: var(--text-light);

}

.benefits-section {


    max-width: 1200px; 
	    margin :       0 auto; 
	    padding: 4rem 2rem;}

.benefits-grid {
   display : grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
   margin-top: 3rem;
}

.benefit-card {
       background: white;
  border: 1px solid var(--border-color);
  border-radius: 12px;
	 padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
     }

.benefit-header {
  margin-bottom: 1.5rem;
}

.benefit-header h3 {
    font-size    :        1.3rem;
	margin-bottom  :      0;
}

.benefit-text {
  color: var(--text-light);
   font-size: 0.95rem;
}

.showcase-section {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
    max-width: 1200px;
  margin:   4rem auto;
    padding: 0 2rem;
}

.showcase-item {
  position: relative;
  height: 280px;
  border-radius: 12px;
   overflow: hidden;
     cursor: pointer; 

}

.showcase-img {
  width: 100%;
  height: 100%;
	object-fit: cover;
   transition: transform 0.4s ease;
}

.showcase-overlay {


    position: absolute;
    inset: 0;
  background: rgba(44, 62, 80, 0.85);
    display: flex;
	 flex-direction: column;
  justify-content: flex-end;
   padding: 2rem;
  color: white;
	 opacity: 0;
    transition: opacity 0.3s ease;
}

.showcase-item:hover .showcase-img {
  transform: scale(1.05);
}

.showcase-item:hover .showcase-overlay {
    opacity: 1;
}

.showcase-overlay h3 {
    color: white;
       font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.showcase-overlay p {
  color: rgba(255, 255, 255, 0.9);

    font-size: 0.9rem;

  margin-bottom: 0;
}

.cta-section {
  background: linear-gradient(135deg, var(--accent-color), #764ba2);
  color :        white;
                    padding: 4rem 2rem;
	 text-align: center;
	 margin: 3rem 0;
}

.cta-wrapper {

	max-width: 800px;
  margin: 0 auto; 
	
	}

.cta-title {
  color: white;
    font-size: 2.5rem;
   margin-bottom: 1rem;
}

.cta-description {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}



.cta-button {
   display: inline-block;
   background: white;
  color: var(--accent-color);
   padding: 1rem 2.5rem;
   border-radius  : 50px;
   font-weight: 600;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact-section {
  max-width: 800px;
 margin: 0 auto;
  padding: 4rem 2rem;
}

.contact-intro {
    text-align: center;
     color: var(--text-light);
     margin-bottom: 2rem;
     font-size: 1.1rem;
}

.contact-form  
  {
  display: flex;
         flex-direction: column;
   gap: 1.5rem;
}

.form-group {
    display: flex;
        flex-direction: column; 
	
}

.form-label {
	font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.form-input,
.form-textarea {
 padding: 0.75rem 1rem;

	  border: 1px solid var(--border-color);

	    border-radius: 8px;

	    font-size: 1rem;

	    font-family: inherit;

	    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
   outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-textarea {
    resize: vertical;
   min-height: 120px;
}

.form-submit {
  background: linear-gradient(135deg, var(--accent-color), #764ba2);
    color  :        white;
          padding: 1rem 2rem;
   border: none;
    border-radius: 8px;
   font-weight:       600;
  font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
	
}


.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}  

.leadership-section {
               display: grid;
    grid-template-columns: 1fr 1fr;
   gap    :3rem;
  align-items: center;
   max-width: 1200px;
   margin: 4rem auto;
          padding: 0 2rem;
} 

.leadership-img {
  width: 100%;
  height: auto;
    border-radius: 12px;
    object-fit: cover;
  box-shadow: var(--shadow-medium);
}

.leadership-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.leadership-content p

{
    margin-bottom: 1.5rem;
   font-size  :    1.05rem;
}

.leadership-list {
  list-style  :     none;
    padding   : 0;
}

.leadership-list li {
    padding  :   0.75rem 0;
    padding-left: 1.5rem;
  position: relative;
  color: var(--text-light);
}

.leadership-list li:before {
  content: "→";
    position: absolute;
  left: 0;
  color: var(--accent-color);
    font-weight    :       bold;}

.footer-section {
  background: var(--primary-color);
    color: white;
   padding: 3rem 2rem 1rem;
   margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-brand {
        display:flex;
  align-items: flex-start;
}

.footer-logo  
  {
     height: 45px;
      width     :     auto;
  filter: brightness(0) invert(1); 

}

.footer-heading {
   font-size: 1.1rem;
   font-weight: 600;
				 margin-bottom   :      1rem;
}

.footer-menu {
   list-style: none;
}

.footer-menu li {
	 margin-bottom: 0.75rem;
	
}

.footer-menu a     {
  color: rgba(255, 255, 255, 0.8);
        transition: color 0.3s ease;
}

.footer-menu a:hover {
          color: white;


}

.footer-text {
  color: rgba(255, 255, 255, 0.8);
  font-size   :0.95rem;
    line-height: 1.6;
}

.footer-phone {
  color: rgba(255, 255, 255, 0.8);
   margin-top: 0.75rem;
   font-weight  : 500;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
   padding-top: 1.5rem;
 text-align: center;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
    font-size    :      0.9rem;
  margin: 0;
}@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .burger-toggle {
        display: block;
    }

    .navbar-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 1rem;
        box-shadow: var(--shadow-soft);
    }

    .navbar-menu.active {
        display: flex;
    }

    .navbar-item {
        border-bottom: 1px solid var(--border-color);
    }

    .navbar-link {
        display: block;
        padding: 1rem 0;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
        gap: 2rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .showcase-section {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .showcase-item {
        height: 200px;
    }

    .leadership-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .contact-form {
        gap: 1rem;
    }
}.services-header {


  background: linear-gradient(135deg, #2c3e50 0%, #667eea 100%);
    color: white;
    padding: 3rem 2rem;
  text-align: center;
}

.header-content h1 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 1rem;


}

.header-content p {
  color: rgba(255, 255, 255, 0.9);
       font-size: 1.2rem;

}

.services-main {
  max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.services-container {
  flex-direction: column;
  display :      flex;
    gap:  3rem;
}

.service-card  {
   background: white;
	    border: 1px solid #e0e0e0;
	    border-radius: 12px;
	  overflow:   hidden;
	  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	    transition   :box-shadow 0.3s ease, transform 0.3s ease;
}  

.service-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.service-card-large
{
    display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
}

.service-image {
    position: relative;
  overflow: hidden;
   min-height: 300px;
}

.service-img {
	width: 100%;
    height: 100%;
  object-fit :      cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-img {
  transform: scale(1.05);
}

.service-content {
	    padding: 2.5rem;
    display: flex;
    flex-direction: column;
   justify-content :        space-between;
}

.service-content h2 {
  color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-intro {
    color: #667eea;
	font-weight: 600;
   font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.service-details {
    margin-bottom: 1.5rem;

}

.service-details h3 {


		color: #2c3e50;
    font-size: 1rem;
   margin-bottom: 0.75rem;
}

.service-list    {
       list-style   :        none;
     padding: 0;
}

.service-list li {


	padding: 0.5rem 0;
	    padding-left: 1.5rem;
	    position: relative;
	  color: #666;
	  font-size: 0.95rem;
     }

.service-list li:before
{
  content: "→";
   position   :   absolute;
  left: 0;
   color: #667eea;
	font-weight: bold;
}

.service-info{
    display: grid;
  grid-template-columns: repeat(3, 1fr);
   gap: 1rem;
  margin-bottom: 1.5rem;
    padding: 1.5rem;
  background: #f8f9fa;
    border-radius: 8px;
}

.info-block {
      display: flex;
  flex-direction: column;
}

.info-label {
  text-transform: uppercase;
    color: #2c3e50;
    margin-bottom: 0.5rem;
	font-weight   :       600;
   font-size: 0.85rem;
}

.info-value {


        color: #667eea;
 font-size: 0.95rem;
    font-weight: 500;


}

.service-description  {
  color: #666;
	   line-height: 1.7;
		 font-size: 0.95rem;
}


.services-comparison {
    background: #f8f9fa;
    padding: 4rem 2rem;
    margin-top: 3rem;
}

.services-comparison h2 {
    text-align: center;
  margin-bottom: 3rem;
   color: #2c3e50; 

}

.comparison-table {
  max-width: 1000px;
   margin: 0 auto;
    overflow-x    : auto;
}

.services-table {
    width     :    100%;
	 border-collapse: collapse;
  background: white;
    border-radius   :   8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.services-table thead {
  background: linear-gradient(135deg, #2c3e50, #667eea);
  color: white;
}

.services-table th {
  padding: 1.5rem;
    text-align: left;
         font-weight    :600;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.services-table th:last-child {
    border-right     :    none;
}

.services-table td {

	    padding: 1.5rem;
       border-bottom: 1px solid #e0e0e0;
       color: #666;}

.services-table tbody tr:hover {
    background: #f8f9fa;
}

.services-table tbody tr:last-child td {
         border-bottom: none;
}

.table-yes {
       color: #27ae60;
    font-weight: 600;
}

.table-no {
	color     :  #e74c3c;
  font-weight: 600;
}

.table-partial {
  color: #f39c12;
   font-weight: 600;
}



.why-choose-us {
  max-width: 1200px;
          margin: 0 auto;
    padding: 4rem 2rem;
	
}

.why-choose-us h2 {
  text-align: center;
               margin-bottom:        3rem;
	}

.reasons-grid {
 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
   gap: 2rem;
}

.reason-card {
  background:white;
    padding: 2rem;
  border-radius:   12px;
   border-left: 4px solid #667eea;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
   transition:   transform 0.3s ease, box-shadow 0.3s ease;
	
}

.reason-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.reason-card h3 {


        color: #2c3e50;

  margin-bottom: 1rem;
	}

.reason-card p {
    color: #666;
  font-size: 0.95rem;
  margin: 0;
}

.thankyou-section {
   max-width: 900px;
  margin: 0 auto;
   padding: 4rem 2rem;
  text-align: center;
}

.thankyou-container {
       background: white;
   border-radius: 12px;
   padding:        3rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);}

.thankyou-icon	{
      margin-bottom: 2rem;
}

.success-icon {
  width: 80px;
          height: 80px;
    stroke: #27ae60;
  filter: drop-shadow(0 0 8px rgba(39, 174, 96, 0.3));
}

.thankyou-title {
        color: #2c3e50;
     font-size: 2.2rem;
   margin-bottom: 0.5rem; 

}

.thankyou-subtitle {
	    color: #27ae60;
  font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
	}

.thankyou-content   {
  text-align: left;
     margin: 2rem 0;
}

.thankyou-text {
    color: #666;
    font-size: 1.05rem;
   line-height :    1.8;
    margin-bottom: 2rem;
}

.thankyou-info {
     background: #f8f9fa;
                    padding: 2rem;
  border-radius: 8px;
   margin-bottom: 2rem;}

.thankyou-info h2	{
   color: #2c3e50;
        text-align: left;
    margin-bottom: 1.5rem;
}

.next-steps {
   list-style: none;
   padding :       0;
}

.next-steps li {
       display: flex;
    gap: 1.5rem;
  margin-bottom: 1.5rem;
    align-items :      flex-start;
}

.next-steps li:last-child {
    margin-bottom: 0; 
	
}

.step-number {
    display: flex;

	  align-items    :       center;

		justify-content:        center;

	    width: 40px;

	    height: 40px;

	    background: #667eea;

	   color: white;

	    border-radius    :     50%;

	       font-weight: 600;

	  flex-shrink: 0;
}

.step-content {
    text-align   :      left;
}

.step-content h3 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.step-content p {
	   color: #666;
               margin: 0;
       font-size: 0.95rem;

}

.thankyou-tips {
   background: #e8eaf6;
    padding     :  2rem;
  border-radius: 8px;
    margin-bottom: 2rem;
}

.thankyou-tips h2 {
      color: #2c3e50;
  text-align: left;
   margin-bottom: 1rem;
}

.tips-list {

    list-style   :     none;
    padding   :       0;
   text-align: left;
     }  

.tips-list li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
    position: relative;
  color: #666;
}

.tips-list li:before {


  content: "→";
  position: absolute;
    left: 0;
  color   :    #667eea;
    font-weight: bold;


}


.thankyou-actions {

	   display: flex;
  gap: 1rem;
    justify-content   :     center;
  flex-wrap: wrap;
    margin-bottom: 2rem;

}

.action-button {
     display: inline-block;
    padding: 1rem 2rem;
  border-radius: 8px;
   font-weight: 600;
	transition: all 0.3s ease;
  text-decoration: none;
}

.primary-button {
  background: linear-gradient(135deg, #667eea, #764ba2);
	color  :     white;
}

.primary-button:hover {


  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);}

.secondary-button {
  background: white;
  color: #667eea;
   border: 2px solid #667eea;
}

.secondary-button:hover     {

    background: #f8f9fa;
  color: #667eea;
	}

.contact-support {
    padding-top: 2rem;
  border-top: 1px solid #e0e0e0;
}

.support-text {
   color: #666; 
	  font-size: 1rem;
}

.testimonials-preview {
	  background: linear-gradient(135deg, #f8f9fa 0%, #e8eaf6 100%);
    padding: 4rem 2rem;
  margin-top: 3rem;
     }  

.testimonials-preview h2 {
   text-align:       center;
         margin-bottom: 3rem;


}

.testimonials-grid {

    display    :grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
				 max-width: 1200px;
   margin: 0 auto;
}

.testimonial-card {
    background: white;
	padding: 2rem;
       border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
   border-left   :  4px solid #667eea;
}

.testimonial-text {
    font-style: italic;
   color: #666;
   margin-bottom: 1rem;
    line-height: 1.7;
   font-size: 0.95rem;
}

.testimonial-author {
  color: #2c3e50;
   font-weight: 600;
  margin:   0;
}

.faq-section {
    max-width: 1200px;
   margin  :       0 auto;
  padding: 4rem 2rem;
}

.faq-section h2 {
   text-align: center;
   margin-bottom: 3rem;
}



.faq-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;

} 

.faq-item {
    background: white;
  padding: 2rem;
   border-radius: 12px;
   border: 1px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-item h3
{
   color: #2c3e50;

    margin-bottom: 1rem;
}

.faq-item p {
       font-size: 0.95rem;
    line-height   :        1.7;
  margin: 0;
    color: #666;
	
}@media (max-width: 768px) {
    .service-card-large {
        grid-template-columns: 1fr;
    }

    .service-info {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .header-content h1 {
        font-size: 1.8rem;
    }

    .thankyou-container {
        padding: 2rem;
    }

    .next-steps li {
        gap: 1rem;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .services-table {
        font-size: 0.85rem;
    }

    .services-table th,
    .services-table td {
        padding: 1rem;
    }

    .thankyou-actions {
        gap: 0.75rem;
    }

    .action-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .header-content h1 {
        font-size: 1.5rem;
    }

    .service-content {
        padding: 1.5rem;
    }

    .service-info {
        grid-template-columns: 1fr;
    }

    .thankyou-title {
        font-size: 1.6rem;
    }

    .thankyou-container {
        padding: 1.5rem;
    }

    .next-steps li {
        flex-direction: column;
    }

    .step-number {
        align-self: flex-start;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .action-button {
        width: 100%;
        text-align: center;
    }
}.policySection {
    padding : 80px 2rem;
   background: #f8f9fa;
   min-height : 70vh;
}

.policyContainer   {
  max-width: 900px;
    margin: 0 auto;
    text-align: left;
    background: white;
  padding    :  3rem;
  border-radius     :      12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.policyContainer h1 {
   font-size: 2.8rem;
  color: #2c3e50;
   margin-bottom: 2rem;
    font-weight: 700;
  border-bottom  :      3px solid #667eea;
    padding-bottom: 1rem;
} 

.policyContainer h2 {
  font-size: 1.8rem;
   color: #2c3e50;
   margin-top: 2.5rem;
   margin-bottom: 1.5rem;
   font-weight: 600;
  border-left: 4px solid #667eea;
    padding-left: 1rem;
}

.policyContainer h2:first-of-type {
	 margin-top: 0;
}

.policyContainer p {
   color: #666;
  margin-bottom: 1.5rem;
   line-height: 1.8;
	font-size: 1.05rem;
    text-align  :justify;
}

.policyContainer p:last-child {
  margin-bottom: 0;
}

.policyContainer a {
  color: #667eea;
  text-decoration: none;
  transition: color 0.3s ease;
}

.policyContainer a:hover {
	color: #764ba2;
    text-decoration: underline;
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer {
        padding: 2rem;
        border-radius: 8px;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        padding-bottom: 0.75rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
        padding-left: 0.75rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
        line-height: 1.7;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 0.75rem;
    }

    .policyContainer {
        padding: 1.5rem;
        border-radius: 8px;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 1.25rem;
        border-bottom: 2px solid #667eea;
        padding-bottom: 0.75rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
        border-left: 3px solid #667eea;
        padding-left: 0.75rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }
}

@media (prefers-color-scheme: dark) {
    .policySection {
        background: #1a1a1a;
    }

    .policyContainer {
        background: #2a2a2a;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    }

    .policyContainer h1,
    .policyContainer h2 {
        color: #e8e8e8;
    }

    .policyContainer p {
        color: #b0b0b0;
    }

    .policyContainer a {
        color: #8bb0ff;
    }

    .policyContainer a:hover {
        color: #b0d4ff;
    }
}

@media print {
    .policySection {
        background: white;
        padding: 20px;
    }

    .policyContainer {
        box-shadow: none;
        border: 1px solid #ddd;
        padding: 20px;
    }

    .policyContainer h1,
    .policyContainer h2 {
        page-break-after: avoid;
    }

    .policyContainer p {
        page-break-inside: avoid;
    }
}