* {
  margin: 0;
    padding   :0;
   box-sizing: border-box;
}

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2c5aa0;
    --accent-color: #ff6b35;
    --light-bg: #f5f7fa;
    --dark-text: #1a1a1a;
    --light-text: #666666;
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

html {
   scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  color: var(--dark-text);
  line-height: 1.6;
    background-color: #ffffff;
}

.navbar {
	  background: 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 {
    max-height: 74px;
   width: auto;
  filter: brightness(0) invert(1);
}

.nav-menu     {
     list-style: none;
       gap: 2rem;
   display: flex;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover {

  color: var(--accent-color);
     }

.nav-link::after {
  content: '';
    position     : absolute;
      bottom     :-5px;
  left: 0;
  width: 0;
	height: 2px;
  background: var(--accent-color);
               transition: width 0.3s ease;
}

.nav-link:hover::after {
        width: 100%;
}

.nav-toggle {
  cursor :pointer;
  display: none;
   gap: 5px;
  flex-direction: column;
}

.hamburger{
  width: 25px;
         height: 3px;
   background  :        #ffffff;
  transition: var(--transition);
  border-radius: 2px;
}@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .hamburger:nth-child(1) {
        transform: rotate(-45deg) translate(-8px, 8px);
    }

    .nav-toggle.active .hamburger:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .hamburger:nth-child(3) {
        transform: rotate(45deg) translate(-8px, -8px);
    }

    .nav-container {
        padding: 0 1rem;
    }
}.hero-section		{
  display: grid;
  grid-template-columns: 1fr 1fr;
   gap:      3rem;
  align-items: center;
	 padding:  4rem 2rem;
  max-width: 1200px;
   margin: 0 auto;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
}  

.hero-content h1 {
  font-size  :        3.5rem;
   line-height: 1.2;
  color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight :        700;
}

.hero-content p {
	font-size: 1.1rem;
  color: var(--light-text);
  margin-bottom: 2rem;
 line-height: 1.8; 

}

.cta-button {
  display: inline-block; 
	  background: var(--accent-color); 
	  color: white; 
						padding: 1rem 2.5rem; 
	  border-radius: var(--border-radius); 
	    text-decoration: none; 
	    font-weight: 600; 
	  transition: var(--transition); 
	  border: 2px solid var(--accent-color); 
	               cursor: pointer;
}

.cta-button:hover
{
  background: transparent;
  color: var(--accent-color);
  transform: translateY(-2px);
}
/* Utility classes */

.hero-image img    {
	   width: 100%;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);


}
@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}.expertise-section {
  padding: 4rem 2rem;
  background: #ffffff;
}

.section-content {
	   margin: 0 auto;
   max-width: 1200px;

}

.section-content h2 {
   font-size: 2.8rem;
     color: var(--primary-color);
       margin-bottom: 3rem;
     text-align: center;
}
	/* Animation and transitions */


.expertise-grid {

	   display  :grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
          gap: 2rem;


}

.expertise-card {
     background: var(--light-bg);
  padding: 2rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--accent-color);
  transition: var(--transition);
     }

.expertise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
	/* TODO: optimize for mobile */
.expertise-card h3 {
  color: var(--primary-color);
    margin-bottom: 1rem;
 font-size: 1.4rem;
}

.expertise-card p {
  color: var(--light-text);
  line-height: 1.7;
}


.transformation-section

{
  padding:   4rem 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
}

.transform-wrapper  {

    max-width: 1200px; 
	  margin: 0 auto; 
	  display: grid; 
	  grid-template-columns: 1fr 1fr; 
	  gap    : 3rem; 
	     align-items: center;
     }

