*


{
	margin: 0;
  padding: 0;
   box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height   :  1.6;
   color   :        #2c3e50;
                    background: #ffffff;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #f59e0b;
    --light-bg: #f8fafc;
    --dark-text: #1f2937;
    --border-color: #e5e7eb;
    --success-color: #10b981;
}

html {

	  scroll-behavior: smooth;

}

.navbar {
  position: sticky;
    top: 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border-color);
  z-index     :  1000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); 
	
}

.nav-container {
   max-width: 1400px;
   margin: 0 auto;
   display: flex;
   justify-content : space-between;
    align-items: center;
   padding: 1rem 2rem;
}

.nav-brand     {
    display: flex;
   align-items: center;
}

.nav-logo {
	height: 64px;
    width: auto;
	display    :   block;
	
}

.burger-menu {
    display: none;
   background: none;
		 border: none;
   cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
}


.burger-line {
	 width     :  24px;
    height: 2.5px;
  background: var(--dark-text);
   border-radius: 2px;
  transition: all 0.3s ease;
	 display:   block;
}

.nav-links {
               display: flex;
  list-style:       none;
    gap     :     3rem;
    align-items: center;
}

.nav-links a {
  text-decoration   :       none;
  color: var(--dark-text);
    font-weight: 500;
  transition: color 0.3s ease;
   position: relative;
}

.nav-links a:after		{
  content: '';
   position: absolute;
    bottom: -4px;
   left: 0;
  width: 0;
    height: 2px;
  background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover:after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-links.active

{

	display   : flex;
     }

.hero {
      max-width: 1400px;
    margin: 0 auto;
  padding: 4rem 2rem;
  display :        grid;
   grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items  :     center;
     }

.hero-content h1 
 {
   font-size: 3.5rem;
  font-weight: 700;
   line-height: 1.2;
    margin-bottom: 1.5rem;
  color: var(--dark-text);
}

.hero-content p	{
    font-size: 1.2rem;
  color: #6b7280;
		margin-bottom: 2rem;
  line-height     :        1.8;

}

.btn-primary {
  display: inline-block;
   padding: 14px 32px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
      text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  border  : none;
   cursor: pointer;
  font-size    :     1rem;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}  

.hero-image img {
    width     :  100%;
 height: auto;
   border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
     }

.services-showcase 
 {
  background: var(--light-bg);
  padding: 5rem 2rem;
   margin-top    :      2rem;
}

.section-header {
  text-align: center;
    max-width: 800px;
   margin: 0 auto 3rem;
}

.section-header h2 {

	  font-size: 2.8rem;
   font-weight: 700;
    margin-bottom: 1rem;
  color: var(--dark-text);


}  

.section-header p {
   font-size: 1.1rem; 
   color: #6b7280;
}

.services-grid {
    max-width: 1400px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 12px;
  overflow: hidden;
	transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12); 
	
}

.service-image {
    height: 240px;
   overflow: hidden;

}

.service-image img    {


    width: 100%;
    height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;

}  

.service-card:hover .service-image img  
  {


  transform: scale(1.05);

}

.service-card h3 {

    font-size    :      1.5rem;
	    padding: 1.5rem 1.5rem 0.5rem;
	  color: var(--dark-text);

}

.service-card p   {

    padding: 0.5rem 1.5rem 1.5rem;
 color: #6b7280;
  line-height: 1.6;
	}

.coaching-programs {
  max-width: 1400px;
	 margin: 0 auto;
   padding: 4rem 2rem;
  display: grid;
    grid-template-columns: 1fr 1fr;
    gap:    3rem;
    align-items: center;
}

.programs-content h2 {

	   font-size: 2.5rem; 
    font-weight: 700; 
  margin-bottom  :        1rem; 
  color: var(--dark-text);

}

.programs-content > p {
    font-size    :        1.1rem;
  color: #6b7280;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.programs-list {
	display     :    flex;
    flex-direction: column;
    gap: 1.5rem;
}

.program-item {


   padding: 1.5rem;
  background: var(--light-bg);
  border-left: 4px solid var(--primary-color);
	 border-radius: 6px;
    transition: all 0.3s ease;}

