* {
  box-sizing: border-box;
  padding: 0;
    margin: 0;
}

:root {
    --primary-color: #1e40af;
    --secondary-color: #0f766e;
    --accent-color: #ea580c;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
}

html {
  scroll-behavior:  smooth;
}


body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
    line-height: 1.6;
}

.navbar-main {
     background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
    position:       sticky;
   top: 0;
  z-index: 1000;
}

.navbar-container {
   max-width    :     1200px;
  margin: 0 auto;
	padding    :0 20px;
    display: flex;
   justify-content: space-between;
   align-items: center;
   height: 80px;
}

.navbar-brand {
	flex: 0 0 auto;
}  

.brand-logo {
	display: block;
  text-decoration  :      none;
}

.logo-img{
          height     :  74px;
   width: auto;
   display: block;
}

.burger-menu {
    display: none;
 flex-direction: column;
	background: none;
  border: none;
   cursor: pointer;
  padding: 8px;
    gap: 6px;

}

.burger-menu span {
    width: 25px;
	    height  :     3px;
	  background-color: var(--text-dark);
		border-radius: 2px;
	         transition: all 0.3s ease;
}

.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);
     }

.navbar-menu {
    display   :    flex;
    align-items: center;
}

.navbar-nav {

    list-style: none;
   display: flex;
        gap: 40px;
	}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
    font-weight: 500;
    transition:   color 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.nav-link:after {
  content: '';
    position:absolute;
  bottom: 0;
  left: 0;
               width: 0;
    height: 2px;
  background-color: var(--accent-color);
   transition: width 0.3s ease;
}

.nav-link:hover:after,
.nav-link:hover {
  color: var(--accent-color);
   width: 100%;
}

.hero-section {
    max-width: 1200px;
   margin: 0 auto;
   padding: 80px 20px;
    display: grid;
   grid-template-columns    :        1fr 1fr;
   gap: 60px;
   align-items: center;
}

.hero-content {
   display  :        flex;
    flex-direction    :       column;
               gap: 30px;
}

.hero-title		{
    font-size  :   52px;
  font-weight: 800;
          line-height: 1.2;
  color: var(--text-dark);
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-light);
  line-height :    1.8;
}

.cta-button {
       display: inline-block;
   padding: 16px 40px;
  background-color: var(--accent-color);
   color: white;
   text-decoration: none;
         border-radius: 8px;
    font-weight: 600;
        transition: all 0.3s ease;
    width :      fit-content;
  border: none;
	 cursor: pointer;
         font-size     : 16px;
  box-shadow: var(--shadow-md);
}

.cta-button:hover {
	background-color   : #d94208;

  transform: translateY(-2px);

  box-shadow: var(--shadow-lg);
}

