* {
  margin  :  0;
  padding: 0;
  box-sizing: border-box;

}



:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --light-bg: #ecf0f1;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --border-color: #bdc3c7;
    --success-color: #27ae60;
}

html {

   scroll-behavior: smooth;}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

	  color: var(--text-dark);

	    line-height: 1.6;

	  background-color  :     #ffffff;
}

.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 2rem;
   display: flex;
	justify-content: space-between;
  align-items: center; 

}

.nav-logo img {
    height: 50px;
  filter: brightness(0) invert(1);
}

.nav-links {
    display: flex;
     list-style: none;
	gap: 3rem;
}

.nav-link {
    color: #ffffff;
  text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
        padding: 0.5rem 1rem;
    border-radius: 4px;
	
}

.nav-link:hover {
  color: var(--secondary-color);
  background-color: rgba(52, 152, 219, 0.1);
}

.burger-menu {
   display     :        none;
  flex-direction: column;
	background: none;
  border: none;
    cursor: pointer;
     gap: 5px;
}

.burger-menu span {
          width: 25px;
    height: 3px;
    background-color    :      #ffffff;
   border-radius: 2px;
                    transition: all 0.3s ease;}
@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--primary-color);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-links.active {
        max-height: 300px;
    }

    .nav-link {
        padding: 1rem 2rem;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(10px, 10px);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}.hero-section {
             display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
     gap  :   4rem;
     max-width :   1200px;
          margin: 0 auto;
       padding: 6rem 2rem;
}

.hero-content h1 {
  font-size: 3.5rem;
    margin-bottom: 1.5rem;
  color: var(--primary-color);
    line-height: 1.2;
}

.hero-content p 
 {
       font-size: 1.3rem;
  color: var(--text-light);
    margin-bottom: 2rem; 

}

.cta-button {
                    display: inline-block;
  background-color: var(--secondary-color);
   color: #ffffff;
		padding: 1rem 2.5rem;
      border-radius: 6px;
   text-decoration: none;
  font-weight: 600;
   transition     :       all 0.3s ease;
  border: 2px solid var(--secondary-color);
}

.cta-button:hover

{
  background-color: transparent;
  color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);

	}

.hero-image img {
	  width:      100%;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
     }@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }
}.intro-section {
	  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 4rem 2rem;




}

.intro-container {
   max-width     :       800px;
         margin   :      0 auto;
    text-align:      center;
}

.intro-container h2 {
	    font-size: 2.2rem;
   margin-bottom: 1.5rem;
  color: var(--primary-color);}

.intro-container p {
  font-size: 1.1rem;

	  color: var(--text-dark);

	   line-height: 1.8;
}

.services-overview {
  max-width   :       1200px;
	margin: 0 auto;
    padding: 5rem 2rem; 

}

.services-overview h2 {
	text-align: center;
   font-size: 2.5rem;
   margin-bottom:  3rem;
  color: var(--primary-color);
}

.services-grid {
       display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	 gap: 2rem;
	

}

.service-card {
                    background: #ffffff;
  border: 1px solid var(--border-color);
      border-radius :      10px;
   padding: 2rem;
    text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);


}

.service-card:hover		{
     transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--secondary-color); 

     }

.service-icon {
   margin-bottom: 1.5rem;
}

.service-icon img {
    width: 50px;
    height: 50px;
  stroke: var(--secondary-color);
} 

.service-card h3 {
	font-size: 1.5rem;
                    margin-bottom: 1rem;
  color: var(--primary-color);
} 

.service-card p {
  color: var(--text-light);
	line-height: 1.7;
}

.features-section  
  {
    display: grid;
    grid-template-columns: 1fr 1fr;
  align-items: center;
  gap     :     4rem;
      max-width: 1200px;
		margin: 0 auto;
    padding: 5rem 2rem;
  background-color: var(--light-bg);
       border-radius    :        12px;
   margin: 4rem auto;
}

.features-content h2 {
     font-size: 2.5rem;
    margin-bottom: 2.5rem;
  color: var(--primary-color);
	


}

.feature-item {
  display: flex;
   gap: 1.5rem;
   margin-bottom: 2rem;
}


.feature-number {
  background-color: var(--secondary-color);
   color: #ffffff;
    width: 50px;
   height: 50px;
	border-radius   :    50%;
    display: flex;
    align-items: center;
   justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-item h4 {
	font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);}

.feature-item p	{
  color: var(--text-light);
	line-height :     1.6;
}

