* {
    margin: 0;
         padding: 0;
        box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
	color: #2c3e50;
   background-color: #f8f9fa;
}

.navbar {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  padding: 1rem 0;
   position: sticky;
   top: 0;
    z-index    :1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.nav-wrapper  
  {
   max-width: 1200px;
  margin    :     0 auto;
  padding: 0 2rem;
	display: flex;
  justify-content :space-between;
  align-items: center;
	
}

.logo-container {
   flex: 0 0 auto;
}

.logo {
	max-height: 74px;
	width: auto;
  filter: brightness(0) invert(1);
}

.nav-menu {
        display: flex;

    list-style: none;

   gap: 2rem;

   flex: 1;

    justify-content: center;
}

.nav-menu a
{
      color: #ecf0f1;
   text-decoration  :      none;
  font-weight: 600;
               transition    :       color 0.3s ease;
   font-size: 1rem;
}

.nav-menu a:hover {
   color: #3498db;
}

.burger-menu {
                    background: none;
    flex-direction :     column;
   cursor   :       pointer;
    border: none;
   gap   :     5px;
   display  :    none;
}

.burger-line {

    width :       25px;
  height: 3px;
  background-color: #ecf0f1;
   transition: all 0.3s ease;
	border-radius: 2px;
	}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #34495e;
        flex-direction: column;
        gap: 0;
        padding: 2rem;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 0.8rem 0;
        border-bottom: 1px solid #2c3e50;
    }

    .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   {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  padding   :     8rem 2rem;
  text-align: center;
} 

.hero-content h1 {
  font-size: 3.5rem;
   margin-bottom :     1rem;
  font-weight: 700;
}

.hero-content p {
		font-size: 1.3rem;
    margin-bottom: 2rem;
   max-width: 600px;
  margin-left: auto;
  margin-right  :     auto;
    opacity: 0.95;
}

.cta-button {
      display: inline-block;
  padding: 1rem 2.5rem;
    font-size: 1.1rem;
	font-weight: 600;
  border: none;
    border-radius: 50px;
  cursor   :       pointer;
    text-decoration: none;
   transition: all 0.3s ease; 

}

.cta-button.primary {
  background-color: #3498db;
  color: white;
}

.cta-button.primary:hover {
   background-color:    #2980b9;

  transform: translateY(-2px);

  box-shadow: 0 8px 16px rgba(52, 152, 219, 0.3);
	
}

.cta-button.secondary {

	   background-color: #ecf0f1;
        color   :  #2c3e50;
}

.cta-button.secondary:hover {


    background-color: #bdc3c7;
  transform: translateY(-2px);


}@media (max-width: 768px) {
    .hero {
        padding: 4rem 2rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}.services-overview {
   max-width: 1200px;
  margin: 0 auto;
   padding: 4rem 2rem;
}

.services-overview h2	{
  font-size: 2.5rem;
   text-align: center;
   margin-bottom: 3rem;
    color: #2c3e50;
}

.services-grid {
   display   : grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
      background: white;
  border-radius: 12px;
   overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;

}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.card-image {
    width  :     100%;
    height: 250px;
         overflow: hidden;
}

.card-image img		{
  width: 100%;
	height: 100%;
   object-fit: cover;
   transition: transform 0.3s ease;
}

.service-card:hover .card-image img {
  transform: scale(1.05);
}



.service-card h3  
  {
    font-size: 1.5rem;
  padding: 1.5rem 1.5rem 0.5rem;
    color     :       #2c3e50;
}

.service-card p {
         padding: 0.5rem 1.5rem 1.5rem;
   	color: #7f8c8d;
       font-size: 0.95rem;
}

.benefits-section {
    background-color: #ecf0f1;
    padding: 4rem 2rem;
}

.benefits-section h2 {

   max-width :     1200px;
  margin: 0 auto 3rem;
  font-size: 2.5rem;
	color: #2c3e50;}

.benefits-container {
            max-width: 1200px;
        margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
	}

.benefit-item {
    background  :    white;

  padding: 2rem;

   border-radius    :    10px;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);

  border-left: 4px solid #667eea;
}

.benefit-item h3 {
    font-size    :     1.3rem;
  margin-bottom: 1rem;
 color: #2c3e50;
}

.benefit-item p {
   color: #7f8c8d; 
  font-size: 0.95rem; 
  line-height: 1.8;
}

.webinars-section {
    max-width: 1200px;
					margin: 0 auto;
   padding: 4rem 2rem;
}

.webinars-section h2 {
  margin-bottom: 3rem;
  text-align: center;
   font-size :  2.5rem;
    color     :  #2c3e50;
} 

.webinar-grid  {
   display:      grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap : 2rem;
	}

.webinar-card {
  background: white;
  border-radius: 12px;
 overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition:     all 0.3s ease;
}

.webinar-card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
} 