.transform-image img {

	          width: 100%;
  border-radius: var(--border-radius);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.transform-content h2


{
    font-size:      2.5rem;
  color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Build system output */

.transform-content p {
  color: var(--light-text);
  margin-bottom: 2rem;
    line-height: 1.8;
}

.benefits-list {
     list-style: none;}

.benefits-list li  {
  padding: 0.8rem 0 0.8rem 2rem;
  color: var(--dark-text);
    position     :      relative;
    font-weight: 500;}

.benefits-list li::before {
  content: '✓';
  position: absolute;
   left: 0;
  color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}
@media (max-width: 768px) {
    .transform-wrapper {
        grid-template-columns: 1fr;
    }

    .transform-content h2 {
        font-size: 2rem;
    }
}.webinar-section {
               padding: 4rem 2rem;
    background     :        #ffffff;
}  

.section-header {
   text-align: center;
  margin-bottom: 3rem;
  max-width: 1200px;
   margin-left: auto;
  margin-right: auto;
	}

.section-header h2 {
	font-size: 2.8rem;
  color: var(--primary-color);
        margin-bottom     :        1rem;
}

.section-header p {
  color: var(--light-text);
  font-size: 1.1rem;
	
}

.webinar-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	 gap: 2rem;
  max-width: 1200px;
  margin: 0 auto; 
	
}

.webinar-card {
     background: var(--light-bg);
  border-radius: var(--border-radius);
   overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

}

.webinar-card:hover {
  transform: translateY(-8px);
     box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.webinar-image {
  width: 100%;
   height: 220px;
    overflow :        hidden;
}

.webinar-image img
	{
   width: 100%;
	 height: 100%;
    object-fit: cover;
  transition: var(--transition);
}

.webinar-card:hover .webinar-image img {
	  transform: scale(1.08);
	}

.webinar-card h3 {
   padding: 1.5rem 1.5rem 0.5rem;
  color: var(--primary-color);
	font-size:  1.3rem;


}

.webinar-card p {
	padding: 0 1.5rem 1.5rem;
  color: var(--light-text);
}

.coaching-section {
       padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.coaching-box {
    max-width   :        1000px;
                    margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
    padding     :    3rem;
  border-radius: var(--border-radius);
}

.coaching-box h2 {
   font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;}

.coaching-box p    {
  color: var(--light-text);
      margin-bottom: 2rem;
    line-height: 1.8;
}

.coaching-highlights {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem; 

}

.highlight {
  background: var(--light-bg);
  padding: 1.5rem;
   border-radius    :   10px;
  border-top: 3px solid var(--accent-color);
}

.highlight h4
{


  color: var(--primary-color);
  margin-bottom: 0.5rem;


}

.highlight p {
  color: var(--light-text);
	font-size: 0.95rem;
}@media (max-width: 768px) {
    .coaching-box {
        padding: 2rem;
    }

    .coaching-box h2 {
        font-size: 2rem;
    }
}.conference-section {
	padding: 4rem 2rem; 
	 background: #f9fafb;
}


.conference-section .section-content {
   text-align: center;
	
}

.conference-section p {
  color: var(--light-text);
	font-size     :     1.1rem;
   margin-bottom :    3rem;
}

.conference-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
    max-width: 1200px;
	margin: 0 auto;
}

.feature-item {

	  background: #ffffff;
    padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
	}

.feature-item:hover     {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.feature-item h3 {
  color: var(--primary-color);
   margin-bottom: 1rem;
  font-size: 1.3rem;
}

.feature-item p {
  color: var(--light-text);
}

.cta-section     {
  background: linear-gradient(135deg, var(--accent-color) 0%, #ff8c5a 100%);
   padding    :        4rem 2rem;
   text-align: center;
}


.cta-content {
   max-width  :  800px;
    margin: 0 auto;
}

.cta-content h2   {
  font-size: 2.8rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
   margin-bottom: 2rem;
}

.cta-button-large   {
  display: inline-block;
   background: white;
  color: var(--accent-color);
   padding: 1.2rem 3rem;
  border-radius: var(--border-radius);
    text-decoration: none;
   font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  border: 2px solid white;
	
}

.cta-button-large:hover {
	 background: transparent;
  color: white;
  transform: translateY(-2px);
} 

.contact-section {

	 padding: 4rem 2rem;
   background: #ffffff;
	}

.contact-form {
  max-width: 600px;
    margin   :      2rem auto;
  background: var(--light-bg);
   padding: 2rem;
  border-radius: var(--border-radius);
}

.form-group {
  margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width:   100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
   border-radius: 8px;
   font-family: inherit;
  font-size:    1rem;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus		{
    outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.submit-btn {
   width: 100%; 
	  background: var(--accent-color); 
	       color: white; 
	  padding: 1rem; 
	  border: none; 
		border-radius: 8px; 
	  font-weight:     600; 
	    font-size: 1rem; 
	   cursor: pointer; 
	  transition: var(--transition);
}

.submit-btn:hover {
       background: #ff5722;
  transform: translateY(-2px);
}

.footer {

  background: var(--primary-color);
    color: white;
    padding: 3rem 2rem 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-logo     {
   max-height: 96px;

   width: auto;

  filter: brightness(0) invert(1);
}

.footer-section h4 {
    margin-bottom: 1rem;
  color: var(--accent-color);
}

.footer-section p {


  color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;


	}

.footer-links {
    list-style    :none;
}

.footer-links li {
   margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
     text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-color);
}

.footer-bottom 
 {
    text-align: center;
	   padding-top: 2rem;
	  border-top: 1px solid rgba(255, 255, 255, 0.2);
	  color: rgba(255, 255, 255, 0.7);
}@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto;
    }
}.cookie-alert		{
    position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 58, 82, 0.98);
         padding: 2rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index :        999;
  backdrop-filter: blur(10px);
}

.cookie-content {
     max-width: 1000px;
    margin: 0 auto;
  display: flex;
    justify-content: space-between;
    align-items: center;
      gap   :      2rem;
}

.cookie-text h3 {
    color  :    white;
	margin-bottom: 0.5rem;

}

.cookie-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.cookie-buttons {
   display: flex;
	 gap   :        1rem;
   flex-wrap: wrap;
}

.cookie-btn {

	   padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 6px;
   font-weight: 500;
    cursor: pointer;
  transition: var(--transition);
   font-size: 0.95rem;

}

.cookie-btn.accept {
  background: var(--accent-color);
    color: white;
}

.cookie-btn.accept:hover {
    background: #ff5722; 

}

.cookie-btn.reject {
  background: rgba(255, 255, 255, 0.2);
   color: white;
	
}

.cookie-btn.reject:hover {
  background: rgba(255, 255, 255, 0.3);
}



.cookie-btn.settings
	{
  background: rgba(255, 255, 255, 0.1);
        color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn.settings:hover {
  background: rgba(255, 255, 255, 0.15);


} @media (max-width: 768px) {
    .cookie-alert {
        padding: 1.5rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}.gdpr-modal  
  {
     position: fixed;
      top   :  0;
    left: 0;
   right: 0;
    bottom  : 0;
  background: rgba(0, 0, 0, 0.7);
    display: flex;
   align-items: center;
	justify-content: center;
   z-index: 1001;
}

.gdpr-content {
   background: white;
  border-radius: var(--border-radius);
  max-width: 500px;
    width: 90%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
   animation: slideUp 0.3s ease;

}@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}.gdpr-header {
   padding   : 2rem;
	    border-bottom: 1px solid #eee;
	   display: flex;
	   justify-content: space-between;
	  align-items: center; 

}

.gdpr-header h2 {
  color: var(--primary-color);
    margin: 0;
}

.close-btn {

      color     :   #666;
  font-size: 2rem;
    cursor: pointer;
    background: none;
   border  :    none;
     }  

.gdpr-body{
   padding: 2rem;
}

.gdpr-option {
     margin-bottom   :  1.5rem;

}

.gdpr-option label{
     display     :      flex;
   align-items   :  center;
  cursor: pointer;
    font-weight: 500;
}

.gdpr-option input {
	 margin-right: 1rem;
    cursor: pointer;
}

.gdpr-option p    {
   margin: 0.5rem 0 0 2rem;
  color: var(--light-text);
    font-size: 0.9rem;
}

.gdpr-footer {
    padding   :     2rem;
 border-top: 1px solid #eee;
   text-align: center;
}

.services-hero {
     background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
	  padding     : 5rem 2rem;
	  text-align: center;
	         color: white;
	  min-height: 300px;
	   display: flex;
	  align-items: center;
	  justify-content: center; 
	
     }

.services-hero-content h1 {
   font-size     :   3rem; 
    margin-bottom: 1rem; 
    font-weight   :       700;
}

.services-hero-content p {

	  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
}

.services-overview {
  background: #f9fafb;
    padding: 3rem 2rem;
         text-align: center;
}

.services-overview .section-content h2 {

	   margin-bottom: 1rem;
     }

.section-intro {
  color: var(--light-text);
   font-size: 1.1rem;
  max-width   : 700px;
  margin: 0 auto;
}

.services-detailed {

		 padding: 4rem 2rem;}

.services-detailed .section-content {

	   max-width: 1200px;}  

.service-detail-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:       3rem;
   align-items: center;
  margin-bottom: 4rem;
}

.service-detail-item.reverse {
  grid-template-columns: 1fr 1fr; 
    direction: rtl;
}

.service-detail-item.reverse > div {
   direction: ltr;
}

.service-detail-image {
   width: 100%;
   height: 100%;
 min-height: 350px;
}

.service-detail-image img     {
    width: 100%;
    height   :        100%;
    object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
} 

.service-detail-text h3 {
    font-size: 2rem;
  color: var(--primary-color);
	margin-bottom: 1rem;
}

.service-detail-text p {
  color: var(--light-text);
  margin-bottom :  1.5rem;
    line-height: 1.8;
}

.service-list {
	list-style: none;
}

.service-list li {
    padding: 0.6rem 0 0.6rem 1.8rem;
  color: var(--dark-text);
                    position   :   relative;
  font-weight: 500;
}

.service-list li::before {
  content: '→';
  position: absolute;
  left  :       0;
  color: var(--accent-color);
   font-weight: bold;
}@media (max-width: 968px) {
    .service-detail-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-detail-item.reverse {
        direction: ltr;
        grid-template-columns: 1fr;
    }

    .service-detail-image {
        min-height: 250px;
    }

    .service-detail-text h3 {
        font-size: 1.5rem;
    }
}.pricing-section {
	 padding: 4rem 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
}

.pricing-grid {
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
   max-width: 1200px;
  margin: 2rem auto 0;

}

.pricing-card {
   background: white;
  border-radius: var(--border-radius);
    overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
       display :  flex;
    flex-direction: column;


}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}


.pricing-card.featured		{
	  border: 2px solid var(--accent-color);
  transform: scale(1.02);
     }

.pricing-card.featured:hover {
  transform: scale(1.02) translateY(-8px);
}

.pricing-header {

	  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
   padding: 2rem;
  text-align: center;
}

.pricing-header h3 {
  font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-desc  
  {
  color: rgba(255, 255, 255, 0.8);
         font-size: 0.95rem;
}

.pricing-body {
  padding: 2rem;
  flex-grow     :    1;
}

.pricing-list {
  list-style: none;
}

.pricing-list li    {
  padding: 0.8rem 0 0.8rem 1.8rem;
  color: var(--dark-text);
  position: relative;
   font-weight: 500;
}

.pricing-list li::before{
  content: '✓';
  position: absolute;
   left:       0;
  color: var(--accent-color);
	 font-weight: bold;
}

.pricing-footer	{
   border-top: 1px solid #eee;
  padding: 1.5rem 2rem;
  text-align    :        center;
     background: #f9fafb;


}

.pricing-duration


{
  color: var(--light-text);
	    font-size:      0.95rem;
	  margin: 0;
}@media (max-width: 768px) {
    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
}.process-section {
    padding :        4rem 2rem;
   background  :   white;
}

.process-steps {
	         display    :   grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap    :   2rem;
   max-width   :  1200px;
    margin: 2rem auto 0;
     }

.process-step {
    text-align: center;
   padding: 2rem 1.5rem;
  background: var(--light-bg);
  border-radius: var(--border-radius);
  transition: var(--transition);
   position  :  relative;
}

.process-step:hover     {
  transform: translateY(-5px); 
	  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
	
}


.step-number {
  font-size    :    3rem;
		font-weight: 700;
  color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.process-step h4 {
  color: var(--primary-color);
   margin-bottom    :0.5rem;
  font-size: 1.2rem;
}


.process-step p {
  color: var(--light-text);
  line-height: 1.6;
}

.cta-services {
  background: linear-gradient(135deg, var(--accent-color) 0%, #ff8c5a 100%);
	 padding     :   4rem 2rem;
   text-align: center;
}

.cta-services .cta-content h2 {
  color: white;
    margin-bottom: 1rem;
   font-size  :2.5rem;
}

.cta-services .cta-content p {

  color: rgba(255, 255, 255, 0.9);
        font-size: 1.1rem;
       margin-bottom:      2rem;}

.thankyou-section {
          padding: 4rem 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
  min-height: calc(100vh - 300px);
     display: flex;
  align-items: center;
   justify-content   : center;
} 

.thankyou-container {
 width: 100%;
  max-width: 700px;
}

.thankyou-card {
    background :      white;
    border-radius: 20px;
               padding: 3rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
   text-align: center;

}

.success-icon {
    width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
  display: flex;
	align-items: center;
   justify-content: center;
   margin: 0 auto 1.5rem;
    color: white;
        animation: scaleIn 0.5s ease-out;
}
@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.success-icon svg {
	width: 80px;
   height   :        80px;
}

.thankyou-card h1
	{
	 font-size: 2.5rem;
  color: var(--primary-color);
   margin-bottom: 0.5rem; 

}

.thankyou-subtitle {
  color: var(--light-text);
   font-size    :        1.1rem;
   margin-bottom: 2rem;


}

.thankyou-message {
  background: var(--light-bg);
   padding: 1.5rem;
    border-radius    : 12px;
	margin-bottom: 2rem;
  border-left: 4px solid var(--accent-color);
}

.thankyou-message p {
  color: var(--dark-text);
   line-height: 1.8;
  margin: 0;
} 

.next-steps     {
	 text-align: left;
	  margin: 2rem 0;}

.next-steps h2 {
  color: var(--primary-color);
    font-size   :    1.5rem;
  margin-bottom: 1.5rem;
   text-align: center;
}

.steps-list  
  {
     display: flex;
  flex-direction: column;
  gap: 1rem;
	}

.step-item {
	  display: flex;
    gap   :     1rem;
  background: var(--light-bg);
    padding: 1rem;
   border-radius: 10px;
}

.step-icon {
        width: 40px;
   height: 40px;
  background: var(--accent-color);
   color: white;
	border-radius: 50%;
  display: flex;
   align-items: center;
			justify-content: center;
   font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
  color: var(--primary-color);
	margin: 0 0 0.3rem 0;
  font-size: 1rem;
}

.step-content p {
  color: var(--light-text); 
	    margin     :   0; 
	  font-size: 0.9rem;
}

.contact-info {
  background: rgba(255, 107, 53, 0.1);
  padding: 1.5rem;
    border-radius: 12px;
  margin: 2rem 0;
  border: 1px solid var(--accent-color);
}

.contact-info p
{
  color: var(--dark-text);

	margin-bottom: 0.5rem;
}

.contact-details {
  color: var(--primary-color);
    font-weight: 600;
	 margin: 0.5rem 0;
}

.action-buttons {
    display:      flex;
   flex-wrap: wrap;
   margin-top: 2rem;
      gap: 1rem;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
  padding: 1rem 2rem;
  border-radius: 10px;
   text-decoration: none;
    font-weight: 600;
  transition: var(--transition);
          border: 2px solid transparent;
   display: inline-block;
}

.btn-primary {
  background: var(--accent-color);
    color: white;
  border-color: var(--accent-color);
}

.btn-primary:hover {
         background :       transparent;
  color: var(--accent-color);
}

.btn-secondary {
    background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
   color: white;
}@media (max-width: 768px) {
    .thankyou-card {
        padding: 2rem;
    }

    .thankyou-card h1 {
        font-size: 2rem;
    }

    .next-steps h2 {
        font-size: 1.3rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}.policySection {
   padding: 80px 2rem; 
	  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%); 
	  min-height: calc(100vh - 200px);
}



.policyContainer {


 max-width: 900px;
	 margin: 0 auto;
  text-align: left;
  background:       white;
   padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);


}

.policyContainer h1 {
  font-size: 2.8rem;
  color: var(--primary-color);
               margin-bottom: 2rem;
	font-weight: 700;
  border-bottom: 3px solid var(--accent-color);
	padding-bottom: 1rem;
}

.policyContainer h2 {
	 font-size: 1.8rem;
  color: var(--primary-color);
  margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight   :  600; 

}

.policyContainer p {
  color: var(--light-text);
  margin-bottom    :   1.2rem;
  line-height: 1.8;
    font-size:   1rem;
   text-align: justify;
}

.policyContainer ul {
   list-style: none;
    margin-bottom: 1.5rem;
}

.policyContainer li {
  color: var(--light-text);
  margin-bottom: 0.8rem;
   padding-left: 1.5rem;
	 position: relative;
    line-height: 1.6;
}

.policyContainer li::before


{
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}
@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer {
        padding: 2rem;
    }

    .policyContainer h1 {
        font-size: 2rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
    }
}@media (max-width: 480px) {
    .policySection {
        padding: 40px 0.5rem;
    }

    .policyContainer {
        padding: 1.5rem;
        border-radius: 8px;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        text-align: left;
    }
}