.features-image img {
        width: 100%;
	border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}@media (max-width: 768px) {
    .features-section {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem;
    }
}.packages-section {

  max-width   :  1200px;
   margin: 0 auto;
  padding: 5rem 2rem;} 

.packages-section h2 {


  text-align   :     center;
  font-size: 2.5rem;
	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: #ffffff;
  border: 2px solid var(--border-color);
   border-radius     : 10px;
    padding: 2.5rem;
  text-align: center;
         transition: all 0.3s ease;
    position: relative;
}

.package-card.professional {
  border-color: var(--secondary-color);
  box-shadow: 0 10px 30px rgba(52, 152, 219, 0.2);
  transform: scale(1.05);
}

.package-card h3 {
    font-size: 1.8rem;
      margin-bottom: 1rem;
     color: var(--primary-color);
}

.price {
    font-size: 2.5rem;
  font-weight: bold;
  color: var(--secondary-color);
	margin: 1rem 0;
}

.price-period {
  color: var(--text-light);
    margin-bottom: 2rem;
}

.package-features{
  list-style: none;
	margin: 2rem 0;
    text-align: left;
	
}

.package-features li {
    padding: 0.8rem 0;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border-color); 
	
}

.package-features li:last-child {
   border-bottom: none; 


}

.package-button {
  display: inline-block;
  background-color: var(--secondary-color);
				 color   :      #ffffff;
    padding    :        0.8rem 2rem;
    border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
        transition: all 0.3s ease;
   margin-top     :     1.5rem;
  border: 2px solid var(--secondary-color);


} 

.package-button:hover {
  background-color: transparent;
  color: var(--secondary-color);
}@media (max-width: 768px) {
    .package-card.professional {
        transform: scale(1);
    }
}.cta-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #2980b9 100%);

	  color: #ffffff;

	  text-align: center;

	   padding: 4rem 2rem;

	   margin: 4rem 0;
	
}

.cta-section h2 {
	font-size: 2.5rem;
   margin-bottom: 1rem;
}

.cta-section p

{
  font-size: 1.2rem;
    margin-bottom: 2rem;
   opacity: 0.95;
}

.cta-main-button
{
    display: inline-block;
  background-color: var(--accent-color);
  color: #ffffff;
    padding     :      1.2rem 3rem;
  border-radius: 6px;
   text-decoration: none;
   font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
}

.cta-main-button:hover {
    background-color: transparent;
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(231, 76, 60, 0.5);
}

.contact-section    {


  background-color: var(--light-bg);
    padding     :      5rem 2rem; 

	}

.contact-container {


  max-width: 600px;
   margin: 0 auto;
}

.contact-container h2 {
   font-size: 2.2rem;
   text-align: center;
    margin-bottom: 1rem;
  color: var(--primary-color);
}

.contact-intro {
   text-align: center;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}

.contact-form {
    background: #ffffff;
         padding: 2.5rem;
  border-radius   :        10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom     : 1.5rem;

}

.form-group label {
	 display: block;
  margin-bottom: 0.5rem;
   font-weight: 600;
  color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea 
 {

  width: 100%;
  padding :    0.8rem;
  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(--secondary-color);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.submit-button {
   	width: 100%;
   padding: 1rem;
  background-color: var(--secondary-color);
   color: #ffffff;
	 border: none;
    border-radius: 6px;
    font-weight: 700;
      font-size: 1.1rem;
    cursor: pointer;
   transition :  all 0.3s ease;

}

.submit-button:hover {
                       background-color: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);

}

.footer {
  background-color: var(--primary-color);
   color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 3rem;
  margin-bottom: 2rem;
}

.footer-logo-img {
   height: 60px;
  filter: brightness(0) invert(1);
	 margin-bottom: 1rem;
}

.footer-info h4,
.footer-links h4 {
  margin-bottom: 1rem;
         font-size: 1.2rem;
}

.footer-info p		{
  margin-bottom: 1rem;
	  line-height :       1.8;
	    opacity: 0.9;
}

.footer-links ul {
  list-style  :  none;
     }

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color:    #ffffff;
   text-decoration: none;
      transition: color 0.3s ease;
    opacity: 0.9;
}  

.footer-links a:hover {
  color: var(--secondary-color);
	opacity: 1;
}

.footer-bottom {
    text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
   padding-top: 2rem;
  opacity: 0.8;
}

.services-hero {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
   color    :       #ffffff;
   padding: 4rem 2rem;
  text-align: center;
}

