* {
   margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --accent-color: #3498db;
    --secondary-accent: #e74c3c;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
}

html {
   scroll-behavior   :    smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
}

.container-main {
          max-width  :    1200px;
   margin: 0 auto;
    padding: 0 20px;
}

.navbar {
  background-color: var(--primary-color);
    padding: 1rem 0;
   position: sticky;
  top: 0;
                    z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-container
{
   max-width: 1200px;
  margin: 0 auto;
   padding: 0 20px;
   display: flex;
   justify-content: space-between;
    align-items: center;
}

.logo-section {
                    flex: 1;
}

.logo {
    height: 45px;
               width: auto;
   display: block;}

.burger-menu {
   display: none;
   background: none;
      border: none;
        cursor: pointer;
    padding: 8px;
    flex-direction: column;
   gap  : 5px;
}

.burger-line {


  width: 25px;
       height  : 3px;
  background-color: var(--bg-white);
   transition: all 0.3s ease;
		 border-radius: 2px;}

.nav-menu {


   display: flex;
   list-style: none;
    gap: 2rem;
    margin: 0;


}

.nav-link {

	  color: var(--bg-white);
    text-decoration     :   none;
  font-weight: 500;
    transition    :color 0.3s ease, border-bottom 0.3s ease;
               border-bottom: 2px solid transparent;
       padding-bottom  :        5px;
}

.nav-link:hover {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--primary-color);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-menu li {
        padding: 0.8rem 1.5rem;
    }

    .nav-menu li a {
        display: block;
    }

    .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 {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 3rem;
          align-items    :        center;
  padding: 6rem 20px;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: var(--bg-white);
}

.hero-content h1 {

  font-size: 3.5rem;
   line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight   :        700;
  animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
   font-size: 1.2rem;
    margin-bottom: 2rem;
  line-height :1.8;
  color: rgba(255, 255, 255, 0.9);
  animation: fadeInUp 0.8s ease 0.2s both;
}

.cta-button {
      display: inline-block;
  background-color: var(--accent-color);
  color: var(--bg-white);
	 padding: 1rem 2.5rem;
	text-decoration: none;
   border-radius: 8px;
  font-weight     :  600;
   font-size: 1.1rem;
    transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
  animation: fadeInUp 0.8s ease 0.4s both;}

.cta-button:hover {
   background-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
     }

.hero-image
	{
   animation: fadeIn 1s ease;
}

.hero-image img  
  {
  width :  100%;
   height: auto;
   border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	}@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 3rem 20px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}.about-program {


  padding: 5rem 20px;
  background-color: var(--bg-light);

	}

.about-program h2 {
  font-size: 2.5rem;

	        text-align: center;

	   margin-bottom: 1.5rem;

	  color: var(--primary-color); 
	
}

.section-intro {
  text-align: center;
   max-width: 800px;
   margin: 0 auto 3rem;
    font-size: 1.1rem;
  color: var(--text-light);
	line-height: 1.8;
}

.program-features {
   display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2.5rem;
     margin-top: 3rem;
}