.hero-image {
      position: relative;
    border-radius: 12px;
                    overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image img  
  {
    height: auto;
   display: block;
   width: 100%;
}

.features-block {

  background-color: var(--bg-light);
    padding: 80px 20px;
	}

.section-header {
          max-width: 1200px;
   margin: 0 auto 60px;
  text-align: center;
}

.section-header h2 {
  font-size: 42px;
  font-weight     :    800;
    margin-bottom: 15px;
  color: var(--text-dark);
}

.section-header p {

	    font-size: 18px;
  color: var(--text-light);

}

.features-grid {
   max-width   :        1200px;
    margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.feature-card    {

	  background-color: var(--bg-white);
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
      text-align: center;
    transition   : all 0.3s ease;


}

.feature-card:hover


{
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
	 width     : 60px;
  height: 60px;
   margin  :     0 auto 25px;
    display: flex;
	align-items: center;
    justify-content: center;
	 background-color: #eff6ff;
    border-radius: 10px;
}

.feature-icon img {
    width: 32px;
  height: 32px;
  filter: brightness(0) saturate(100%) invert(27%) sepia(82%) saturate(1474%) hue-rotate(199deg);
}

.feature-card h3 {
	font-size: 20px; 
	   font-weight: 700; 
	  margin-bottom: 15px; 
	  color: var(--text-dark);
}

.feature-card p {
  color: var(--text-light);
         line-height: 1.7;
    font-size: 15px;
	
}

.services-preview	{
   max-width: 1200px;
    margin: 0 auto;
   padding: 80px 20px;
}

.service-item {
   display: grid;
      grid-template-columns :    1fr 1fr;
    gap: 60px;
   align-items  :    center;
} 

.service-image {
    border-radius: 12px;
	    overflow: hidden;
	  box-shadow: var(--shadow-lg);
}

.service-image img {
    display: block;
    height: auto;
	 width: 100%;
}

.service-content h2 {

	 font-size: 38px;
    font-weight: 800;
	 margin-bottom :    25px;
  color: var(--text-dark);
}

.service-content p{

	  font-size: 16px;
  color: var(--text-light);
   margin-bottom: 30px;
         line-height: 1.8;

}

.benefits-list
	{
  list-style: none;
    display: flex;
    flex-direction  :     column;
  gap :   15px;
}

.benefits-list li		{
	    display: flex;
   align-items: flex-start;
    gap: 12px;
  color: var(--text-dark);
   font-size   : 15px;



}

.benefits-list li:before {
  content: '✓';
  color: var(--success-color);
   font-weight:       800;
   font-size: 18px;
  flex-shrink   :      0;
}

.elearning-section {
     background-color: var(--bg-light);
    padding: 80px 20px;
	}

.elearning-content
{
	max-width: 1200px;
   gap: 40px;
    display: grid;
   margin     :0 auto;
  grid-template-columns: 1fr 1fr;
}

.elearning-item {
  background-color: var(--bg-white);
  border-radius     : 12px;
   overflow: hidden;
  box-shadow: var(--shadow-md);
    transition: all 0.3s ease; 
	
}

.elearning-item:hover {

	  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);}

.elearning-item img {

   width: 100%;
  height: 250px;
  object-fit: cover;
		 display: block;}

.elearning-item h3 {
   font-size: 22px;
   font-weight: 700;
     padding: 25px 25px 15px;
  color: var(--text-dark);
}

.elearning-item p {
  padding: 0 25px 25px;
  color: var(--text-light);
     font-size: 15px;
	 line-height: 1.7;
}

.workshop-section {
    max-width: 1200px;
               margin: 0 auto;
			padding :   80px 20px;
}

.workshop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
         gap: 40px;
}

.workshop-card {
	  border-radius: 12px;
    overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  background-color: var(--bg-white);}

.workshop-card:hover {
     transform: translateY(-8px);
  box-shadow: var(--shadow-lg);}

.workshop-card img {

    width: 100%;
   height: 280px;
   object-fit :     cover;
   display: block;}

.workshop-info {
         padding: 35px 25px;
}

.workshop-info h3 {


     font-size: 22px;
  font-weight   :  700;
  margin-bottom   :   15px;
  color: var(--text-dark); 

}

.workshop-info p {
  color: var(--text-light);
   font-size   : 15px;
   line-height: 1.7; 

}

.cta-section  
  {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.cta-content
{
	max-width: 800px;
    margin: 0 auto;
   display    :   flex;
  flex-direction: column;
    gap: 25px;
}

.cta-content h2 {
  font-weight: 800;
	font-size: 44px;
	 line-height: 1.3;
}

.cta-content p {
   font-size     :       18px;

  opacity   :0.95;

  line-height: 1.7;
}

.cta-button-large {

		display:    inline-block;
	 padding:   18px 50px;
  background-color: var(--accent-color);
  color   :  white;
  text-decoration    :    none;
    border-radius: 8px;
    font-weight: 600;
  transition: all 0.3s ease;
  width: fit-content;
  margin: 0 auto;
       border: none;
   cursor: pointer;
  font-size: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
	
	}

.cta-button-large:hover {
  background-color: #d94208;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.35);
}

.contact-section {

	  padding: 80px 20px;
  background-color: var(--bg-light);


	}

.contact-container
	{
   max-width: 700px;
   margin:     0 auto;
}

.contact-header	{
         text-align: center;
  margin-bottom  :    50px;
	
}

.contact-header h2   {
	  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--text-dark);

}

.contact-header p {
    font-size: 16px;
  color: var(--text-light);
}

