* {
   margin: 0;
    padding: 0;
   box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; 
	  line-height: 1.6; 
		color: #2c3e50; 
	    background: #f8f9fa;
}

.navbar    {
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
         top: 0;
    z-index: 100;
}

.navbar-container {
   max-width: 1200px;
	margin: 0 auto;
   padding     : 1rem 2rem;
  display: flex;
   justify-content   :  space-between;
    align-items   :center;
}

.navbar-logo img {
  height   :       60px;
  width: auto;
	display: block;
}

.nav-menu {
   display: flex;
   list-style: none;
   gap: 2rem;
}

.nav-menu a {
        text-decoration: none;
   color: #2c3e50;
    font-weight     :       500;
          transition: color 0.3s ease;
  font-size: 1rem;
}  

.nav-menu a:hover {
   color: #3498db;
}

.burger-toggle {

	  display: none;
   background: none;
    border: none;
  cursor: pointer;
  padding: 0.5rem;


}  

.burger-toggle img {
  width: 24px;
    height: 24px;
}@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 2rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .burger-toggle {
        display: block;
    }
}.hero-section {
   max-width: 1200px;
        margin: 0 auto;
  padding: 4rem 2rem;
   display: grid;
  grid-template-columns: 1fr 1fr;
        gap: 3rem;
   align-items:      center;
}

.hero-content h1 {
    font-size: 3rem;
       font-weight: 700;
   margin-bottom: 1rem;
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
	background-clip: text;
 line-height: 1.2;
}

.hero-content p {
  margin-bottom   :    2rem;
  color: #555;
    font-size: 1.1rem;
  line-height: 1.8;
}  

.cta-button	{
   display: inline-block; 
  padding: 1rem 2rem; 
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%); 
   color: white; 
    text-decoration: none; 
  border-radius: 8px; 
    font-weight: 600; 
    transition: all 0.3s ease; 
      border  :      none; 
               cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(52, 152, 219, 0.4);
}

.hero-image img  {
  width: 100%;
  height: auto;
   border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}.why-launchpad {
  background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
  padding: 4rem 2rem;
  max-width: 1200px;
    margin: 4rem auto;
    border-radius: 16px;
}

.section-header {
    text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
	font-size    :      2.5rem;
	margin-bottom: 1rem;
      color:      #2c3e50;
}

.section-header p  {
  font-size: 1.2rem;
  color  :        #555;
}

.features-grid     {
    display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
   gap: 2rem;
}

.feature-card {
      background: white;
    padding: 2rem;
   border-radius    :     12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition:        all 0.3s ease;
  border-left: 4px solid #3498db;


}