.program-item:hover {
   background: #f0f9ff;
  transform: translateX(8px);


}

.program-item h4	{
  font-size: 1.2rem;
  color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.program-item p {
  color: #6b7280;
    font-size: 0.95rem;
}

.programs-image img {
	width: 100%;
   border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);

}

.webinars-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding    :4rem 2rem;
  margin-top: 3rem;
  color: white;
}

.webinars-header {
    text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.webinars-header h2{
  font-size: 2.8rem; 
	   font-weight: 700; 
	  margin-bottom: 1rem;
}

.webinars-header p  
  {
	font-size: 1.1rem;
  opacity: 0.95;
}

.webinars-container {
  max-width: 1400px;

  margin   :     0 auto;

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

  gap:  2rem;
}

.webinar-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
   padding  :     2rem;
   border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
   transition :    all 0.3s ease;
}

.webinar-card:hover {

	  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
}

.webinar-card h3 {
  font-size  :       1.3rem;
   margin-bottom: 1rem;
   font-weight: 600;
} 

.webinar-card p {
   font-size :  0.95rem;
  line-height: 1.6;
   opacity: 0.9;
}


.expertise-section		{
    max-width: 1400px;
    padding: 4rem 2rem;
	margin: 0 auto;
   text-align: center;
}

.expertise-section h2 {


   font-size: 2.5rem;
    font-weight :        700;
  margin-bottom: 3rem;
  color: var(--dark-text);
	}

.expertise-grid
{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap    :  2.5rem;
}

.expertise-item {
  padding: 2rem;
  background: var(--light-bg);
  border-radius: 10px;
    transition  :      all 0.3s ease;
}

.expertise-item:hover {
     background: #eff6ff;
  transform: translateY(-6px);

}

.expertise-item h3 {
    font-size  :        1.4rem; 
	  color: var(--primary-color); 
	  margin-bottom: 1rem;
}

.expertise-item p {
  color: #6b7280;
    line-height: 1.7;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); 
	   padding: 4rem 2rem; 
	  text-align: center; 
	  color:     white; 
	   margin  :       3rem 0;
}

.cta-content h2 {
   font-size: 2.5rem;
    font-weight: 700;
  margin-bottom: 1rem;
}

.cta-content p {
      font-size  :  1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;}

.btn-cta {


  display: inline-block;
                    padding: 14px 40px;
    background: white;
  color: var(--primary-color);
  text-decoration: none;
               border-radius: 8px;
	font-weight: 600;
   transition: all 0.3s ease;
    font-size: 1rem;
    border: none;
  cursor: pointer;
	}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

#contact{
    margin :        0 auto;
  padding: 4rem 2rem;
    max-width     :   800px;
}

.contact-section h2     {
  font-size: 2.2rem;
   text-align: center;
   margin-bottom: 0.5rem;
  color: var(--dark-text);
} 

.contact-section > p {
   text-align: center;
   color   :  #6b7280;
    margin-bottom: 2rem;
}  

.contact-form {
  background: var(--light-bg);
   padding: 2.5rem;
  border-radius   :        12px;
  border: 2px solid var(--border-color);
        transition: all 0.3s ease;
}

.contact-form:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
}

.form-group {
	margin-bottom: 1.5rem;
	} 

.form-group label {
   display: block;
  font-weight: 600;
   margin-bottom :       0.5rem;
  color: var(--dark-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
	border-radius    :      6px;
    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: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);


}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
   width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
   border: none;
    border-radius: 6px;
    font-weight: 600;
  font-size: 1rem;
   cursor    :  pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.footer	{
    background: #1f2937;
   color     :      white;
   margin-top: 4rem;
}