.contact-form {

	  background-color: var(--bg-white);
    padding: 45px;
    border-radius: 12px;
  box-shadow: var(--shadow-md);
	display:       flex;
  flex-direction: column;
    gap     :25px;
}

.form-group   {
   display: flex;
    flex-direction: column;
   gap: 8px;
}

.form-group label {
   font-weight:     600;

	  color: var(--text-dark);

	   font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding :        12px 15px;
  border: 2px solid var(--border-color);
   border-radius: 6px;
	 font-family   :       inherit;
	font-size: 15px;
               transition :      all 0.3s ease;
  color: var(--text-dark);
}

.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(30, 64, 175, 0.1);
}

.form-group textarea{


        resize: vertical;
	 min-height:     120px;
}

.submit-btn {
     padding: 15px 40px;
  background-color: var(--accent-color);
	color: white;
       border: none;
   border-radius: 6px;
	font-weight: 600;
    font-size: 16px;
      cursor: pointer;
    transition: all 0.3s ease;
    margin-top :  10px;
     } 

.submit-btn:hover {
    background-color: #d94208;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
	
}

.footer-main {
  background-color: var(--text-dark);
  color: white;
    padding: 60px 20px 20px;
}

.footer-container


{
    max-width: 1200px;
  margin: 0 auto;
    display: grid;
  grid-template-columns   :   0.5fr 1.5fr;
	gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {

	  align-items: flex-start;
    display: flex;
	}

.footer-logo {
    height     :96px;
    width: auto;
  filter: brightness(0) invert(1); 

}

.footer-content {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
          gap: 40px;
}

.footer-column h4 {
   font-size: 16px;
    font-weight    : 700;
   margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
     margin-bottom: 12px;
     }



.footer-column a {
    color: #d1d5db;
	  text-decoration: none;
	   font-size     : 14px;
	   transition   : color 0.3s ease;
}


.footer-column a:hover

{
     color: var(--accent-color);
	}

.footer-column p {
   font-size: 14px;
      color: #d1d5db;
       line-height: 1.8;
}

.footer-bottom {
   border-top: 1px solid #374151;
  padding-top: 25px;
    text-align: center;
    color     :     #9ca3af;
  font-size: 14px;
}

.cookie-alert   {
   position: fixed;
     bottom: 20px;
    right: 20px;
  background-color:      white;
	 border-radius: 12px;
  box-shadow: var(--shadow-lg);
   padding    : 25px;
   max-width: 380px;
   z-index: 999;
    display: none;
}

.cookie-alert.show {
   display: block;
  animation:slideInUp 0.4s ease;
}@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}.cookie-content {
  display: flex; 
		 flex-direction: column; 
	                    gap: 15px; 
	
}

.cookie-text p {


   font-size: 14px;
  color: var(--text-light);
    line-height    :   1.6;


}


.cookie-buttons {
 display   :       flex;
        gap: 10px;
   flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 16px;
     border: none;
    border-radius:   6px;
  cursor: pointer;
         font-size: 13px;
    font-weight: 600;
    transition :all 0.3s ease;
 flex: 1;
  min-width: 90px;
}

.cookie-btn.accept

{

  background-color: var(--success-color);
	 color: white;


}

.cookie-btn.accept:hover		{
    background-color: #059669;
}

.cookie-btn.reject {
  background-color: #ef4444;
   color    :    white;
}

.cookie-btn.reject:hover {
 background-color   : #dc2626;
	
}

.cookie-btn.settings {

  background-color: var(--primary-color);
    color: white;


}

.cookie-btn.settings:hover {
		background-color: #1e3a8a;
}

.cookie-modal {
    position: fixed;
   top: 0;
   left: 0;
  width: 100%;
   height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
   z-index: 1001;
   display: none;
   align-items: center;
   justify-content: center;
}

.cookie-modal.show {
  display     :      flex;
}

.modal-content {
    background-color: white;
  border-radius: 12px;
    max-width: 500px;
    width: 90%;
  box-shadow: var(--shadow-lg);
	animation :slideDown 0.3s ease;
}@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}.modal-header {
    display: flex;
 justify-content: space-between;
  align-items: center;
               padding: 25px;
  border-bottom: 1px solid var(--border-color);


}