.feature-card{
  background-color: var(--bg-white);
   border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.feature-image {

	  width    :        100%;
  height: 200px;
	object-fit: cover;}

.feature-card h3 {
  font-size: 1.5rem;
         padding: 1.5rem 1.5rem 0.5rem;
  color: var(--primary-color);
}

.feature-card p


{
  padding: 0.5rem 1.5rem 1.5rem;
  color: var(--text-light);
   line-height: 1.7;


}

.services-preview{
   padding: 5rem 20px;
  background-color: var(--bg-white); 
	
}

.services-preview h2  {
  font-size: 2.5rem;
    text-align: center;
      margin-bottom: 3rem;
  color: var(--primary-color);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap    :     2rem;
}

.service-item {
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
       padding: 2rem;
   border-radius: 10px;
  border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
}

.service-item:hover {
  background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
  transform: translateX(8px);
  box-shadow: 0 6px 15px rgba(52, 152, 219, 0.15);
}

.service-item h3 
 {
       font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.service-item p {
  color: var(--text-light);
	line-height: 1.7; 
	
}  

.venture-section {
  padding: 5rem 20px;
  background-color: var(--bg-light);


}

.venture-section h2 {
    font-size: 2.5rem;
                    margin-bottom: 3rem;
  color: var(--primary-color);
}

.venture-content {
    display   :  grid;
  grid-template-columns: 1fr 1fr;
    gap: 3rem;
   align-items: center;
}

.venture-text p {
  font-size: 1.1rem;
					line-height: 1.8;
  color: var(--text-light);
    margin-bottom :1.5rem;
}

.venture-benefits {
  list-style: none;
   margin-top: 1.5rem;
}

.venture-benefits li {
   padding: 0.8rem 0;
 padding-left  :      2rem;
    position: relative;
  color: var(--text-dark);
	line-height  :       1.6;
	
}

.venture-benefits li:before{
  content: "✓";
  position: absolute;
	left: 0;
  color: var(--success-color);
    font-weight: bold;
  font-size: 1.2rem;
}

.venture-image img {
	width: 100%;
   height: auto;
  border-radius     : 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}@media (max-width: 768px) {
    .venture-content {
        grid-template-columns: 1fr;
    }
}.cta-section {
  background: linear-gradient(135deg, var(--accent-color) 0%, #2980b9 100%);
  color: var(--bg-white);
  padding   :      4rem 20px;
   text-align: center;
}

.cta-section h2 {

	   font-size   :      2.2rem;
    margin-bottom   :     1rem;
	


}

.cta-section p {
   font-size  :      1.1rem;
    margin-bottom: 2rem;
   max-width: 600px;
    margin-left: auto;
    margin-right: auto;
   line-height: 1.7;
}

.cta-button-secondary {
  display: inline-block;
  background-color: var(--secondary-accent);
  color: var(--bg-white);
        padding: 1rem 2.5rem;
   text-decoration: none;
    border-radius: 8px;
  font-weight :   600;
  font-size: 1.1rem;
   transition: all 0.3s ease;
  border: 2px solid var(--secondary-accent);
}

.cta-button-secondary:hover


{

    background-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
	}

.contact-section {
   padding: 5rem 20px;
  background-color: var(--bg-white);
}  

.contact-section h2 {
   font-size: 2.5rem;
    text-align     :  center;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.contact-intro {
    text-align: center;
   max-width: 600px;
  margin :   0 auto 3rem;
  color: var(--text-light);
   font-size     :   1.1rem;
      line-height: 1.7;
}

.contact-form	{
   max-width: 700px;
    margin: 0 auto;
  background-color: var(--bg-light);
                    padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);


}

.form-group {
   margin-bottom :     1.5rem;
}

.form-group label {
  display :  block;
  margin-bottom: 0.8rem;
	font-weight: 600;
  color: var(--primary-color);}

.form-group input,
.form-group select,
.form-group textarea {
         width: 100%;
	padding:      0.75rem;
  border: 2px 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(--accent-color);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
     }

.form-group textarea {
	   resize:   vertical; 



}

.submit-button {
   width: 100%;
  padding: 1rem;
  background-color: var(--accent-color);
  color: var(--bg-white);
  border: 2px solid var(--accent-color);
   border-radius: 6px;
  font-weight :     600;
   font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color : transparent;
  color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(52, 152, 219, 0.3);
}



.footer {
  background-color: var(--primary-color);
  color: var(--bg-white);
   padding: 3rem 20px 1rem;
}

.footer-content {
    max-width: 1200px; 
    margin: 0 auto; 
   display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 2rem; 
  margin-bottom: 2rem;
}  

.footer-section h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.footer-logo-img{
	 height: 50px;
   width: auto;
  display: block;
   margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-desc {
  color: rgba(255, 255, 255, 0.8);
   line-height: 1.7;
   font-size: 0.95rem;
}

.footer-links {
   list-style     :        none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover


{
  color: var(--accent-color);
}

.contact-info {
  color: rgba(255, 255, 255, 0.8); 

}

.address,
.phone {
  margin-bottom: 0.8rem;
  line-height: 1.6;
}


.footer-bottom {
   text-align: center;
   padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
   font-size: 0.9rem;
}@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}a, button, input, select, textarea {
  transition    :        all 0.3s ease;
}

img {
	transition: transform 0.3s ease;
}

.services-hero {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: var(--bg-white);
  padding: 5rem 20px;
   text-align: center;
}

.services-hero-content h1 {
  font-size: 3rem;
   margin-bottom: 1rem;
    font-weight: 700;
}

.services-hero-content p {
   font-size: 1.2rem; 
	   line-height: 1.8; 
	  color: rgba(255, 255, 255, 0.9); 
		 max-width: 600px; 
	          margin: 0 auto;
}

.breadcrumb {
  background-color: var(--bg-light);
   padding :       1rem 20px;
  border-bottom: 1px solid var(--border-color);
}

.breadcrumb {
               font-size: 0.9rem;
  color: var(--text-light);
}

.breadcrumb a {


  color: var(--accent-color); 
    text-decoration: none; 
  transition: color 0.3s ease;

}

.breadcrumb a:hover {
  color: var(--primary-color);


}

.services-detailed {
   padding: 5rem 20px;
  background-color: var(--bg-white);
}  

.services-list {
   display: grid;
  gap: 4rem;


}

.service-detailed-card {
	 display: grid;
    grid-template-columns   :   1fr 1fr;
       gap: 3rem;
	align-items   : center;
  padding: 3rem;
  background-color: var(--bg-light);
  border-radius: 12px;
    transition: all 0.3s ease;
}

.service-detailed-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.service-detailed-card:nth-child(even) {
  grid-template-columns: 1fr 1fr;
}

.service-detailed-card:nth-child(even) .service-card-image
	{
     order: 2;
}

.service-detailed-card:nth-child(even) .service-card-content    {


    order: 1;


}

.service-card-image {

	   overflow: hidden;
   border-radius: 10px;
  -moz-border-radius: 10px;
	}

.service-card-image img {
    width: 100%;
  height: 100%;
  object-fit: cover;
    transition: transform 0.3s ease;
}

.service-detailed-card:hover .service-card-image img
	{
	  transform: scale(1.05);
     }

.service-card-content h2 {
    font-size   :     2rem; 
    margin-bottom: 1rem; 
  color: var(--primary-color);
}

.service-intro {


  font-size: 1.1rem;
    line-height: 1.8;
  color: var(--text-light);
   margin-bottom   : 1.5rem;
     }

.service-card-content h3 {
   font-size: 1.3rem;
  margin-top: 1.5rem;
   margin-bottom   :     1rem;
  color: var(--primary-color);
}

.service-features {
    list-style     : none;
     padding-left: 0;
   	margin-bottom: 1.5rem;
}

.service-features li     {

  padding: 0.6rem 0;
   padding-left: 1.8rem;
	position     :        relative;
  color: var(--text-dark);
   line-height: 1.6;
	}

.service-features li:before   {
  content: "•";
  position: absolute;
        left: 0;
  color: var(--accent-color);
      font-weight: bold;
	font-size  :   1.3rem;


}

.service-duration {
        font-style: italic;
  color: var(--accent-color);
    font-weight :  600;
   margin-top: 1.5rem;
}@media (max-width: 768px) {
    .service-detailed-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }

    .service-detailed-card:nth-child(even) .service-card-image {
        order: 1;
    }

    .service-detailed-card:nth-child(even) .service-card-content {
        order: 2;
    }

    .service-card-content h2 {
        font-size: 1.5rem;
    }
}.services-comparison {
	   padding: 5rem 20px;
  background-color: var(--bg-light);


}

.services-comparison h2 {
    font-size: 2.5rem;
  text-align: center;
    margin-bottom: 3rem;
  color: var(--primary-color);
	


}

.comparison-table-wrapper
{
   overflow-x: auto;
   border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.comparison-table {
	 width: 100%;

	    border-collapse: collapse;

	  background-color: var(--bg-white);
}

.comparison-table thead {
  background-color: var(--primary-color);
  color: var(--bg-white);
}  

.comparison-table th {
	padding: 1.5rem;
      text-align: left;
                  font-weight: 600;
     border-bottom: 3px solid var(--accent-color); 
	
}

.comparison-table td {
   padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table tbody tr:hover {
  background-color: rgba(52, 152, 219, 0.05);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.services-packages {
  padding: 5rem 20px;
  background-color: var(--bg-white);
}

.services-packages h2

{
    font-size    :  2.5rem;
      text-align: center;
     margin-bottom: 3rem;
     color: var(--primary-color);


}

.packages-grid   {
       display:grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem; 
	
}

.package-card {
  background-color: var(--bg-light);
	  border: 2px solid var(--border-color);
	    border-radius    :     12px;
	   padding    :        2rem;
	     text-align     :       center;
	    transition: all 0.3s ease;
	          position: relative;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
}

.package-card.featured {
  border-color: var(--accent-color);
  background: linear-gradient(135deg, var(--bg-light) 0%, rgba(52, 152, 219, 0.05) 100%);
  transform: scale(1.05);
}

.package-card.featured:hover {

	  transform: translateY(-12px) scale(1.05);


}

.package-badge {
   position: absolute;
  top: -15px;
	 right: 20px;
  background-color: var(--accent-color);
  color: var(--bg-white);
  padding: 0.5rem 1rem;
         border-radius: 20px;
  font-size:     0.85rem;
	font-weight    :      600;
}

.package-card h3 {
	   font-size   :1.5rem;
        margin-bottom: 1rem;
  color: var(--primary-color);


}

.package-price {
   font-size: 2rem;
  color: var(--accent-color);
  font-weight: 700;
   margin-bottom: 1.5rem;
}

.package-features {
    list-style: none;
    text-align: left;
    margin-bottom  :     2rem;
}

.package-features li {
    padding: 0.8rem 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-light);
  line-height: 1.6;
}

.package-features li:last-child {
  border-bottom :       none;
	
}@media (max-width: 768px) {
    .package-card.featured {
        transform: scale(1);
    }

    .package-card.featured:hover {
        transform: translateY(-10px) scale(1);
    }
}.faq-services {
    padding: 5rem 20px;
  background-color: var(--bg-light);
}

.faq-services h2 {
  font-size: 2.5rem;
  text-align: center;
   margin-bottom: 3rem;
  color: var(--primary-color);

}

.faq-grid {
    display   :  grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                    gap: 2rem;
}

.faq-item {
  background-color: var(--bg-white);
	 padding: 2rem;
        border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.faq-item h3 {
	font-size    :   1.2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.faq-item p {
  color: var(--text-light); 
	    line-height: 1.7;
}

/* Legacy code */

/* Component styles */
/* Performance critical */
.cta-services {
  background: linear-gradient(135deg, var(--accent-color) 0%, #2980b9 100%);
  color: var(--bg-white);
    padding: 4rem 20px;
  text-align: center;
} 

.cta-services h2
{
   margin-bottom: 1rem;
    font-size: 2.2rem;
}

.cta-services p {
  margin-right: auto;
  font-size: 1.1rem;
    line-height: 1.7;
  max-width: 700px;
   margin-bottom: 2rem;
          margin-left: auto;
}

.thank-you-container {
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
     padding:       5rem 20px;
  text-align: center;
	min-height: 70vh;
  display:  flex;
   align-items: center;
   justify-content: center;
}

.thank-you-content {
  background-color: var(--bg-white);
  border-radius: 16px;
  padding: 3rem;
                    max-width     :700px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.thank-you-icon {
    margin-bottom: 2rem;
  animation   :     scaleIn 0.6s ease; 
	
}

.thank-you-icon svg {


   animation: pulse 2s infinite;
	}
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}.thank-you-content h1 {
  font-size :        2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.thank-you-main {
         font-size: 1.1rem;
  color: var(--text-light);
   line-height: 1.8;
    margin-bottom: 1.5rem;
}

.thank-you-details {
  background-color: rgba(52, 152, 219, 0.08);
  padding: 1.5rem;
  border-radius: 8px;
    margin-bottom: 2rem;
  border-left: 4px solid var(--accent-color);
} 

.thank-you-details p {
  color: var(--text-dark);

	    line-height: 1.7;
}

.next-steps {
      text-align  :     left;
     margin: 2rem 0; 
	
}

.next-steps h2 {
    font-size: 1.8rem;
  color: var(--primary-color);
          margin-bottom  :       1.5rem;
    text-align: center;
}

.steps-list		{
  list-style: none;
}

.steps-list li {
    display   :        flex;
  gap: 1.5rem;
	 margin-bottom: 1.5rem;
  align-items: flex-start;
}

.step-number {
 display     :   flex;
         align-items: center;
    justify-content: center;
  width: 40px;
   height: 40px;
  background-color: var(--accent-color);
  color: var(--bg-white);
     border-radius  :      50%;
  font-weight   :     700;
    font-size   :   1.1rem;
   flex-shrink: 0;
	}

.step-content h3	{
    font-size: 1.1rem;
  color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.step-content p
	{
     color: var(--text-light);
    line-height: 1.6;
	}

.contact-support {
  background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
	margin: 2rem 0;


}

.contact-support h2     {
   font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 0.8rem;
}

.contact-support p {
  color: var(--text-light);
   margin-bottom: 0.5rem;
     }

.phone-urgent {
   font-size: 1.5rem; 
  color: var(--accent-color); 
  font-weight: 700; 
  margin-top     :   0.8rem;
}

.action-buttons {
   display: flex;
  gap: 1rem;
   justify-content: center;
   margin: 2rem 0;
    flex-wrap    :     wrap;
}

.btn-primary,
.btn-secondary {

	   padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight   :      600;
   font-size: 1rem;
   transition: all 0.3s ease;
    border:        2px solid transparent;
	}

.btn-primary {
  background-color: var(--accent-color);
  color: var(--bg-white);

}

.btn-primary:hover {
 background-color: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(52, 152, 219, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.btn-secondary:hover {


  background-color: var(--accent-color);
  color: var(--bg-white);
  transform: translateY(-2px);}

.social-proof {
	    margin-top: 2rem;
   padding-top: 2rem;
  border-top: 1px solid var(--border-color);

}

.proof-text {
     color: var(--text-light);
	font-style: italic;
  line-height  :       1.6;
	

}

.testimonials-preview {
  padding: 5rem 20px;
  background-color: var(--bg-light);
}

.testimonials-preview h2 {
    font-size: 2.5rem;
       text-align: center;
    margin-bottom: 3rem;
  color: var(--primary-color);
}

.testimonials-grid {
  display  : grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
  background-color: var(--bg-white);
   padding: 2rem;
   border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;


}

.testimonial-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}



.testimonial-header
	{

         display: flex;
    gap :1rem;
  margin-bottom: 1.5rem;
  align-items: center;
     }

.testimonial-info h3 {
  font-size: 1.1rem;
  color: var(--primary-color);
   margin-bottom: 0.3rem;
	
}

.testimonial-info p {
     color: var(--text-light);

	  font-size: 0.9rem;
	}

.testimonial-text {
  color: var(--text-dark);
   line-height: 1.8;
    font-style: italic;
}

.faq-thank-you {
		padding: 5rem 20px;
  background-color: var(--bg-white);
}

.faq-thank-you h2
	{
   font-size: 2.5rem;
  text-align: center;
    margin-bottom: 3rem;
  color: var(--primary-color);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  border: 2px solid var(--border-color);
  margin-bottom :      1rem;
   border-radius: 8px;
   overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
  border-color: var(--accent-color);
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.1);
}

.accordion-title {
  width: 100%;
   padding: 1.5rem;
  background-color: var(--bg-light);
  color: var(--primary-color);
  border   :       none;
    cursor: pointer;
   font-size: 1.1rem;
  font-weight    :  600;
   transition     :all 0.3s ease;
    text-align  :  left;
    display     :        flex;
  justify-content: space-between;
  align-items: center;
    margin: 0;
}  

.accordion-title:hover     {

	  background-color: rgba(52, 152, 219, 0.08);
     }

.accordion-title:after     {
  content: "+";
  font-size :        1.5rem;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-title	{
  background-color: var(--accent-color);
  color: var(--bg-white);
}

.accordion-item.active .accordion-title:after {
	  transform: rotate(45deg);

}



.accordion-content {
	 padding: 1.5rem; 
	  background-color: var(--bg-white); 
	    display: none; 
		animation:slideDown 0.3s ease;
}

.accordion-item.active .accordion-content {
    display: block;
}

.accordion-content p
	{
  color: var(--text-light);
   line-height :    1.8;
}@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .thank-you-content {
        padding: 1.5rem;
    }

    .thank-you-content h1 {
        font-size: 1.8rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem 0.8rem;
        font-size: 0.9rem;
    }
}.policy-section {
    padding :    4rem 2rem;
  background-color: var(--bg-light);
    min-height: 80vh;
}

.policy-container {
  max-width: 900px;
      margin: 0 auto;
   text-align: left;
  background-color: var(--bg-white);
    padding :        3rem;
    border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.policy-container h1  {
   font-size: 2.8rem;
  color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
	text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 3px solid var(--accent-color);
}  

.policy-container h2 {
    font-size: 1.8rem;
  color: var(--primary-color);
    margin-top: 2.5rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
    line-height    :     1.4;
	
     }

.policy-container p {
  color: var(--text-light);
   margin-bottom :        1.5rem;
   line-height: 1.9;
  font-size: 1.05rem;
   text-align   :justify;
}

.policy-container p:first-of-type {
    margin-top: 1.5rem;
}

.policy-container h2:first-of-type {
    margin-top  :    0;
}

.policy-container h2 {
    transition: all 0.3s ease;
}

.policy-container h2:hover {
  color: var(--accent-color);
  transform: translateX(8px);
}
@media (max-width: 1024px) {
    .policy-container {
        padding: 2.5rem;
    }

    .policy-container h1 {
        font-size: 2.3rem;
    }

    .policy-container h2 {
        font-size: 1.6rem;
    }

    .policy-container p {
        font-size: 1rem;
        line-height: 1.8;
    }
}

@media (max-width: 768px) {
    .policy-section {
        padding: 2rem 1rem;
    }

    .policy-container {
        padding: 1.5rem;
        border-radius: 8px;
    }

    .policy-container h1 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }

    .policy-container h2 {
        font-size: 1.3rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .policy-container p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.2rem;
        text-align: left;
    }

    .policy-container h2:hover {
        transform: translateX(4px);
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 1.5rem 0.8rem;
    }

    .policy-container {
        padding: 1rem;
    }

    .policy-container h1 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }

    .policy-container h2 {
        font-size: 1.1rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policy-container p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
}.policy-container p strong


{
  color: var(--primary-color);

	    font-weight: 600;
}

.policy-container p em
{

  color: var(--accent-color);
   font-style: italic;
     }

.policy-container > h2:nth-of-type(1)   {
	margin-top: 1.5rem;
}

.policy-container > h2:not(:first-of-type) {
	 margin-top   :2.5rem;
	}