.services-hero-content h1    {


    font-size: 3rem; 
		margin-bottom: 1rem; 
	  font-weight    :        700;
     }



.services-hero-content p	{
   font-size: 1.3rem;
     opacity: 0.95;
}

.breadcrumb {
	background-color: #ecf0f1;
	padding    :    1.5rem 2rem;
	border-bottom: 1px solid #bdc3c7;
}

.breadcrumb-container {
  max-width: 1200px; 
	    margin: 0 auto; 
		font-size: 0.95rem;
}

.breadcrumb-container a {
  color: #3498db;
  text-decoration: none;
  transition   :  color 0.3s ease;
}

.breadcrumb-container a:hover     {
   color: #2980b9;
}

.breadcrumb-container span {
    color: #7f8c8d;
  margin: 0 0.5rem;
} 

.services-container     {
   max-width: 1200px;
  margin: 0 auto;
   padding: 0 2rem;
}

.service-block {

	    display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
   align-items    :   center;
   padding: 4rem 0;
  border-bottom: 1px solid #ecf0f1;
}


.service-block:last-child {
   border-bottom: none;
}

.service-block.reverse {
	direction: rtl;
}

.service-block.reverse .service-block-content,
.service-block.reverse .service-block-image    {
  direction: ltr;
}

.service-block-content h2    {
   font-size: 2.2rem;
  color: #2c3e50;
   margin-bottom: 1rem;


}

.service-block-content > p:first-of-type {
  color: #7f8c8d;
  margin-bottom: 2rem;
	font-size: 1.1rem;
   line-height: 1.8;
}

.service-block-content h3 {
   font-size: 1.3rem;
   color:      #2c3e50;
   margin-top   :2rem;
    margin-bottom  :  1rem;

}


.service-list {
  list-style: none;
  padding:  0;
          margin-bottom: 1.5rem;
}

.service-list li {
   padding: 0.7rem 0;
 padding-left: 1.5rem;
          color: #555;
  position  :   relative;
    line-height:    1.7;
}

.service-list li:before {
  content: "✓";
    position: absolute;
    left: 0;
  color: #27ae60;
	 font-weight: bold;
 font-size: 1.2rem;
}  

.service-block-content p {
  color: #7f8c8d;
   line-height: 1.8;
  margin-bottom     :1rem;

}

.service-cta {


  display: inline-block;
  background-color: #3498db;
    -webkit-border-radius: 6px;
  color: #ffffff;
    padding: 0.9rem 2rem;
                    border-radius: 6px;
    -moz-border-radius: 6px;
   text-decoration: none;
  font-weight: 600;
  margin-top: 1.5rem;
               transition: all 0.3s ease;
   border: 2px solid #3498db;

}