.modal-header h3 {

   font-size    :      20px;
   font-weight: 700;
  color: var(--text-dark);

}

.modal-close  {
  background     :        none;
   border: none;
    font-size: 28px;
   cursor: pointer;
  color: var(--text-light);
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--text-dark);
}

.modal-body {
  padding: 25px;
  display: flex;
     flex-direction: column;
  gap   :      20px;
}

.cookie-option {
   display     :    flex;
        flex-direction: column;
    gap: 8px;
}

.cookie-option label {
  display: flex;
    align-items: center;
	gap   :    12px;
	 cursor: pointer;
  font-weight: 600;
  color: var(--text-dark);
} 

.cookie-option input[type="checkbox"] {
      width: 18px;
    height: 18px;
    cursor: pointer;
  accent-color: var(--primary-color);
	
}

.cookie-option p {
  margin-left: 30px;
    font-size: 13px;
  color: var(--text-light);
}

.modal-footer {


   display  :        flex;
                    gap: 10px;
  padding  :       25px;
  border-top: 1px solid var(--border-color);
     }

.modal-btn {
    flex: 1;
  padding: 12px 20px;
    border: none;
    border-radius: 6px;
  cursor: pointer;
    font-weight: 600;
	font-size: 14px;
   transition: all 0.3s ease;
}

.modal-btn.save  {
  background-color: var(--primary-color);
    color: white;}

.modal-btn.save:hover {
   background-color: #1e3a8a;
}

.modal-btn.cancel {
   background-color: #e5e7eb;
  color: var(--text-dark);
}

.modal-btn.cancel:hover {
    background-color: #d1d5db;
	
}

