* {


  margin: 0;
   padding: 0;
	 box-sizing    : border-box;
	}

html   {
     scroll-behavior: smooth;
}

body {

  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
  line-height:        1.6;
    color: #2c3e50;
  background-color: #fff;


}

img{
    max-width  :100%;
   height: auto;
   display: block;
}

a {
       text-decoration: none;

	  color: inherit;

	    transition: all 0.3s ease; 
	
}

.navbar {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
	    padding: 1rem 0;
		 position: sticky;
	   top: 0;
	  z-index     :    1000;
	  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
	        max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
    justify-content: space-between;
   align-items: center;
     }

.nav-logo img		{

	   height     : 74px;
      width: auto;
  filter: brightness(0) invert(1); 
	
	}

.nav-burger {

   display: none;
 flex-direction: column;
  background: none;
  border: none;
    cursor: pointer;
    gap: 5px;

}

.burger-line {
  width: 25px;
  border-radius: 2px;
   background: #fff;
    transition: all 0.3s ease;
  height: 3px;
}

.nav-menu {
   display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: #fff; 
   font-weight: 500; 
  padding  : 0.5rem 0; 
   border-bottom :        2px solid transparent; 
   transition :  border-color 0.3s ease;
}

.nav-link:hover {

      border-bottom-color   :  #3498db;

}  

.hero {
  max-width: 1200px;
    display: grid;
  padding: 6rem 20px;
	grid-template-columns: 1fr 1fr;
   gap: 3rem;
  align-items     :       center;
    margin: 0 auto;
}