.webinar-card img {
    width: 100%;
     height: 220px;
  object-fit: cover;
}

.webinar-card h3 {
  font-size: 1.3rem;
   padding  :   1.5rem 1.5rem 0.5rem;
   color    :        #2c3e50;
}

.webinar-card p {
    padding  :  0.5rem 1.5rem;
          color    :       #7f8c8d;
     font-size: 0.9rem;
}


.webinar-price


{
   	 display: block;
    padding: 0 1.5rem 1.5rem;
   font-size: 1.5rem;
		font-weight: 700;
   color: #3498db;
}

.coaching-packages {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); 
    padding: 4rem 2rem;
}

.coaching-packages h2 {
	 font-size: 2.5rem; 
    color    :    #2c3e50; 
    text-align: center; 
   margin: 0 auto 3rem; 
     max-width: 1200px;
}

.packages-wrapper {
   max-width: 1200px;
  margin    :        0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	 gap: 2rem;
}

.package 
 {
   background: white;
   padding: 2.5rem;
   border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
  transition: all 0.3s ease;
}

.package.featured {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  border  :    2px solid #667eea;
}

.package h3 {
   font-size: 1.8rem;
               color: #2c3e50;
 margin-bottom: 0.5rem;
}

.package-desc {


   color: #7f8c8d;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;


}  

.package-features		{
    list-style: none;
    text-align  :left;
  margin: 2rem 0;
   color: #34495e;
}

.package-features li {
  padding: 0.7rem 0;
  border-bottom: 1px solid #ecf0f1;
}

.package-features li:last-child


{
    border-bottom: none;
}

.package-price {
	  display: block;
    font-size   :      2.2rem;
   font-weight: 700;
   color  :      #667eea;
    margin-top: 1.5rem;



}@media (max-width: 768px) {
    .package.featured {
        transform: scale(1);
    }
}.conference-section

{

		 max-width: 1200px;
	 margin: 0 auto;
    padding: 4rem 2rem;
   display: grid;
    grid-template-columns :1fr 1fr;
   gap: 3rem;
    align-items: center;
     }

.conference-content h2 {
                    font-size: 2.3rem;
            margin-bottom   :    1rem;
      color: #2c3e50;
}  

.conference-content p {
   line-height: 1.8;
  margin-bottom     : 2rem;
	 color: #7f8c8d;
   font-size: 1.05rem;
}

.conference-image img {
  width:  100%; 
    border-radius :      12px; 
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}@media (max-width: 768px) {
    .conference-section {
        grid-template-columns: 1fr;
    }
}.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding   :     4rem 2rem;
    text-align: center;
}

.cta-section h2 {
   margin-bottom: 1rem;
    font-size: 2.3rem;
}

.cta-section p {
   font-size: 1.15rem;
  max-width: 600px;
 margin: 0 auto 2rem;
    opacity: 0.95;
}

.contact {
   max-width: 700px;
    margin: 0 auto;
  padding :     4rem 2rem;
}