@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding: 60px 20px;
    }

    .service-item {
        grid-template-columns: 1fr;
    }

    .elearning-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .navbar-menu {
        position: absolute;
        top: 80px;
        right: 0;
        width: 100%;
        background-color: var(--bg-white);
        padding: 20px;
        border-top: 1px solid var(--border-color);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .navbar-menu.active {
        max-height: 400px;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 15px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .service-content h2 {
        font-size: 28px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .cookie-alert {
        max-width: 90%;
        right: 10px;
        left: 10px;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        height: 70px;
    }

    .hero-title {
        font-size: 28px;
    }

    .contact-form {
        padding: 25px;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .footer-logo {
        height: 70px;
    }

    .modal-content {
        width: 95%;
    }
}.hero-services {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 80px 20px;
   text-align   :      center;
   color: white;
}

.hero-services-content  
  {
  max-width: 900px;
    margin: 0 auto;
}

.hero-services-content h1

{
  font-size: 48px;
    font-weight: 800;
   margin-bottom: 20px;
  line-height: 1.3;
}

.hero-services-content p {
               opacity: 0.95;
    line-height: 1.7;
  font-size: 18px;
}

.services-detailed {
    padding: 80px 20px;
    max-width: 1200px;
   margin: 0 auto;
}


.services-container {
    display: flex;
    flex-direction: column;
		 gap: 60px;
}

.service-card-full    {
   display: grid;
   grid-template-columns: 1fr 1fr;
               gap: 50px;
    align-items: center;
  background-color: var(--bg-white);
                    border-radius: 12px;
	overflow  :hidden;
  box-shadow: var(--shadow-md);
   transition: all 0.3s ease;
}

.service-card-full:hover {

	  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);

}

.service-card-full:nth-child(even)


{
    direction: rtl;


}

.service-card-full:nth-child(even) > *
{
   direction: ltr;
}

.service-card-image {
   position : relative;
    overflow  :        hidden;
   height  :      100%;
    min-height: 400px;
}

.service-card-image img {
	width: 100%;
    height: 100%;
   object-fit: cover;
   display: block;
   transition: transform 0.4s ease;
}

.service-card-full:hover .service-card-image img {


  transform: scale(1.05);}

.service-card-body {
  padding: 40px; 

}


.service-card-body h2 {
    font-size: 32px;

		 font-weight: 800;

	  margin-bottom: 15px;

	  color: var(--text-dark);
}

.service-intro {
    font-size: 16px;
  color: var(--text-light);
   margin-bottom: 30px;
   line-height: 1.8;
}

.service-details {
    margin-bottom: 30px;
}

.service-details h3   {


	font-size: 16px;

    font-weight: 700;

    margin-bottom: 15px;

  color: var(--text-dark);


}

.service-list    {
  list-style: none;
    display: flex;
   flex-direction: column;
     gap: 12px;
}

.service-list li {
   display: flex;
   align-items: flex-start;
  gap: 10px;
  color: var(--text-dark);
    font-size: 14px;
    line-height: 1.6;
}

.service-list li:before{

	  content: '→';
  color: var(--accent-color);
   font-weight: 800;
  font-size: 16px;
   flex-shrink: 0;

}

.service-info {


    display: flex;
	flex-direction: column;
         gap: 10px;
        padding-top: 20px;
  border-top: 2px solid var(--border-color);
	}  

.service-duration,
.service-format {
    font-size: 13px;

	  color: var(--text-light);

	    font-weight: 500;
}  

.services-comparison {
  background-color: var(--bg-light);
   padding: 80px 20px;
}

.comparison-container {
   max-width: 1200px;
   margin: 0 auto;
}


.comparison-container h2 {
    font-size: 42px;
   font-weight: 800;
    margin-bottom: 50px;
    text-align: center;
  color: var(--text-dark);
}

.comparison-table-wrapper {
  overflow-x: auto;
    border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.comparison-table {
    width: 100%;
   border-collapse: collapse;
  background-color: white;
}

.comparison-table thead {
  background-color: var(--primary-color);
  color: white;
}

.comparison-table th {
    padding   : 20px;
   text-align: center;
      font-weight   :      700;
    font-size:14px;
}

.comparison-table td {
  padding: 18px 20px;
   text-align: center;
  border-bottom: 1px solid var(--border-color);
  font-size  :    14px;
  color: var(--text-dark);
	
}

.comparison-table tbody tr:hover {
  background-color: var(--bg-light);
}

.comparison-table tbody tr:nth-child(odd) {
  background-color: var(--bg-white);
}

.comparison-table tbody tr:nth-child(even) {
   background-color: #f3f4f6;
}

.comparison-table tbody tr:first-child td:first-child {
               text-align: left;
  font-weight: 600;
  color: var(--primary-color); 

}

.cta-services
	{
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
   padding     :      80px 20px;
   text-align: center;
  color: white;
}


.cta-services-content {
    max-width    :     800px;
   margin: 0 auto;
  display: flex;
    flex-direction: column;
   gap: 25px;


}

.cta-services-content h2	{

	   font-size: 44px;
  font-weight: 800;
  line-height: 1.3;
	}

.cta-services-content p {
	opacity  :      0.95;
  font-size: 18px;
   line-height: 1.7;
}

.thankyou-section {
   padding: 100px 20px;
	  background-color: var(--bg-light);
	       min-height: 70vh;
	    display: flex;
	   align-items: center;
}

.thankyou-container {
	  max-width: 1000px;
	margin: 0 auto;
   width: 100%;
}

.thankyou-icon {
	text-align: center;
    margin-bottom: 30px;
	
}

.thankyou-icon img {
     width : 80px;
   height: 80px;
  filter: brightness(0) saturate(100%) invert(37%) sepia(77%) saturate(1482%) hue-rotate(137deg);
    animation: scaleInBounce 0.6s ease;

}@keyframes scaleInBounce {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}.thankyou-section h1 {
    font-size: 48px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.thankyou-subtitle
	{
    font-size: 18px;
  color: var(--text-light);
   text-align :   center;
    margin-bottom: 50px;
	line-height: 1.7;
}

.thankyou-content {
    display:       grid;
               grid-template-columns: 2fr 1fr;
    gap: 40px;
 margin-bottom: 50px;
	
}

.thankyou-message {
  background-color :       white;
  padding: 40px;
  border-radius     :   12px;
  box-shadow: var(--shadow-md);
}

.thankyou-message h2 {
	  font-size: 24px;
  font-weight: 700;
    margin-bottom: 30px;
  color: var(--text-dark);
}

.thankyou-steps {
   list-style: none; 
   display: flex; 
   flex-direction: column; 
   gap: 25px;
}

.thankyou-steps li {
    display: grid;
            grid-template-columns: 60px 1fr;
       gap  :     20px;
      align-items: flex-start;
}

.step-number {
    width: 60px;
	height: 60px;
	display: flex;
   align-items: center;
                    justify-content :   center;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
   color: white;
  border-radius: 50%;
  font-weight: 800;
   font-size: 24px;
    flex-shrink: 0;
}

.step-content h3 {
   font-size: 16px;
                    font-weight: 700;
	margin-bottom:     8px;
  color: var(--text-dark);
}

.step-content p {

	   font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;


}

.thankyou-info     {
    display: flex;
	 flex-direction: column;
	gap: 20px; 

}

.info-card
	{
  background-color   :    white;
    padding: 30px;
   border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.info-card h3	{
	font-size: 18px;
               font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.info-card p {
  font-size: 14px;
  color: var(--text-light);
	 line-height: 1.7;
   margin-bottom: 15px;
}

.info-card strong	{


  color: var(--accent-color);
	} 

.btn-secondary

{
   display: inline-block;
   padding: 12px 30px;
  background-color: var(--accent-color);
    color: white;
  text-decoration   :none;
  border-radius  :       6px;
    font-weight: 600;
   font-size :        14px;
	 transition  :      all 0.3s ease;
   border: none;
   cursor: pointer;
}

.btn-secondary:hover {
       background-color: #d94208;
  transform: translateY(-2px);


}

.thankyou-actions {
	display: flex;
	gap:20px;
  justify-content: center;
   flex-wrap: wrap;
}

.btn-primary {
	display: inline-block;
	 padding: 16px 40px;
  background-color: var(--accent-color);
  color: white;
   text-decoration: none;
    border-radius: 8px;
  font-weight: 600;
    font-size: 16px;
      transition    :     all 0.3s ease;
  border: none;
   cursor: pointer;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
			background-color: #d94208;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline   {
  display: inline-block;
  padding   :      16px 40px;
    background-color :       transparent;
  color: var(--primary-color);
    text-decoration: none;
	border-radius   :8px;
	 font-weight: 600;
                    font-size: 16px;
   transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
   cursor: pointer;
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.additional-info {

	   padding: 80px 20px;
  background-color: var(--bg-white); 



}

.additional-container {
   max-width: 1200px;
         margin: 0 auto;
}

.additional-container h2 {
    font-size: 42px;
	font-weight: 800;
  margin-bottom    :   50px;
               text-align: center;
  color: var(--text-dark);
     }

.info-grid {
	    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		 gap: 40px;
	}

.info-item


{
     background-color: var(--bg-light);
        padding: 40px;
   border-radius: 12px;
   text-align: center;
  transition: all 0.3s ease;
	}

.info-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
    background-color: white;
}

.info-icon {
    width : 70px;
  height: 70px;
   margin: 0 auto 25px;
	display: flex;
   align-items: center;
	 justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
   border-radius: 12px;
}

.info-icon img {
    width: 36px;
  height: 36px;
  filter: brightness(0) invert(1);
}

.info-item h3 {
   font-size   :        18px;
	font-weight: 700;
   margin-bottom :   15px;
  color: var(--text-dark);
}

.info-item p {
                    font-size: 14px;
  color: var(--text-light);
   line-height: 1.7;
	
}@media (max-width: 1024px) {
    .service-card-full {
        grid-template-columns: 1fr;
    }

    .service-card-full:nth-child(even) {
        direction: ltr;
    }

    .service-card-image {
        min-height: 300px;
    }

    .thankyou-content {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        font-size: 12px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
    }
}

@media (max-width: 768px) {
    .hero-services-content h1 {
        font-size: 32px;
    }

    .service-card-body {
        padding: 25px;
    }

    .service-card-body h2 {
        font-size: 24px;
    }

    .service-list li {
        font-size: 13px;
    }

    .comparison-table thead {
        display: none;
    }

    .comparison-table,
    .comparison-table tbody,
    .comparison-table tr,
    .comparison-table td {
        display: block;
        width: 100%;
    }

    .comparison-table tr {
        margin-bottom: 20px;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        overflow: hidden;
    }

    .comparison-table td {
        text-align: right;
        padding-left: 40%;
        position: relative;
        border: none;
        border-bottom: 1px solid var(--border-color);
    }

    .comparison-table td:before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 35%;
        padding: 18px 10px;
        background-color: var(--bg-light);
        font-weight: 600;
        text-align: left;
    }

    .thankyou-section h1 {
        font-size: 32px;
    }

    .cta-services-content h2 {
        font-size: 32px;
    }

    .additional-container h2 {
        font-size: 32px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-services-content h1 {
        font-size: 26px;
    }

    .service-card-body {
        padding: 20px;
    }

    .service-card-body h2 {
        font-size: 20px;
    }

    .thankyou-icon img {
        width: 60px;
        height: 60px;
    }

    .thankyou-section h1 {
        font-size: 24px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .step-content h3 {
        font-size: 14px;
    }

    .comparison-table td {
        padding-left: 50%;
    }

    .comparison-table td:before {
        width: 45%;
    }
}.policySection {
   padding: 80px 2rem; 
	  background-color: var(--bg-light); 
	   min-height: 70vh;
}  

.policyContainer {
   max-width: 900px;
	 margin: 0 auto;
   text-align: left;
  background-color: var(--bg-white);
   padding: 50px;
               border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.policy-title {
   font-size   :    3rem;
  color: var(--text-dark);
	 margin-bottom: 40px;
   font-weight: 800;
  line-height: 1.2;
}

.policy-content {


      gap     :        30px;
  display: flex;
   flex-direction: column;


}

.policy-content h2 {
	font-size: 1.75rem; 
  color: var(--text-dark); 
    margin-top    :        25px; 
   margin-bottom: 15px; 
   font-weight: 700; 
  line-height: 1.3;
}

.policy-content p {
  color: var(--text-light);
   margin-bottom: 15px;
  line-height: 1.8;
    font-size: 1rem;
    text-align  :   justify;
}

.policy-content strong   {


  color: var(--text-dark);
	 font-weight: 600;


}

.policy-content em {
  color: var(--secondary-color); 
	   font-style: italic;
}

.policy-footer {

	   margin-top: 50px;
   padding-top: 25px;
  border-top: 2px solid var(--border-color);
    text-align: center;
     }

.policy-footer p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin: 0;
}

.policySection {
	animation:      fadeIn 0.6s ease;
}@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.policy-content h2    {
   -moz-animation: slideInLeft 0.5s ease;
 -webkit-animation: slideInLeft 0.5s ease;
  animation: slideInLeft 0.5s ease;
}@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 1024px) {
    .policyContainer {
        padding: 40px;
    }

    .policy-title {
        font-size: 2.5rem;
    }

    .policy-content h2 {
        font-size: 1.5rem;
    }

    .policy-content p {
        font-size: 0.95rem;
    }
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1.5rem;
    }

    .policyContainer {
        padding: 30px;
        border-radius: 8px;
    }

    .policy-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .policy-content h2 {
        font-size: 1.3rem;
        margin-top: 20px;
    }

    .policy-content p {
        font-size: 0.95rem;
        line-height: 1.7;
        text-align: left;
    }

    .policy-content {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 50px 1rem;
    }

    .policyContainer {
        padding: 20px;
        border-radius: 6px;
    }

    .policy-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .policy-content h2 {
        font-size: 1.1rem;
        margin-top: 18px;
        margin-bottom: 12px;
    }

    .policy-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .policy-footer {
        margin-top: 35px;
        padding-top: 20px;
    }

    .policy-footer p {
        font-size: 0.85rem;
    }
}

@media print {
    .navbar-main,
    .footer-main {
        display: none;
    }

    .policySection {
        padding: 0;
        background: white;
    }

    .policyContainer {
        box-shadow: none;
        padding: 0;
    }

    .policy-content h2 {
        page-break-inside: avoid;
    }

    .policy-content p {
        orphans: 3;
        widows: 3;
    }
}

@media (prefers-color-scheme: dark) {
    .policyContainer {
        background-color: #1a1a1a;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    }

    .policy-title,
    .policy-content h2 {
        color: #f0f0f0;
    }

    .policy-content p {
        color: #b0b0b0;
    }

    .policy-footer {
        border-top-color: #333;
    }
}