.feature-card:hover  {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-number {
   font-size: 2.5rem;
  font-weight: 700;
    color: #3498db;
   margin-bottom: 0.5rem;
	 opacity: 0.7;
}

.feature-card h3
{
          font-size    :      1.3rem;
	color: #2c3e50;
  margin-bottom: 1rem;
}

.feature-card p {
         color: #666;
    line-height: 1.7;
}

.coaching-methods {
    max-width: 1200px;
	 margin: 4rem auto;
	padding: 2rem;
}

.method-item {
   display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 3rem;
    align-items: center;
  margin-bottom: 4rem;
}

.method-item:nth-child(odd) {
  direction: ltr;
}

.method-item:nth-child(even) {
    direction: rtl;
}

.method-item:nth-child(even) > * {
   direction    : ltr;

}

.method-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.method-content h2 {
         font-size: 2rem; 
  margin-bottom: 1rem; 
	 color: #2c3e50;
}

.method-content p {
   font-size: 1rem;
   color: #555;
   margin-bottom: 1.5rem;
  line-height: 1.8;
}

.method-list  
  {
   list-style: none;
}

.method-list li {
    padding: 0.5rem 0;
	color: #555;
   position: relative;
   padding-left: 1.5rem;
}

.method-list li:before {
	  content: "→";
   position:     absolute;
    left: 0;
    color: #3498db;
   font-weight: bold;}@media (max-width: 768px) {
    .method-item {
        grid-template-columns: 1fr;
    }

    .method-item:nth-child(even) {
        direction: ltr;
    }

    .method-item:nth-child(even) > * {
        direction: ltr;
    }
}.planning-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
    padding: 4rem 2rem;
  max-width: 1200px;
  margin: 4rem auto;
    border-radius   :        16px;
  display: grid;
	grid-template-columns   :   1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.planning-image img


{
    width: 100%;
    border-radius  :     12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.planning-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
    color: #2c3e50;
}

.planning-content p {


  color: #555;
	 margin-bottom: 2rem;
	line-height: 1.8;

} 

.planning-features
	{


	display     :        grid; 
    gap: 1.5rem;

}


.planning-feature {
  background: white;
  padding: 1.5rem;
   border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-title {

	    color: #3498db;

   font-weight   : 600;

 margin-bottom   :  0.5rem;

      display: block;

}

.planning-feature p {
	    color: #666; 
   font-size: 0.95rem; 
	margin    :    0;}@media (max-width: 768px) {
    .planning-section {
        grid-template-columns: 1fr;
    }
}.consulting-highlight {
	max-width: 1200px;
   margin: 4rem auto;
  padding  :  2rem;
    display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 3rem;
    align-items: center;
     }

.consulting-content h2 {
    font-size: 2rem;
       margin-bottom: 1rem;
   color: #2c3e50;
}

.consulting-content p {
   color: #555;
   margin-bottom: 2rem;
  line-height: 1.8;
   font-size:   1rem;
}

.secondary-cta {
  display    :  inline-block;

   padding: 0.9rem 1.8rem;

   background: white;

  color     :    #3498db;

      text-decoration: none;

    border-radius: 8px;

  font-weight: 600;

   border: 2px solid #3498db;

   transition: all 0.3s ease;

   cursor: pointer;
}

.secondary-cta:hover {
               background: #3498db;
    color: white;
  transform: translateY(-2px);
} 

.consulting-image img {
	    width: 100%;
   border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	}@media (max-width: 768px) {
    .consulting-highlight {
        grid-template-columns: 1fr;
    }
}.workshop-section {
  background: linear-gradient(135deg, #e8f4f8 0%, #d4e9f1 100%);
        max-width: 1200px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    border-radius: 16px;
	display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 3rem;
   align-items     : center;
}

.workshop-image img {
  width   :   100%;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.workshop-content h2 {
    font-size: 2rem;
   margin-bottom: 1rem;
  color: #2c3e50;
	
}

.workshop-content p   {
    color   :  #555;
   margin-bottom: 2rem;
   line-height: 1.8;
}

.webinar-list 
 {
   display: grid;
  grid-template-columns: 1fr 1fr;
	 gap: 1rem;
}

.webinar-item {
         background  : white;
               padding: 1rem 1.5rem;
   border-radius: 8px;
   border-left: 3px solid #3498db;
  color: #555;
	 font-weight: 500;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
   transition: all 0.3s ease;
}

.webinar-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.2);
}@media (max-width: 768px) {
    .workshop-section {
        grid-template-columns: 1fr;
    }

    .webinar-list {
        grid-template-columns: 1fr;
    }
}.transformation-stories {
   padding: 2rem;
        margin: 4rem auto;
  max-width: 1200px;
}

.transformation-stories h2 {
   text-align    :     center;
    color: #2c3e50;
               font-size :    2.5rem;
   margin-bottom: 1rem;
	}

.section-subtitle {
  text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.stories-grid {
     display:   grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.story-card 
 {
  background: white;
  padding: 2rem;
   border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #3498db;
  transition: all 0.3s ease;
}

.story-card:hover

{

  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.story-card h3 {
  color: #2c3e50;
    margin-bottom   :     0.5rem;
   font-size     :      1.2rem;
}

.story-result {
               color: #3498db;
   font-weight: 600;
   margin-bottom: 1rem;
	 font-size: 0.95rem;}

.story-text {

	        font-size: 0.95rem;
  line-height: 1.7;
   color: #666;
}


.cta-section {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color:  white;
                    text-align: center;
    padding: 4rem 2rem;
  margin: 4rem 0;
  border-radius: 16px;
    max-width: 1200px;
   margin-left: auto;
   margin-right: auto;
}

.cta-section h2 {
	   font-size: 2.2rem;
  margin-bottom: 1rem;
	}

.cta-section p {
       font-size: 1.1rem;
    margin-bottom: 2rem;
  opacity: 0.95;
}

.primary-cta {
  display: inline-block;
	padding: 1rem 2.5rem;
  background: white;
  color: #3498db;
        text-decoration: none;
  border-radius: 8px;
    font-weight     :   600;
	transition: all 0.3s ease;
   border: none;
  cursor: pointer;
}

.primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.contact-section {
   max-width: 1200px;
  margin: 4rem auto;
	padding: 3rem 2rem;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border-radius: 16px;
}

.contact-container h2 {

    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2rem;
  color: #2c3e50;
}

.contact-form {
    max-width: 600px;
  margin  :   0 auto;
    display  :    grid;
  gap: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 1rem;
    border: 2px solid #ddd;
  border-radius: 8px;
   font-family: inherit;
    font-size: 1rem;
   transition  :  border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
	border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.submit-btn {
               padding: 1rem 2rem;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
	border   :       none;
   border-radius: 8px;
    font-weight: 600;
  font-size: 1rem;
     cursor  :      pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
     transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(52, 152, 219, 0.4);}

.footer-section {
  background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    color     :white;
   padding: 3rem 2rem 1rem;
	margin-top: 4rem;
}

.footer-container {
   max-width: 1200px;
   margin: 0 auto;
}

.footer-logo {
   margin-bottom: 2rem;
}

.footer-logo-img {
  height:     96px;
  width   :        auto;
    display: block;
  filter: brightness(0) invert(1);
}

.footer-info {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
    margin-bottom: 2rem; 

}

.footer-column h4     {
  margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-column p {
	color: #bbb;
  font-size: 0.95rem;
  line-height: 1.7;


}

.footer-links   {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #bbb;
    font-size :0.95rem;
  transition     :        color 0.3s ease;
  text-decoration: none;
}

.footer-links a:hover {
    color: #3498db;
}

.footer-bottom  
  {
    text-align: center;
    border-top: 1px solid #444;
  padding-top: 2rem;
  color: #999;
    font-size: 0.9rem;
}@media (max-width: 768px) {
    .footer-info {
        grid-template-columns: 1fr;
    }
}.cookies-banner {
    position: fixed;

	  bottom     :     0;

	    left: 0;

	    right   :     0;

	  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);

	    color  :     white;

	  padding   :        1.5rem;

	  z-index: 999;

	  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);

	    display: none;
}

.cookies-banner.show 
 {
    display   :    block;
                    animation  :      slideUp 0.3s ease;
}@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}.cookies-content {
  max-width: 1200px;
   margin: 0 auto;
    display: grid;
   grid-template-columns: 1fr auto;
   gap     :     2rem;
  align-items  :   center;
}

.cookies-text h3 {
       margin-bottom: 0.5rem;
  font-size    :        1rem; 
	
}

.cookies-text p {
    font-size: 0.9rem;

	    color: #ddd;

	  line-height:   1.5;
}

.cookies-buttons{
  gap    :       1rem;
    display: flex;
}

.cookies-btn


{
    padding: 0.7rem 1.2rem;
  border: none;
	 border-radius: 6px;
	font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
   font-size: 0.9rem;
}

.cookies-btn.accept {


   background: #3498db;
  color: white;
     }

.cookies-btn.accept:hover {
 background: #2980b9;
}

.cookies-btn.reject {


   background: transparent;
    color: white;
  border: 1px solid white;
	}

.cookies-btn.reject:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cookies-btn.settings {
       background    :   transparent;
  color: #3498db;
	border: 1px solid #3498db;
}

.cookies-btn.settings:hover  
  {
	  background: rgba(52, 152, 219, 0.1);

}@media (max-width: 768px) {
    .cookies-content {
        grid-template-columns: 1fr;
    }

    .cookies-buttons {
        flex-direction: column;
    }

    .cookies-btn {
        width: 100%;
    }
}.gdpr-modal {
	position:      fixed;
	 top  :        0;
          left: 0;
  right  :0;
   bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display :  none;
  justify-content: center;
   align-items: center;
  z-index: 1000;
	
}  

.gdpr-modal.show {
  display: flex;
   animation: fadeIn 0.3s ease;
}@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}.gdpr-content {
	background    :        white;
	 padding: 2rem;
   border-radius: 12px;
	max-width: 500px;
    width: 90%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.gdpr-content h2 {
 color: #2c3e50;
   margin-bottom: 1.5rem;
  font-size     :        1.5rem;
}

.gdpr-options {
     margin-bottom: 2rem;
} 

.gdpr-checkbox {
   display :      flex;
	   align-items: center;
	  margin-bottom     : 1rem;
	   cursor: pointer;
	  color: #555;
}

.gdpr-checkbox input {
         margin-right:        1rem;

	cursor: pointer;

    width: 18px;

   height: 18px;
}

.gdpr-checkbox input:disabled {
  cursor: not-allowed;
   opacity: 0.5;
} 

.gdpr-buttons {
    display: grid;
    grid-template-columns :   1fr 1fr;
  gap: 1rem;
}

.gdpr-save

{
      padding: 0.8rem 1.5rem;
   background: #3498db;
   color: white;
  border: none;
	border-radius   :        6px;
  font-weight    :  600;
    cursor: pointer;
  transition: all 0.3s ease;}

.gdpr-save:hover {
    background: #2980b9;

}

.gdpr-close {
	 padding   :   0.8rem 1.5rem;
    background  :        #ecf0f1;
    color   :      #2c3e50;
    border: none;
  border-radius: 6px;
    font-weight :    600;
  cursor   :    pointer;
    transition: all 0.3s ease;
}

.gdpr-close:hover {


  background: #d5dbdb;
	
	}

.services-hero {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
   text-align: center;
    padding: 5rem 2rem;
  margin-top: 60px;
}

.services-hero-content h1   {
  font-weight: 700;
   font-size: 3rem;
    margin-bottom: 1rem;
}

.services-hero-content p   {
          font-size: 1.2rem;
   max-width: 800px;
	margin: 0 auto;
          opacity: 0.95;
     line-height   :1.7;
}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .services-hero-content p {
        font-size: 1rem;
    }

    .services-hero {
        padding: 3rem 1rem;
    }
}.services-grid {


       max-width: 1200px;
    margin: 4rem auto;
        padding: 2rem;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.service-item {
   background: white;
  border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
   display: flex;
	flex-direction: column; 
	
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.service-image {
  height     : 250px;

	    overflow: hidden;
}

.service-image img {
    width: 100%;
  height: 100%;
  object-fit     :     cover;
    transition: transform 0.3s ease;
}


.service-item:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
		 padding: 2rem; 
	    flex-grow   :1; 
	  display: flex; 
	   flex-direction   :    column;
}

.service-content h2 {
   font-size: 1.5rem;
  color   :   #2c3e50;
  margin-bottom: 0.5rem;
}

.service-price {
  font-size: 1.3rem;
   color: #3498db;
  font-weight: 700;
    margin-bottom: 1rem;
}

.service-description     {

   color: #666;
    margin-bottom: 1.5rem;
       line-height: 1.7;
  flex-grow: 1; 
	
	}

.service-features {
  margin-bottom    :     1.5rem;
	 list-style: none;
}

.service-features li {
   padding: 0.5rem 0;
  color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li:before  
  {
  content: "✓";
               position: absolute;
          left: 0;
  color: #27ae60;
    font-weight: bold;
}

.service-btn {
	   display     : inline-block;
	padding: 0.9rem 1.8rem;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
 color: white;
   text-decoration: none;
   border-radius: 6px;
    font-weight: 600;
   text-align: center;
   transition: all 0.3s ease;
   border: none;
   cursor: pointer;
  margin-top: auto;
     }

.service-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(52, 152, 219, 0.4);
}@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
}.service-comparison {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
  border-radius: 12px;
}

.service-comparison h2 {
	font-size: 2.2rem;
    text-align: center;
  margin-bottom: 2rem;
    color: #2c3e50;
}

.comparison-table {
	 display: grid;
   gap: 0;
  background: white;
		 border-radius: 8px;
   overflow   :      hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}



.comparison-row {
    display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom    :1px solid #ecf0f1;
}

.comparison-row:last-child 
 {
   border-bottom: none;
}

.comparison-row.header-row {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    font-weight: 700;
}

.comparison-cell {
   padding: 1.2rem;
     border-right: 1px solid #ecf0f1;
       display: flex;
  align-items: center;
	justify-content: center;
    text-align: center;
}  

.comparison-cell:last-child {

	  border-right: none;
	}

.comparison-row.header-row .comparison-cell 
 {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: none;
}

.comparison-row.header-row .comparison-cell:last-child {
  border-right: none;
}

.comparison-row:nth-child(even){
   background: #f8f9fa;
}
@media (max-width: 768px) {
    .comparison-row {
        grid-template-columns: 1fr;
    }

    .comparison-cell {
        border-right: none;
        border-bottom: 1px solid #ecf0f1;
        text-align: left;
    }

    .comparison-cell:last-child {
        border-bottom: none;
    }

    .comparison-row.header-row .comparison-cell {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
}.service-details {
    max-width: 1200px;
   margin: 4rem auto;
  padding: 2rem;

}

.service-details h2 {
    font-size     : 2.2rem;
   text-align:center;
  margin-bottom: 3rem;
   color: #2c3e50;
	
}

.details-grid {

    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
     }

.detail-card {
   background  :    white;
       padding: 2rem;
    border-radius: 12px;
   text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
	
} 

.detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.detail-number {
  font-size: 2.5rem;
   color: #3498db;
   font-weight: 700;
    margin-bottom: 1rem;

}

.detail-card h3 {
    font-size: 1.2rem;
   margin-bottom: 1rem;
                    color: #2c3e50;

}

.detail-card p {
   color: #666;
    line-height:   1.7;
}

.faq-section {
    max-width: 1200px;
	 margin: 4rem auto;
  padding:    2rem;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border-radius:        12px; 

}

.faq-section h2 
 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #2c3e50;
}  

.faq-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	 gap: 2rem;
}

.faq-item {
   background: white;
    padding:     1.8rem;
   border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
               border-left: 4px solid #3498db;
}

.faq-item h3 {
    font-size:       1.1rem;
   color  :     #2c3e50;
   margin-bottom   :   1rem;
}

.faq-item p {

  font-size: 0.95rem;
    line-height: 1.7;
  color: #666;


}@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}.thankyou-section {
	  min-height: calc(100vh - 60px);
    display: flex;
   align-items: center;
    justify-content: center;
    padding   :        2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
}

.thankyou-container {
  background: white;
       padding     :  3rem 2rem;
  border-radius   :16px;
  max-width: 700px;
  width:      100%;
   text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.thankyou-icon {
   width: 100px;
          height   :100px;
    margin: 0 auto 2rem;
  animation: scaleIn 0.6s ease;
}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-icon svg {
   width  :    100%;
       height: 100%;
}

.thankyou-container h1 {
   font-size: 2.5rem;
    color: #2c3e50;
       margin-bottom: 0.5rem;
}

.thankyou-subtitle {


   font-size :       1.2rem;
  color    :       #3498db;
          margin-bottom: 2rem;
   font-weight: 600;


}

.thankyou-message  
  {
	 background: #f8f9fa;
	 padding: 2rem;
   border-radius: 8px;
	margin-bottom: 2rem;
				 border-left :        4px solid #3498db;
}

.thankyou-message p {
  margin-bottom: 1rem;
  line-height: 1.8;
        color  :    #555;
}

.thankyou-message p:last-child {
  margin-bottom: 0;
}

.thankyou-message strong {
    color: #3498db;
}

.thankyou-actions {
	   display: flex;
					gap: 1rem;
   margin-bottom     :  2rem;
	 flex-wrap: wrap;
    justify-content: center;}

.action-btn {


    padding: 1rem 2rem;
    text-decoration: none;
  -o-transition:     all 0.3s ease;
   border-radius: 8px;
	-moz-transition: all 0.3s ease;
    font-weight: 600;
	 transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    border:    none;
	 cursor: pointer;
    flex    :   1;
   min-width:      200px;}  

.primary-action {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
	color: white;
}

.primary-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(52, 152, 219, 0.4); 
	
}

.secondary-action {

  background: white;
       color :        #3498db;
	border: 2px solid #3498db;}

.secondary-action:hover {
  background:        #f8f9fa;
}

.thankyou-follow-up {
   margin-bottom: 3rem;
   text-align: left;
}

.thankyou-follow-up h3 {
          margin-bottom: 1.5rem;
    color: #2c3e50;
    font-size: 1.5rem;
  text-align   :center;
}

.follow-up-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
	}

.follow-up-item    {
          background   :        #f8f9fa;
      padding: 1.5rem;
   border-radius     :  8px;
    border-top:   3px solid #3498db;
       text-align    :       center;
}

.follow-up-number {


    font-size: 2rem;
  color:     #3498db;
   font-weight: 700;
  margin-bottom: 0.5rem;
}

.follow-up-item h4 {
    font-size: 0.95rem;
  color: #2c3e50;
   margin-bottom: 0.5rem;
}

.follow-up-item p

{
         font-size: 0.85rem;
         color: #666;
   line-height   : 1.6;
}

.thankyou-resources {
  margin-bottom: 2rem;
	   text-align: left;
}

.thankyou-resources h3 {
   	 font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
   text-align: center;
}

.resources-grid    {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;

}

.resource-card {
  background: linear-gradient(135deg, #e8f4f8 0%, #d4e9f1 100%);
   padding: 1.5rem;
		 border-radius: 8px;
  text-align: center; 

}

.resource-card h4	{
   font-size :    1rem;
   color     :  #2c3e50;
  margin-bottom: 0.7rem; 
	
}

.resource-card p {
    font-size  : 0.9rem; 
	        color: #666; 
	    margin-bottom   :1rem; 
	   line-height: 1.6;
}

.resource-link
{
    display: inline-block;
   padding: 0.6rem 1.2rem;
   background: #3498db;
    color: white;
  text-decoration: none;
	border-radius:       6px;
        font-weight: 600;
   font-size     :        0.9rem;
   transition: all 0.3s ease;
}

.resource-link:hover
	{
  background: #2980b9;
}

.contact-info-small    {
   padding-top: 2rem;
    border-top: 1px solid #ddd;
    color:       #666;
} 

.contact-info-small p   {
  margin: 0;
}

.next-steps {
    max-width: 1200px;
    margin     :        3rem auto;
  padding :        3rem 2rem;
}

.next-steps h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  color: #2c3e50;
  font-size: 2rem;
}

.steps-container {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
}

.step {
	text-align: center; 
	  padding: 2rem; 
	    background: white; 
	         border-radius: 12px; 
	  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); 
	  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.step-icon {

   font-size: 3rem;
    margin-bottom: 1rem;
  display    :   block;

}

.step h3 {
   font-size: 1.2rem;
   color: #2c3e50;
   margin-bottom: 1rem;
}

.step p {

  font-size: 0.95rem;
      line-height: 1.7;
      color  :      #666;

}@media (max-width: 768px) {
    .thankyou-container {
        padding: 2rem 1rem;
    }

    .thankyou-container h1 {
        font-size: 1.8rem;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .action-btn {
        min-width: auto;
        width: 100%;
    }

    .next-steps {
        padding: 2rem 1rem;
    }
}.policySection {
  padding: 80px 2rem;
  background: #f8f9fa;
  min-height: calc(100vh - 60px);
   margin-top: 60px;
}

.policyContainer {
  max-width: 900px;
    margin: 0 auto;
   text-align: left;
    background: white;
       padding: 3rem;
    border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.policyContainer h2   {
	font-size: 2.5rem;
   color: #2c3e50;
   margin-bottom    :  2rem;
	font-weight: 700;
   padding-bottom: 1rem;
   border-bottom    : 3px solid #3498db;
}

.policyContainer h3 {
	font-size: 1.5rem;
	color: #2c3e50;
 margin-top: 2rem;
               margin-bottom   :     1rem;
          font-weight: 600;


}

.policyContainer p     {
   color: #555;
    margin-bottom: 1.5rem;
  line-height: 1.8;
    font-size: 1rem;
   text-align: justify;
}

.policyContainer p:first-child {
   font-size: 1.1rem;
  background: #f0f4f8;
   padding: 1.5rem;
   border-left: 4px solid #3498db;
    border-radius: 4px;
   margin-bottom: 2rem;
        font-style: italic;
  color: #666;
	
}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        padding-bottom: 0.8rem;
    }

    .policyContainer h3 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        text-align: left;
    }

    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer {
        padding: 2rem 1rem;
    }

    .policyContainer p:first-child {
        font-size: 1rem;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 50px 0.5rem;
    }

    .policyContainer {
        padding: 1.5rem 0.8rem;
        border-radius: 8px;
    }

    .policyContainer h2 {
        font-size: 1.7rem;
        margin-bottom: 1rem;
    }

    .policyContainer h3 {
        font-size: 1.1rem;
        margin-top: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.7;
    }
}