.hero-content h1 {
   font-size: 3.5rem;
   font-weight     : 700;
  line-height :    1.2;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

.hero-subtitle {
    font-size: 1.3rem;
   color: #555;
   margin-bottom :  2rem;
}

.hero-cta {
       display  :  inline-block;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color   :     #fff;
    padding: 1rem 2.5rem;
	border-radius: 50px;
   font-weight: 600;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.hero-cta:hover {


  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);}

.hero-img {
    border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.features-intro {
    max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 20px;
}

.features-intro h2   {
   	 font-size: 2.8rem;
    text-align: center;
  margin-bottom: 4rem;
	color   : #2c3e50;

}



.features-grid {
  grid-template-columns: repeat(3, 1fr);
          display: grid;
	gap: 2rem;
}

.feature-card {

	    background: #f8f9fa;
   padding :2.5rem;
	border-radius: 12px;
  border-left: 4px solid #3498db;
    transition: all 0.3s ease;

}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-number {
   font-size: 2.5rem;
   font-weight: 700;
  color: #3498db;
    margin-bottom: 1rem;
}  

.feature-card h3 {
	 font-size: 1.5rem;
  margin-bottom: 1rem;
   color: #2c3e50;
}

.feature-card p {
   color: #666;
     line-height: 1.8;
}

.services-preview {
	background: #ecf0f1;
    padding: 5rem 20px;
    margin     :    2rem 0;
}

.services-wrapper {
  max-width:   1200px;
   margin: 0 auto;
   display: grid;
        grid-template-columns: 1fr 1fr;
   gap    :    3rem;
    align-items: center;
}

.services-img {
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.services-content h2 {
  font-size: 2.5rem;
    color  :      #2c3e50;
   margin-bottom: 0.5rem;
}

.services-content h3 {
   font-size: 1.8rem;
    color: #3498db;
    margin-bottom: 1.5rem;
  font-weight: 600;

}

.services-content p {

    color    :      #555;
  margin-bottom: 1.5rem;
    line-height: 1.8;


}

.services-list {
    list-style: none; 
	    margin-bottom: 2rem; 
	
}

.services-list li {
    padding-left: 1.5rem;
	margin-bottom: 0.8rem;
					color: #444;
  position: relative;
}

.services-list li:before {
  content: "→";
    position: absolute;
  left: 0;
  color: #3498db;
  font-weight: bold;
	
}

.cta-button {
   display: inline-block;
  background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
   color: #fff;
  padding: 0.9rem 2rem;
   border-radius: 8px;
  font-weight: 600;
	 transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
}

.webinars-section {
   margin :        0 auto;
    padding   :  5rem 20px;
					max-width: 1200px;
}

.webinars-section h2 {
    text-align   :    center;
    color: #2c3e50;
  margin-bottom: 1rem;
    font-size: 2.8rem;
}

.section-intro {
   text-align: center;
  font-size: 1.1rem;
    color: #666;
	margin-bottom    :       3rem;
	
}

.webinars-grid {
          gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
   display: grid;
}

.webinar-card {
  background  :  #fff;
  border   :   2px solid #ecf0f1;
      border-radius: 12px;
  padding: 2rem;
        transition: all 0.3s ease;
    position: relative;
   overflow: hidden;
}

.webinar-card:hover {


  border-color: #3498db;
  box-shadow: 0 10px 30px rgba(52, 152, 219, 0.2);

}

.webinar-badge

{
	  display: inline-block;
   background: #3498db;
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
   font-weight: 600;
	margin-bottom    :     1rem;
	
}

.webinar-card h3 {
	   font-size: 1.4rem;

	  margin-bottom :       1rem;

	     color: #2c3e50;}

.webinar-card p {
   color: #666;
   line-height: 1.7;
}

.conference-section {

	  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
    padding: 5rem 20px;
   margin: 2rem 0;

}

.conference-wrapper {
  max-width: 1200px;
         margin: 0 auto;
         display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 3rem;
  align-items: center;
}

.conference-content h2 {
   font-size: 2.5rem;
	color: #2c3e50;
   margin-bottom: 1.5rem;
}

.conference-content p {
	 color   :    #555;
  margin-bottom: 2rem;
    line-height: 1.8;
    font-size  :        1.05rem;
}

.conference-highlights {
	display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap   :1.5rem;
    margin: 2rem 0;
} 

.highlight  {
    background: #fff;
   padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.highlight-title {
	font-size: 2rem;
   font-weight: 700;
  color: #3498db;
   margin-bottom: 0.5rem;
}

.highlight p {

   color: #666;
    font-size: 0.95rem;


}

.conference-img {
    border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.cta-button-large {
   display: inline-block; 
	  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%); 
	    color: #fff; 
		padding:       1.1rem 2.5rem; 
	    border-radius    :       8px; 
	   font-weight: 600; 
	   transition: all 0.3s ease;
}

.cta-button-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(231, 76, 60, 0.3);
}

.coaching-benefits {
    max-width: 1200px;

	    margin: 0 auto;

	   padding: 5rem 20px;
	
}

.coaching-benefits h2 {
       font-size: 2.8rem;
   text-align: center;
   margin-bottom: 4rem;
  color: #2c3e50;
     }

.benefits-container {


  display: grid;
  grid-template-columns: repeat(2, 1fr);
       gap: 2.5rem;
     }

.benefit-item {
 background     :       #fff;
  padding: 2rem;
  border-radius  :12px;
	border-top: 4px solid #9b59b6;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
       transition:     all 0.3s ease;
}

.benefit-item:hover {

	  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}



.benefit-icon {


  font-size: 2.5rem;
  font-weight: 700;
	color: #9b59b6;
   margin-bottom: 1rem;}

.benefit-item h3 {
    font-size: 1.5rem;
    color: #2c3e50;
  margin-bottom: 1rem;
}

.benefit-item p {
     color: #666;
  line-height: 1.8;
	
	}

.consultation-cta		{
	  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   padding: 4rem 20px;
    text-align     : center;
  margin: 3rem 0;
	}

.cta-box {
    margin: 0 auto;
  max-width: 800px;
}

.cta-box h2 {
    font-size: 2.5rem;
  color: #fff;
    margin-bottom: 1rem;
}

.cta-box p {
     font-size:    1.2rem;
      color: #ecf0f1;
   	 margin-bottom: 2rem;
   	 line-height :      1.8;
}


.market-insight {
  padding: 5rem 20px;
   max-width: 1200px;
    margin: 0 auto;
}

.market-insight h2 {

   font-size: 2.8rem;
   text-align: center;
   margin-bottom: 4rem;
    color: #2c3e50; 
	
     }

.market-grid {
    display: grid;

	  grid-template-columns: repeat(3, 1fr);

	   gap: 2rem; 

}

.market-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.market-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.market-card-img
{
       width: 100%;
   height :    200px;
  object-fit: cover;

}

.market-card h3 {
	font-size: 1.4rem;
   padding: 1.5rem 1.5rem 0.5rem;
   color  :#2c3e50;
}

.market-card p {
 color     :  #666;
   padding: 0 1.5rem 1.5rem;
  line-height: 1.7;
}

.contact-section {
   background: #f8f9fa;
    padding: 5rem 20px;
   margin   :        3rem 0;
}

.contact-section h2 {
	                    font-size    : 2.5rem;
    text-align: center;
   color: #2c3e50;
  margin-bottom: 1rem;
	}

.contact-intro {
   text-align: center;
    margin-left: auto;
 color  :      #666;
   max-width: 600px;
   margin-bottom: 3rem;
    font-size: 1.05rem;
   margin-right  :        auto;
}

.contact-form {
  max-width: 700px;
   margin: 0 auto;
    background: #fff;
	padding: 2.5rem;
    border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-group

{
  margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
   margin-bottom: 0.5rem;
   color: #2c3e50;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
	          width: 100%;
   padding: 0.8rem;
  -moz-border-radius: 6px;
	border: 2px solid #ecf0f1;
    -webkit-border-radius   : 6px;
    border-radius: 6px;
	font-family: inherit;
   font-size :        1rem;
   transition: border-color 0.3s ease;
	}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus  {
      outline: none;
  border-color: #3498db;
}

.form-group textarea {
	resize: vertical;
}

.submit-button {
    width: 100%;
   padding    : 1rem;
  background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #fff;
      border: none;
		border-radius: 6px;
      font-weight: 600;
    cursor: pointer;
  transition: all 0.3s ease;
   font-size: 1rem;
}



.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
}

.footer {
    background: #2c3e50;
  color: #ecf0f1;
    padding: 3rem 20px 1rem;
   margin-top: 5rem;
}

.footer-container

{
   margin-bottom: 2rem;
    margin: 0 auto;
   gap: 2rem;
   max-width: 1200px;
   display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.footer-column h4 {
  color   :#fff;
  margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-logo {
    height: 96px;
  width     : auto;
  filter: brightness(0) invert(1);
}

.footer-links {
   list-style: none;
}

.footer-links li {
  margin-bottom: 0.7rem;
}

.footer-links a {

                    color: #bdc3c7;

  transition: color 0.3s ease;
     }

.footer-links a:hover{
   color: #3498db;
}

.footer-column p {
        line-height: 1.8;
  color: #bdc3c7;
  margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;

	  padding-top: 2rem;

	   border-top     :      1px solid #34495e;

	   color: #95a5a6;

}

.cookie-alert {
			position: fixed;
    bottom:  0;
    left: 0;
   right   :   0;
    background:      #2c3e50;
   color: #fff;
	 padding: 1.5rem;
    display: none;
   z-index: 999;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.cookie-alert.active {


    display: block; 
	


}

.cookie-content {
    max-width: 1200px;
   margin   :       0 auto;
    display: flex;
  justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
	  flex: 1;
   line-height: 1.6;
   color: #bdc3c7;


}

.cookie-buttons {
  white-space: nowrap;
			gap: 1rem;
  display: flex;
}

.cookie-btn-accept,
.cookie-btn-reject,
.cookie-btn-settings {

	    padding: 0.7rem 1.5rem;
  border:   none;
  border-radius: 6px;
  cursor: pointer;
	font-weight   : 600;
    transition    :    all 0.3s ease;
    font-size: 0.95rem;}

.cookie-btn-accept {
    background: #27ae60;
  color: #fff;
}

.cookie-btn-accept:hover {

	  background     :#229954;
	}

.cookie-btn-reject {
	 background: transparent;
      color: #bdc3c7;
  border: 1px solid #bdc3c7;
}

.cookie-btn-reject:hover {
   color: #fff;
  border-color:  #fff;

}

.cookie-btn-settings {
          background: #3498db;
   color:       #fff;
}

.cookie-btn-settings:hover {
   background: #2980b9;
}

.cookie-modal {
 position: fixed;
    top: 0;
  left: 0;
   right: 0;
    bottom: 0;
  background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.cookie-modal.active {
    display: flex;
}

.modal-content {
		background: #fff;
  padding:    2rem;
   border-radius: 12px;
  max-width: 500px;
    width: 90%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.modal-content h3   {

  color:#2c3e50;
  margin-bottom: 1.5rem;
   font-size: 1.5rem;
     }

.cookie-options {
   margin-bottom: 2rem;
}

.cookie-option {
   display   :  flex;
  align-items     :   center;
  margin-bottom: 1rem;
  cursor: pointer;
    color: #2c3e50; 

}

.cookie-option input {
	 margin-right: 0.8rem;
    cursor: pointer;
    width :   18px;
    height: 18px;
}

.modal-buttons {
  display: flex;
   gap: 1rem;

     }

.modal-btn-save,
.modal-btn-close {
   flex: 1;
	 padding: 0.8rem;
    border     :     none;
    border-radius  : 6px;
    cursor: pointer;
   font-weight: 600;
  transition: all 0.3s ease;
}

.modal-btn-save {
    background: #27ae60;
   color: #fff; 
	
}

.modal-btn-save:hover     {

   background:     #229954;
	}

.modal-btn-close {
         background: #ecf0f1;
	 color: #2c3e50;
}

.modal-btn-close:hover		{
   background: #bdc3c7;
}@media (max-width: 768px) {
    .nav-burger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #2c3e50;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 300px;
        padding: 1rem 0;
    }

    .nav-item {
        padding: 0;
    }

    .nav-link {
        display: block;
        padding: 0.8rem 20px;
        border-bottom: none;
    }

    .nav-link:hover {
        background: #34495e;
        border-bottom: none;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 3rem 20px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .features-grid,
    .webinars-grid,
    .market-grid {
        grid-template-columns: 1fr;
    }

    .services-wrapper,
    .conference-wrapper {
        grid-template-columns: 1fr;
    }

    .benefits-container {
        grid-template-columns: 1fr;
    }

    .conference-highlights {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        flex-wrap: wrap;
        width: 100%;
    }

    .cookie-btn-accept,
    .cookie-btn-reject,
    .cookie-btn-settings {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .webinars-section h2,
    .features-intro h2,
    .coaching-benefits h2,
    .market-insight h2 {
        font-size: 2rem;
    }

    .feature-card,
    .webinar-card,
    .benefit-item {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .submit-button {
        padding: 0.8rem;
    }

    .modal-content {
        padding: 1.5rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding    :   4rem 20px;
   text-align: center;
   margin-top: 0;
    color: #fff;
}  

.services-hero-content h1 {

	font-size: 3rem;
    font-weight: 700;
	 margin-bottom: 1rem;
}

.services-hero-subtitle {
    margin: 0 auto;
    color: #ecf0f1;
    font-size: 1.3rem;
  max-width: 700px;
} 

.services-main{
 padding: 4rem 20px;
  background: #fff;
}


.services-container {
               max-width: 1000px;
               margin: 0 auto;
}

.service-card-large {
     background: #f8f9fa;
         border-radius: 12px;
    margin-bottom: 2.5rem;
   overflow  :   hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
          transition   :        all 0.3s ease;}

.service-card-large:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.service-card-header {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
	 color: #fff;
   padding: 1.5rem 2rem;
}

.service-card-header h2 {
   font-size     : 2rem;

    margin: 0;

   font-weight: 700;
}

.service-card-body  {
    padding  :2rem;
      display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 2rem;
         align-items    :      start;
}

.service-img {
	 border-radius: 10px; 
   max-height: 350px; 
  object-fit:    cover; 
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-details h3 {
  color: #2c3e50;
				 margin-top: 1.5rem;
   margin-bottom: 1rem;
  font-size   :  1.2rem;
}

.service-description {
    color: #555;
    line-height: 1.8;
  margin-bottom: 1rem;
}

.service-features {
   list-style   :  none;
        margin-bottom  :        1.5rem;
	}


.service-features li {
         margin-bottom: 0.7rem;
   color: #444;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
   color: #27ae60;
  font-weight: bold;
    font-size: 1.1rem;
}

.price-tag {
  background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
  padding   :       1.5rem;
  border-radius: 8px;
  border-left: 4px solid #27ae60;
}

.price-label {
   display: block;
   color: #666;
   font-size :   0.9rem;
    margin-bottom: 0.3rem;
}

.price-value {
    display: block;

	    font-size   :  2rem;

	    font-weight: 700;

	    color: #27ae60;

		margin-bottom: 0.3rem;
}

.price-period {
   display: block;
   color: #999;
   font-size: 0.95rem;
}

.service-packages {
     background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
                    padding:5rem 20px;
	}


.service-packages h2   {
             font-size:  2.8rem;
  text-align: center;
  color: #2c3e50;
	margin-bottom: 1rem;

}

.packages-intro
	{
    text-align: center;
  color: #666;
  margin-bottom     : 3rem;
  font-size: 1.1rem;
	}

.packages-grid		{
  max-width: 1200px;
   margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
       gap: 2rem;
}

.package-card {
  background: #fff;
 border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
  position: relative;
 display: flex;
  flex-direction: column;


}

.package-card:hover		{
  transform: translateY(-10px); 
	  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);}

.package-card.featured  
  {
        border: 3px solid #3498db;
  transform: scale(1.05);
	
}

.package-badge {
       position: absolute;
   top    :       10px;
   right: 10px;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
					color: #fff;
   padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
                    font-weight: 600;}

.package-header {
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
  color: #fff;
	padding: 2rem;
  text-align: center;
}

.package-header h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.package-price {
        font-size: 2.5rem;
    font-weight: 700;
                    margin: 0;
}

.package-price span {
     font-size: 1rem;

   color: #bdc3c7;

  display: block;

}

.package-content {
   padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.package-features {
   list-style: none;
   margin-bottom: 2rem;
  flex: 1;
}

.package-features li {
	     padding-left: 1.5rem;
   margin-bottom: 0.8rem;
  color: #555;
         position: relative;
	}

.package-features li:before {
  content: "→";
  position: absolute;
		left: 0;
    color: #3498db;
   font-weight: bold;
}

.package-btn {
  background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
  color: #fff;
    border: none;
  padding: 1rem;
	 border-radius: 6px;
   cursor: pointer;
  font-weight: 600;
	transition: all 0.3s ease; 
	
}

.package-btn:hover	{
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
}

.package-btn.featured-btn {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
	
}

.package-btn.featured-btn:hover {
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.service-process {
	    max-width : 1200px;

	margin: 0 auto;

  padding: 5rem 20px;
}

.service-process h2  {
   font-size: 2.8rem;
    text-align: center;
    color: #2c3e50;
  margin-bottom: 4rem;
}

.process-timeline {
   display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative; 

}

.process-timeline:before {


  content: '';
    position: absolute;
  top :   40px;
    left: 0;
   right: 0;
   height: 2px;
  background: linear-gradient(90deg, #3498db 0%, #9b59b6 50%, #e74c3c 100%);
    z-index   :  -1;

}

.process-step {
	background: #fff;
  padding:   2rem;
    border-radius    :12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition :     all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-number{
       width   :   80px;
  height: 80px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   color: #fff;
  border-radius: 50%;
   display: flex;
  align-items: center;
   justify-content: center;
   font-size: 2rem;
	font-weight     :  700;
    margin: 0 auto 1.5rem;
     }  

.process-step h3 {
	   font-size: 1.3rem;
	 color :    #2c3e50;
   margin-bottom: 1rem;
}

.process-step p	{
  color: #666;
    line-height: 1.7;
}

.service-faq {
    background    :   #f8f9fa;
  padding: 5rem 20px;
}

.service-faq h2 {
  font-size: 2.8rem; 
	   text-align: center; 
	   color :       #2c3e50; 
	   margin-bottom: 3rem;
}

.faq-container {
  max-width: 800px;
   margin: 0 auto;
}

.faq-item {
         background: #fff;
   margin-bottom: 1.5rem;
   border-radius: 8px;
	overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
   color: #fff;
    border :      none;
   padding: 1.5rem 2rem;
          text-align: left;
  font-size: 1.1rem;
				 font-weight     :        600;
   cursor  :        pointer;
   transition: all 0.3s ease;
   display: flex;
    justify-content: space-between;
	align-items: center;
}

.faq-question:hover {
  background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
}

.faq-question:after {
  content: '▼';
    transition: transform 0.3s ease; 
	
}

.faq-item.active .faq-question:after
	{
  transform: rotate(180deg);
}

.faq-answer	{
    max-height: 0;
      overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
   max-height: 500px; 

}

.faq-answer p     {
     padding: 2rem;
   color: #555;
    line-height: 1.8;
      margin: 0;
}

.service-cta     {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);

	padding: 4rem 20px;

  text-align: center;

    color: #fff;
}


.service-cta h2 {
   font-size: 2.5rem;
  margin-bottom  :    1rem;
}

.service-cta p {
  font-size: 1.2rem;
	color: #ecf0f1;
    margin-bottom: 2rem;
    max-width: 600px;
  margin-left: auto;
	margin-right :    auto;
}

.service-cta-btn {
   display: inline-block;
   background :       #fff;
         color: #3498db;
	 padding: 1rem 2.5rem;
    border-radius: 50px;
	 font-weight: 600;
  transition: all 0.3s ease;


}

.service-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.thankyou-section   {
    padding: 4rem 20px;
  min-height: calc(100vh - 400px);
}

.thankyou-container {
  max-width: 1000px;
  margin: 0 auto;
}

.thankyou-success {
  text-align:    center;
                    margin-bottom: 4rem;
    padding: 3rem;
  background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
		 border-radius: 12px;
  border-left   : 5px solid #27ae60; 

}

.success-icon {
	    width: 100px;
    height: 100px;
  background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
  color: #fff;
   border-radius     :    50%;
	display: flex;
    align-items: center;
  justify-content: center;
    font-size: 3.5rem;
   margin     :     0 auto 1.5rem;
    animation: bounce 0.6s ease-in-out;

}@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}.thankyou-success h1 {
   font-size: 2.5rem;
    color: #27ae60;
	margin-bottom: 1rem;
}

.success-message  
  {
               font-size: 1.2rem;
  color: #555;
   line-height: 1.8;
}

.thankyou-details {
   margin-bottom: 3rem;
}

.thankyou-details h2 {
  font-size    :       2rem;
    color: #2c3e50;
       margin-bottom: 2rem;
    text-align: center; 

}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.step {
         background   : #fff;
	padding: 2rem;
    border-radius: 10px;
    text-align :        center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition   :       all 0.3s ease; 

}

.step:hover		{
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.step-icon {
	 width :        60px;
   height: 60px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
	 color    :        #fff;
	border-radius: 50%;
        display: flex;
	align-items: center;
  justify-content: center;
   font-size :     1.8rem;
   font-weight: 700;
    margin: 0 auto 1rem;
} 

.step h3  {
   font-size: 1.3rem;
    color: #2c3e50;
  margin-bottom: 0.8rem;
}

.step p {
  color: #666;
	line-height: 1.7;
  font-size: 0.95rem;


}

.thankyou-info 
 {
               background: #f8f9fa;
	margin-bottom: 3rem;
   border-radius: 10px;
  padding: 2.5rem;
}

.thankyou-info h2 {
	 font-size: 2rem;
    color: #2c3e50;
	 margin-bottom: 2rem;
  text-align: center;
}

.info-box {
    background: #fff;
   padding: 1.5rem;
  border-radius: 8px;
	margin-bottom: 1.5rem;
  border-left: 4px solid #3498db;
}

.info-box h3 {
   color    :       #2c3e50;
	   margin-bottom: 0.8rem;
}

.info-box p {
    color: #666;
    line-height: 1.8; 

}

.help-list {
    list-style  :     none;


}

.help-list li	{

	  position: relative;
    color: #555;
  margin-bottom: 0.7rem;
   padding-left: 1.5rem;

}

.help-list li:before {
  content: "◆";
   position: absolute;
         left: 0;
    color: #3498db;
}  

.thankyou-actions {
  display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
     margin-bottom  : 3rem;
}

.btn-primary,
.btn-secondary {
    display: block;
    padding:      1.2rem 2rem;
    text-align: center;
  border-radius: 8px;
          font-weight: 600;
  transition: all 0.3s ease;
    text-decoration: none; 
	
}

.btn-primary {
  background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
   color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
}

.btn-secondary


{

  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: #fff;

}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.thankyou-faq {
  background: linear-gradient(135deg, #ecf0f1 0%, #f8f9fa 100%);
  padding:     2.5rem;
  border-radius: 10px;
}

.thankyou-faq h2 {
  font-size: 2rem;
   color: #2c3e50;
	 margin-bottom: 2rem;
    text-align: center;
}

.quick-faq {
 display: grid;
  grid-template-columns: repeat(2, 1fr);
     gap  :       2rem;
}

.quick-item  
  {
    background: #fff;
    padding   :  1.5rem;
    border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.quick-item h4 {
	color: #2c3e50;
	margin-bottom: 0.8rem;
  font-size: 1.05rem;
}  

.quick-item p    {
  color:      #666;
					line-height: 1.7;
    font-size: 0.95rem;
	
}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .service-card-body {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card.featured {
        transform: scale(1);
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-timeline:before {
        display: none;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .quick-faq {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .thankyou-actions {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 1.8rem;
    }

    .service-card-header h2 {
        font-size: 1.5rem;
    }

    .service-card-body {
        padding: 1.5rem;
    }

    .package-header h3 {
        font-size: 1.3rem;
    }

    .package-price {
        font-size: 2rem;
    }

    .thankyou-success h1 {
        font-size: 2rem;
    }

    .success-icon {
        width: 80px;
        height: 80px;
        font-size: 3rem;
    }

    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}.policySection {
	padding: 80px 2rem;
  background: #f8f9fa;
  min-height: calc(100vh - 300px);
}



.policyContainer {
    max-width    :        900px;
  margin: 0 auto;
    text-align    :    left;
   background: #fff;
   padding: 3rem;
         border-radius   :   12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
	/* Layout styles */
	/* State modifiers */

/* Colors and backgrounds */
.policyContainer h1 {
    font-size: 3rem;
  color:#2c3e50;
	margin-bottom:  2rem;
   font-weight: 700;
  border-bottom: 3px solid #3498db;
    padding-bottom: 1rem;
}

.policyContainer h2 {

	   font-size: 1.8rem;
   color: #2c3e50;
          margin-top: 2.5rem;
  margin-bottom:    1.5rem;
    font-weight: 700;
   color: #34495e;}

.policyContainer p {
    color: #555;
  margin-bottom: 1.5rem;
    line-height: 1.9;
   font-size: 1.05rem;
   text-align: justify;
}

.policyContainer ul {
    list-style: none;
   margin-bottom:  1.5rem;
   margin-left: 0;
}

.policyContainer li {
   padding-left: 1.5rem;
   margin-bottom: 0.8rem;
	 color: #555;
  position: relative;
    line-height  :  1.8;
}

.policyContainer li:before {

	  content: "●";
    position: absolute;
    left: 0;
                    color: #3498db;
	 font-weight: bold;

}

.policyContainer strong {
  color: #2c3e50;
  font-weight: 600;
}
@media (max-width: 1024px) {
    .policyContainer {
        padding: 2.5rem;
    }

    .policyContainer h1 {
        font-size: 2.5rem;
    }

    .policyContainer h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer {
        padding: 2rem;
        border-radius: 8px;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 2rem;
        margin-bottom: 1.2rem;
    }

    .policyContainer p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
        line-height: 1.8;
    }

    .policyContainer li {
        padding-left: 1.3rem;
        margin-bottom: 0.7rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 0.8rem;
    }

    .policyContainer {
        padding: 1.5rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .policyContainer h1 {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
        padding-bottom: 0.8rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        text-align: left;
        line-height: 1.7;
    }

    .policyContainer li {
        padding-left: 1.2rem;
        margin-bottom: 0.6rem;
        font-size: 0.95rem;
    }
}

@media print {
    .navbar,
    .footer {
        display: none;
    }

    .policySection {
        padding: 0;
        background: #fff;
    }

    .policyContainer {
        box-shadow: none;
        padding: 0;
    }

    .policyContainer h1,
    .policyContainer h2 {
        page-break-after: avoid;
    }

    .policyContainer p {
        page-break-inside: avoid;
    }
}