.footer-content {
        max-width: 1400px;
         margin  :     0 auto;
   padding: 3rem 2rem;
    display  :  grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-brand {
    display: flex;
               flex-direction: column;
   justify-content: flex-start;
}



.footer-logo {
  height: 86px;
    width: auto;
    margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-info,
.footer-links,
.footer-legal {
    display: flex;
  flex-direction: column;
}

.footer-info h3,
.footer-links h3,
.footer-legal h3 {
    margin-bottom: 1rem;

	  font-size: 1.1rem;
}  

.footer-info p {
  margin-bottom: 0.5rem;
    color     :      #d1d5db;
   font-size: 0.95rem;
}

.footer-links ul,
.footer-legal ul {
   list-style: none;
}

.footer-links a,
.footer-legal a {
    color: #d1d5db;
    text-decoration   :  none;
    transition: color 0.3s ease;
    display: block;
  margin-bottom: 0.5rem;
}

.footer-links a:hover,
.footer-legal a:hover {

  color: white;


}

.footer-bottom {
     background  :#111827;
	padding: 2rem;
   text-align: center;
  color: #9ca3af;
    font-size: 0.9rem;


}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: white;
        border-top: 1px solid var(--border-color);
        padding: 1rem 0;
        margin-top: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links a {
        display: block;
        padding: 1rem 2rem;
    }

    .nav-links a:after {
        display: none;
    }

    .nav-links a:hover {
        background: var(--light-bg);
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .coaching-programs {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }

    .hero-content p,
    .cta-content p {
        font-size: 1rem;
    }

    .section-header h2,
    .webinars-header h2 {
        font-size: 1.8rem;
    }

    .expertise-section h2,
    .cta-content h2,
    .contact-section h2 {
        font-size: 1.8rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .nav-logo {
        height: 50px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .btn-primary,
    .btn-cta,
    .btn-submit {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #1e40af 0%, #667eea 100%);
  padding: 5rem 2rem;
	color: white;
  text-align: center;
  position: relative;
    min-height: 300px;
   display    : flex;
   align-items: center;
   justify-content: center;
     }

.hero-overlay {
  max-width:     900px;
}

.services-hero h1 {
                    font-size: 3.5rem;
  font-weight: 700;
   margin-bottom: 1rem;
    line-height: 1.2;
}

.services-hero p {
   font-size: 1.3rem;
	 opacity    :     0.95;
   line-height: 1.8;


}

.services-main {
   max-width: 1400px;
         padding   :       3rem 2rem;
   margin: 0 auto;
}

.services-container		{

	   display: flex;
   flex-direction: column;
  gap   : 4rem;
     }



.service-detailed {
           display: grid;
       grid-template-columns :       1fr 1fr;
   	gap: 3rem;
     align-items: start;
      padding:   2rem;
     background: var(--light-bg);
    border-radius   :   12px;
       transition: all 0.3s ease;
	
}

.service-detailed:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.service-detailed.alternate {
    direction: rtl;
}

.service-detailed.alternate > * {
  direction: ltr;
}

.service-detail-image {
  overflow   :    hidden; 
   border-radius  :        10px; 
    height: 100%;
}

.service-detail-image img {
    height   :  100%;
  width: 100%;
    -webkit-transition: transform 0.3s ease;
   object-fit: cover;
  transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
}

.service-detailed:hover .service-detail-image img {
  transform: scale(1.05);
}

.service-detail-content h2 {

    font-size: 2.2rem;
  color: var(--dark-text);
   margin-bottom: 1rem;
    font-weight: 700;
	}

.service-detail-content > p {
    font-size: 1.05rem;
  color: #6b7280;
    line-height: 1.8;
   margin-bottom: 2rem;
}

.service-features {
   display: grid;
	grid-template-columns: 1fr;
    gap: 1.5rem;
   margin-bottom :2rem;
}

.feature-item {
    padding: 1.5rem;
    background: white;
  border-left: 4px solid var(--primary-color);
   border-radius: 6px;
    transition: all 0.3s ease;

}

.feature-item:hover {
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.15);
  transform: translateX(8px);

}

.feature-item h4 {
   font-size: 1.1rem;
  color: var(--primary-color);
	margin-bottom: 0.5rem;
   font-weight: 600;
}

.feature-item p {
    color: #6b7280;
   font-size: 0.95rem;
   line-height: 1.6;

}

.service-meta {
          padding: 1.5rem;
   background   :     white;
   border-radius: 8px;
  border: 1px solid var(--border-color);
}

.service-meta p {
    margin-bottom:       0.5rem;
   color: #374151;
        font-size: 0.95rem;
}

.service-meta strong {
  color: var(--primary-color);
}

.services-comparison
	{
   max-width: 1400px;
   margin     :4rem auto 0;
  padding: 3rem 2rem;
  background: var(--light-bg);
}

.services-comparison h2 {


   font-size: 2.2rem;
  text-align: center;
  margin-bottom    : 2rem;
  color: var(--dark-text);


}

.comparison-table {


  overflow-x: auto;}

table {
  width: 100%;
	    border-collapse: collapse;
	   background: white;
	       border-radius  :    10px;
	  overflow: hidden;
	  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

thead {
     background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
	}

th {
  padding: 1.5rem;
   text-align: left;
   font-weight :     600;
  font-size    :  1rem;
}

td {


	 padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  color: #374151;
   font-size: 0.95rem;
	}

tbody tr  {
  transition: background 0.3s ease;
}

tbody tr:hover
{
    background: #f9fafb;
}

tbody tr:last-child td {
    border-bottom: none;
}

.services-cta {
  max-width: 1400px;

	   margin: 3rem auto;

	 padding: 3rem 2rem;
}

.services-cta h2

{
    font-size: 2.2rem;
     text-align: center;
  margin-bottom: 2rem;
  color: var(--dark-text);
}

.cta-reasons
{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.reason-card {
   padding: 2rem;
   background: white;
    border-radius: 10px;
  border: 2px solid var(--border-color);
   transition    :        all 0.3s ease;
    text-align:  center;
	}

.reason-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.15);
  transform: translateY(-8px);
}

.reason-card h3 {
          font-size  :1.3rem;
  color: var(--primary-color);
   margin-bottom:     1rem;
   font-weight: 600;
}

.reason-card p {
  color   :#6b7280;
    line-height   :       1.6;
}

.contact-cta-services {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
   padding: 3rem 2rem;
   text-align: center;
   color: white;
  border-radius: 12px;
  max-width: 1400px;
    margin: 3rem auto 4rem;
} 

.contact-cta-services h2 {
    font-size: 2.2rem;
   margin-bottom: 1rem; 
	
}

.contact-cta-services p {
	 font-size: 1.1rem;
   margin-bottom: 2rem;
   opacity: 0.95; 
	
}

.contact-cta-services .btn-primary {
  background: white;
  color: var(--primary-color);
}

.contact-cta-services .btn-primary:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.thankyou-container     {
    max-width: 800px;
    margin: 0 auto;
	 padding: 4rem 2rem;
    min-height :        600px;
          display    :        flex;
  align-items: center;
	justify-content: center;
}

.thankyou-content 
 {
    text-align :  center;
  background: var(--light-bg);
  padding: 3rem;
    border-radius   :       12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.success-icon {
  margin-bottom     :   2rem;
  display: flex;
  justify-content: center;
}

.success-icon svg {
       width: 120px;
  height: 120px;
  animation: scaleIn 0.5s ease-out;
     }

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-content h1 {
       font-size: 2.8rem;
	  color: var(--success-color);
	        margin-bottom  :        1rem;
		font-weight: 700;}

.thank-message {
   font-size   :  1.3rem;
  color: #6b7280;
   margin-bottom:2rem;
  line-height: 1.8;
}

.thank-details {
    background: white;
  padding    :      2rem;
    border-radius: 8px;
	 margin-bottom: 2rem;
  border-left: 4px solid var(--success-color);
      text-align: left;
}

.thank-details p {
   	 color: #374151;
   margin-bottom: 1rem;
          line-height: 1.7;}

.next-steps {


  list-style: none;
	    padding: 1rem 0;
		margin: 1rem 0;



}

.next-steps li
	{
  color  :        #6b7280;
    position: relative;
   padding: 0.7rem 0;
  padding-left: 1.5rem;
}

.next-steps li:before {
  content: '✓';
   position: absolute;
   left: 0;
  color: var(--success-color);
   font-weight: bold;
}

.quick-actions {
   display: flex;
	 flex-direction: column;
   gap :     1rem;
   margin-bottom: 2rem;

}

.quick-actions .btn-primary,
.quick-actions .btn-secondary {
  padding   :12px 24px;
    text-decoration   :    none;
  border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary
	{
  background: var(--light-bg);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
	  background: var(--primary-color);
	    color: white;
}

.contact-info-thank {
  background    :        white;
      padding: 1.5rem;
      border-radius: 8px;
     border-top: 2px solid var(--primary-color);
	
}

.contact-info-thank p 
 {
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}



.contact-info-thank strong {
  color: var(--primary-color);
}

.testimonials-section {
	padding    :        3rem 2rem;
   max-width  :      1400px;
  margin: 3rem auto;
}

.testimonials-section h2 {
   font-size    :       2.2rem;
   text-align: center;
  margin-bottom: 2rem;
  color: var(--dark-text);
}

.testimonials-grid {
   display:  grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    padding: 2rem;
  background: var(--light-bg);
	border-radius: 10px;
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.15);
  transform: translateY(-5px);
}

.testimonial-text		{

  color: #374151;
    font-size: 1rem;
   line-height: 1.8;
   margin-bottom   : 1.5rem;
  font-style: italic;


}

.testimonial-author {
  color: var(--primary-color);
	 font-weight: 600;
    font-size: 0.95rem;
	
}@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2.2rem;
    }

    .services-hero p {
        font-size: 1.1rem;
    }

    .service-detailed {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }

    .service-detailed.alternate {
        direction: ltr;
    }

    .service-detail-content h2 {
        font-size: 1.7rem;
    }

    .services-comparison {
        overflow-x: auto;
    }

    table {
        font-size: 0.85rem;
    }

    th, td {
        padding: 1rem;
    }

    .cta-reasons {
        grid-template-columns: 1fr;
    }

    .contact-cta-services h2 {
        font-size: 1.8rem;
    }

    .thankyou-content {
        padding: 2rem;
    }

    .thankyou-content h1 {
        font-size: 2rem;
    }

    .thank-message {
        font-size: 1.1rem;
    }

    .quick-actions {
        flex-direction: column;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-hero h1 {
        font-size: 1.8rem;
    }

    .service-detailed {
        padding: 1rem;
    }

    .service-detail-content h2 {
        font-size: 1.4rem;
    }

    .feature-item {
        padding: 1rem;
    }

    .thankyou-container {
        padding: 1.5rem;
    }

    .thankyou-content {
        padding: 1.5rem;
    }

    .success-icon svg {
        width: 100px;
        height: 100px;
    }

    .thankyou-content h1 {
        font-size: 1.6rem;
    }

    table {
        font-size: 0.75rem;
    }

    th, td {
        padding: 0.75rem;
    }
}.policySection {
	  padding  :      80px 2rem;
  background: var(--light-bg);
  min-height: calc(100vh - 200px);



}

.policyContainer {


   max-width: 900px;
 margin: 0 auto;
     text-align    :    left;
    background: white;
  padding :      3rem;
   border-radius :      12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}



.policyContainer h1 {
   font-size  :       2.8rem;
  color: var(--dark-text);
   margin-bottom: 2rem;
 font-weight: 700;
  border-bottom: 3px solid var(--primary-color);
		padding-bottom     :        1rem;
}

.policyContainer h2 {
	  font-size: 1.8rem;
  color: var(--primary-color);
   margin-top: 2rem;
        margin-bottom: 1rem;
  font-weight: 600;


}

.policyContainer p		{
  line-height: 1.8;
  margin-bottom   :    1.3rem;
   font-size: 1rem;
	text-align: justify;
    color: #6b7280;
}



.policyContainer strong {

  color: var(--dark-text);
    font-weight: 600;

}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1.5rem;
        min-height: auto;
    }

    .policyContainer {
        padding: 2rem;
        border-radius: 8px;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 1.5rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
    }

    .policyContainer {
        padding: 1.5rem;
        border-radius: 6px;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.2rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}