.contact h2 {
  font-size: 2.5rem;
    text-align   :center;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.contact-form {
    background: white;
  padding: 2.5rem;
               border-radius: 12px;
  box-shadow: 0 4px 12px 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: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
   padding: 0.8rem;
	border: 1px solid #bdc3c7;
   border-radius: 6px;
    font-size   : 1rem;
    font-family: inherit;
	 transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}



.form-group textarea {
      resize: vertical;
  min-height: 120px;
     }

.submit-btn {
   width: 100%;
    padding: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	 color: white;
  border     :       none;
  border-radius: 6px;
  font-size: 1.1rem;
	font-weight: 600;
	 cursor: pointer;
  transition   : all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
}

.footer {
                    background     :       #2c3e50; 
  color: #ecf0f1; 
   padding: 3rem 2rem 1rem;
	
}

.footer-wrapper {
     max-width: 1200px;
  margin     :  0 auto;
  display: grid;
   grid-template-columns: 1fr 1.5fr 1fr;
   gap: 3rem;
  margin-bottom: 2rem;
}


.footer-logo-img {
  max-height: 96px;
    width    :        auto;
  filter: brightness(0) invert(1);
  margin-bottom   :      1rem;
}

.footer-info h4 {
   font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-info p {

	                    margin-bottom: 0.7rem;
   font-size: 0.95rem;

}


.footer-nav ul 
 {


    list-style: none;
   display: flex;
   flex-direction: column;
   gap: 0.7rem;

}

.footer-nav a {
   color: #bdc3c7;
	text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #3498db;
	
}  

.footer-bottom 
 {
	text-align: center;
       padding-top    :       2rem;
       border-top: 1px solid #34495e;
       font-size: 0.9rem;
   	color: #95a5a6; 

}@media (max-width: 768px) {
    .footer-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-nav ul {
        flex-direction: row;
        flex-wrap: wrap;
    }
}.cookie-alert{
    position: fixed;

	  bottom: 0;

	    left: 0;

	       right: 0;

	 background: #2c3e50;

	   color :       white;

	  padding: 1.5rem;

	  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);

	     z-index:       999;

	    animation : slideUp 0.3s ease;


}@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}.cookie-content {
	max-width   :        1200px;
	margin: 0 auto;
} 

.cookie-content p {
    font-size    :0.95rem;
	   margin-bottom: 1.5rem;
}

.cookie-buttons {
  display: flex;
   gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
  padding:0.7rem 1.5rem;
		border   :none;
  border-radius: 6px;
     cursor: pointer;
   font-size: 0.9rem;
  font-weight  :       600;
        transition: all 0.3s ease;
}

.cookie-btn.accept {
          background-color    : #3498db;
    color: white;
}

.cookie-btn.accept:hover		{
  background-color: #2980b9;
}

.cookie-btn.decline {
        background-color: #e74c3c;
   color: white;
}

.cookie-btn.decline:hover {
  background-color: #c0392b;
	}

.cookie-btn.settings  
  {
       background-color: #7f8c8d;
   color: white;
     }

.cookie-btn.settings:hover {
   background-color: #95a5a6;
}