.service-cta:hover {
  background-color: transparent;
    color    :   #3498db;
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

.service-block-image img {
   width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}@media (max-width: 768px) {
    .service-block {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0;
    }

    .service-block.reverse {
        direction: ltr;
    }

    .service-block-content h2 {
        font-size: 1.8rem;
    }

    .services-hero-content h1 {
        font-size: 2rem;
    }
}.process-section		{
  background-color: #f8f9fa;
   padding: 5rem 2rem;
   margin-top: 3rem;
}

.process-section h2 {
    text-align: center;

    font-size: 2.5rem;

   margin-bottom: 3rem;

    color :      #2c3e50;
}

.process-steps {

	    max-width: 1200px;
   margin: 0 auto;
	display :   grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;


}

.step {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
               text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.step:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.step-number {

	   margin: 0 auto 1rem;
   align-items    :   center;
         font-size: 1.5rem;
   width :  50px;
   color: #ffffff;
	 display: flex;
   border-radius: 50%;
   height: 50px;
        justify-content: center;
  background-color: #3498db;
    font-weight: bold;


}

.step h3 {
    font-size   :       1.2rem;
    color :#2c3e50;
   margin-bottom: 0.8rem;
}

.step p {
  color: #7f8c8d;
   font-size: 0.95rem;
  line-height    :      1.6;
}

.testimonials-section {
    max-width: 1200px;
	 margin   :    0 auto;
	padding: 5rem 2rem;
}

.testimonials-section h2  
  {
   font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
    color    :    #2c3e50;
}

.testimonials-grid {
    display     :        grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.testimonial {
  background: #ffffff;
   padding: 2rem;
    border-radius: 10px;
  border-left: 4px solid #3498db;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 1rem;
   color :#555;
   font-style  :        italic;
	 line-height: 1.8;
   margin-bottom: 1.5rem;
}  

.testimonial-text:before {
    content: """;
    font-size: 2rem;
    color: #3498db;
    opacity: 0.3;
}

.testimonial-author {
    border-top: 1px solid #ecf0f1;
    padding-top: 1rem;
}

.testimonial-author strong {
    display: block;
    color: #2c3e50;
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.faq-section {
    background-color: #ecf0f1;
    padding: 5rem 2rem;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin: 0;
}

.faq-toggle {
    font-size: 1.8rem;
    color: #3498db;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-toggle.active {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 500px;
}

.faq-answer p {
    padding: 1rem 1.5rem 0;
    color: #555;
    line-height: 1.8;
}

.faq-answer p:last-child {
    padding-bottom: 1.5rem;
}

.thankyou-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.thankyou-container {
    background: #ffffff;
    padding: 3rem;
    border-radius: 15px;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.success-icon {
    margin-bottom: 2rem;
}

.success-icon img {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 4px 12px rgba(39, 174, 96, 0.3));
    stroke: #27ae60;
}

.thankyou-container h1 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.success-message {
    font-size: 1.3rem;
    color: #27ae60;
    font-weight: 600;
    margin-bottom: 2rem;
}

.thankyou-content {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.thankyou-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.thankyou-content p:last-child {
    margin-bottom: 0;
}

.next-steps {
    text-align: left;
    margin: 2rem 0;
}

.next-steps h2 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.steps-list {
    background-color: #f8f9fa;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    color: #555;
    line-height: 2;
}

.steps-list li {
    margin-bottom: 0.5rem;
}

.contact-info-box {
    background-color: #e8f4f8;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #3498db;
}

.contact-info-box h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-info-box p {
    color: #555;
    margin: 0.5rem 0;
}

.info-note {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-top: 1rem;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.button-primary,
.button-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.button-primary {
    background-color: #3498db;
    color: #ffffff;
    border-color: #3498db;
}

.button-primary:hover {
    background-color: transparent;
    color: #3498db;
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

.button-secondary {
    background-color: transparent;
    color: #3498db;
    border-color: #3498db;
}

.button-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.related-section {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
}

.related-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.related-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.related-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.related-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.related-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.related-card p {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.related-card a {
    display: inline-block;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border: 2px solid #3498db;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.related-card a:hover {
    background-color: #3498db;
    color: #ffffff;
}@media (max-width: 768px) {
    .thankyou-container {
        padding: 2rem;
    }

    .thankyou-container h1 {
        font-size: 2rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .button-primary,
    .button-secondary {
        width: 100%;
    }

    .process-steps {
        gap: 1rem;
    }

    .step {
        padding: 1.5rem;
    }

    .next-steps {
        text-align: center;
    }

    .steps-list {
        text-align: left;
    }
}.policySection {
    padding: 80px 2rem;
  min-height: 70vh;
	background     :    #f8f9fa;
	
}

.policyContainer {
        max-width: 900px;
      margin: 0 auto;
  text-align: left;
    background: #ffffff;
    padding:  3rem;
   border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);


}

.policyContainer h1 {
    font-size: 2.8rem;
	color :       #2c3e50;
               margin-bottom: 2rem;
  font-weight: 700;
  border-bottom: 3px solid #3498db;
    padding-bottom: 1rem;
}

.policyContainer h2 {
  font-size: 1.6rem;
                    color: #2c3e50;
    margin-top    :      2.5rem;
    margin-bottom: 1.2rem;
   font-weight    :       600;
}

.policyContainer p   {
  color: #555;
  margin-bottom: 1.5rem;
    line-height: 1.8;
   font-size: 1.05rem;
}

.policyContainer p strong	{
	 color: #2c3e50;
   font-weight: 600;

}

.policyContainer h2:first-of-type {
	    margin-top: 0;}@media (max-width: 968px) {
    .policyContainer {
        padding: 2.5rem;
    }

    .policyContainer h1 {
        font-size: 2.4rem;
    }

    .policyContainer h2 {
        font-size: 1.5rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer {
        padding: 2rem;
        margin: 0 auto;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.3rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
        line-height: 1.7;
    }
}@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
    }

    .policyContainer {
        padding: 1.5rem;
        border-radius: 8px;
    }

    .policyContainer h1 {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
        padding-bottom: 0.8rem;
    }

    .policyContainer h2 {
        font-size: 1.1rem;
        margin-top: 1.8rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
    }
}