.cookie-settings {
  position: fixed;
   top: 50%;
    left :     50%;
  transform: translate(-50%, -50%);
				 background: white;
    color: #2c3e50;
	padding: 2rem;
	border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  z-index: 1001;
	 max-width: 500px;
    width: 90%;
                    animation: modalSlide 0.3s ease;
}@keyframes modalSlide {
    from {
        opacity: 0;
        transform: translate(-50%, -48%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}.settings-content h3 {
  margin-bottom: 1.5rem;
         font-size: 1.5rem;
}

.setting-item {
      margin-bottom:        1.5rem;
}

.setting-item label	{
   display: flex;
    align-items: center;
   cursor: pointer;
	gap    :   0.8rem;
}

.setting-item input[type="checkbox"] 
 {
   cursor: pointer;
    width: 18px;
	height: 18px;
}

.settings-buttons {
	  display: flex;
   gap: 1rem;
  margin-top: 2rem;


}

.settings-buttons button {
       flex: 1;
}@media (max-width: 768px) {
    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

    .settings-buttons {
        flex-direction: column;
    }

    .settings-buttons button {
        width: 100%;
    }
}

@media (max-width: 768px) {
    section {
        padding: 2rem 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.2rem;
    }
}.services-hero {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
	 padding: 6rem 2rem;
      text-align: center;
     }

.services-hero h1 {
	font-size: 3rem; 
	  margin-bottom: 1rem; 
		 font-weight: 700;
}

.services-hero p {
    font-size: 1.2rem;
          max-width: 700px;
  margin: 0 auto;
 opacity: 0.95;
}

.service-detail-section {
	 max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.service-detail-wrapper {
   display: grid;
   grid-template-columns: 1fr 1fr;
  gap   :    3rem;
 align-items: center;
}

.service-detail-section.alternate .service-detail-wrapper {
    grid-template-columns: 1fr 1fr;
         direction    :       rtl;

}

.service-detail-section.alternate .service-detail-content,
.service-detail-section.alternate .service-detail-image {


   direction   :       ltr;
	}

.service-detail-content h2 {
   	 font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;


}

.service-detail-content p {

	    font-size: 1.05rem;
    color: #7f8c8d;
  margin-bottom: 2rem;
   line-height: 1.8;

}

.service-features {
   list-style: none;
	          margin-bottom: 2rem;
}

.service-features li {
    padding: 0.8rem 0;
		padding-left: 1.5rem;
	    color: #34495e;
	  position: relative;
	      font-size    :        0.95rem;

}

.service-features li:before
{
  content: "✓";
  position: absolute;
    left: 0;
   color: #667eea;
    font-weight   : bold;
}

.service-meta {
	      display: flex;
   gap: 2rem;
   flex-wrap: wrap;
	}

.service-meta span {
   font-size: 1rem;
  font-weight: 600;
	 padding   : 0.8rem 1.5rem;
	background-color: #f0f0f0;
     border-radius: 6px;
      color   : #2c3e50;
}



.service-meta .price {

	  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
  color: #667eea;

}

.service-detail-image img {
   width     :   100%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.service-detail-image:hover img {
  transform: scale(1.03);
}@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2rem;
    }

    .services-hero p {
        font-size: 1rem;
    }

    .service-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-detail-section.alternate .service-detail-wrapper {
        direction: ltr;
    }

    .service-detail-content h2 {
        font-size: 1.8rem;
    }
}.services-comparison {
               max-width: 1200px;
   margin:       0 auto;
  padding: 4rem 2rem;
}

.services-comparison h2	{
   font-size: 2.5rem;
    text-align     :       center;
   margin-bottom: 3rem;
   color: #2c3e50;
}

.comparison-table-wrapper     {
   overflow-x   :   auto;
    border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

}

.comparison-table {
  width: 100%;
   border-collapse: collapse;
  background: white;
}

.comparison-table thead {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 color :       white;


}

.comparison-table th {
  padding: 1.5rem;
  text-align   :    left;
    font-weight  :       600;
	font-size: 0.95rem;
}

.comparison-table td {
    color: #34495e;
   border-bottom     :     1px solid #ecf0f1;
   padding    :1.2rem 1.5rem;
}

.comparison-table tbody tr:hover {
    background-color: #f8f9fa;
}

.comparison-table tbody tr:last-child td
{
    border-bottom: none;
}@media (max-width: 768px) {
    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem;
        font-size: 0.85rem;
    }
}.faq-section {
    background-color: #f8f9fa;
	 padding: 4rem 2rem;
	
}

.faq-section h2 {
  max-width: 1200px;
   margin: 0 auto 3rem;
               font-size:    2.5rem;
  text-align: center;
  color: #2c3e50;
}

.faq-container {

   max-width: 900px;
  margin: 0 auto;
  flex-direction     :      column;
   gap: 1.5rem;
    display: flex;
	}

.faq-item {
	background: white;
   padding: 2rem;
   border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
          border-left     :       4px solid transparent;
}

.faq-item:hover {
  border-left-color     : #667eea;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
	/* Hack for old browsers */
/* Third-party styles */


.faq-question {
    font-size: 1.2rem;
   color :        #2c3e50;
    margin-bottom:     1rem;
    display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: "+";
  font-size     :        1.5rem;
  color: #667eea;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
   color: #7f8c8d;
  line-height: 1.8;
      display: none;
}

.faq-item.active .faq-answer {
    display: block;
  animation: slideDown 0.3s ease;
}
@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}.cta-services {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
    padding: 4rem 2rem;
	 text-align: center;
}

.cta-services h2 {
   font-size: 2.3rem;
	 margin-bottom: 1rem;
}

.cta-services p {

    opacity     :    0.95;
      font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.thankyou-container {
  max-width: 1200px;
  margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns : 2fr 1fr;
    gap: 3rem;
    min-height: 70vh;
}

.thankyou-content {
 background: white;
   padding: 3rem;
    border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	 text-align   :      center;
}

.success-icon {
	 display :   flex;
    justify-content: center;
    margin-bottom: 2rem; 
	
}  

.success-checkmark {
    width: 80px;
    height: 80px;
  filter: drop-shadow(0 0 10px rgba(52, 152, 219, 0.3));
}

.thankyou-content h1 {
   font-size: 2.5rem;
    color: #2c3e50;
  margin-bottom: 0.5rem;
}

.thankyou-subtitle {
    font-size   :    1.2rem;
   color: #3498db;
          margin-bottom: 2rem;
}

.thankyou-message {
  text-align: left;
	background-color  :       #f8f9fa;
    padding: 1.5rem;
       border-radius    :     8px;
   margin-bottom: 2rem;
}

.thankyou-message p {
   color: #34495e;
     line-height: 1.8;
    margin-bottom: 1rem;
}

.thankyou-message p:last-child {
    margin-bottom: 0;
} 

.thankyou-next-steps {

	  text-align: left;
   margin-bottom: 2rem;

}

.thankyou-next-steps h3 {
               margin-bottom: 1.5rem;
      color: #2c3e50;
    font-size: 1.5rem;
}

.steps {
  display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step{
  display: flex;
   gap: 1.5rem;


}

.step-number {
       flex: 0 0 50px;
  width  : 50px;
  height: 50px;
  border-radius :       50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	display: flex;
   align-items   :       center;
    justify-content: center;
    font-weight: 700;
   font-size: 1.3rem;
}

.step-text strong {

    color: #2c3e50;

}


.step-text p {
   color: #7f8c8d;
  margin-top: 0.3rem;
    font-size: 0.9rem;
}

.thankyou-faq {
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
	padding: 1.5rem;
  border-radius:       8px;
   margin-bottom: 2rem;
}

.thankyou-faq h3 {
    font-size     :  1.2rem;
   color: #2c3e50;
 margin-bottom: 1rem;
}

.thankyou-faq p{
    color: #34495e;
    margin-bottom: 0.5rem;
   line-height: 1.6;
}

.thankyou-faq p:last-child {
  margin-bottom  :       0;
}

.thankyou-buttons {
  display: flex;
  gap    :1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.thankyou-side {
   display: flex;
   align-items    :    flex-start;
}

.thankyou-info-box {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
   padding: 2rem;
 border-radius: 12px;
   width: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);}

.thankyou-info-box h4 {
          font-size: 1.5rem; 
	  margin-bottom: 1.5rem;
}

.thankyou-info-box p {


    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.info-hours 
 {

   margin-top: 1.5rem;
   font-style: italic;
    opacity: 0.9;
	}@media (max-width: 768px) {
    .thankyou-container {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .thankyou-content {
        padding: 1.5rem;
    }

    .thankyou-content h1 {
        font-size: 1.8rem;
    }

    .steps {
        gap: 1rem;
    }

    .thankyou-buttons {
        flex-direction: column;
    }

    .thankyou-buttons a {
        width: 100%;
    }
}.policySection    {
  padding: 5rem 2rem;
	background: #f8f9fa;
       min-height: 70vh;
}

.policyContainer {

   max-width :        850px;
  margin: 0 auto;
   text-align    :left;

     }

.policyContainer h1  {
         font-size: 3rem;
    margin-bottom: 2rem;
   font-weight: 700;
    color: #2c3e50;
}

.policyContainer h2
{
       font-size:1.8rem;
    color: #2c3e50;
  margin-bottom: 1.2rem;
    margin-top: 2.5rem;
   font-weight: 600;
   border-bottom: 3px solid #667eea;
    padding-bottom: 0.8rem;}

.policyContainer p {
  color: #34495e;
   margin-bottom :    1.2rem;
    line-height: 1.9;
   font-size: 1rem;
}

.policyContainer strong  
  {
   color :     #2c3e50;
   font-weight   :600;
}@media (max-width: 1024px) {
    .policyContainer {
        max-width: 90%;
    }

    .policyContainer h1 {
        font-size: 2.5rem;
    }

    .policyContainer h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .policySection {
        padding: 3rem 1.5rem;
    }

    .policyContainer {
        max-width: 100%;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 1.8rem;
        margin-bottom: 1rem;
        padding-bottom: 0.6rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        line-height: 1.8;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 2rem 1rem;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
    }
}