*{
         margin: 0;
	padding  :   0;
   box-sizing: border-box;


}

html {
  scroll-behavior    :   smooth;
}

body    {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height: 1.6;
    color: #333;
  background: #ffffff;
}  

.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 {
  display: flex; 
    justify-content  :    space-between; 
  align-items: center; 
          max-width: 1200px; 
	 margin: 0 auto; 
  padding : 0 2rem;
}

.nav-logo img {
   height: 64px;
    width: auto;
  filter: brightness(0) invert(1);
}

.nav-menu   {
	 display: flex;
  list-style: none;
    gap: 2rem;
}

.nav-link
	{

	  color: #ecf0f1; 
	         text-decoration: none; 
	  transition: all 0.3s ease; 
	   font-weight: 500; 
	   padding: 0.5rem 1rem;

}

.nav-link:hover {
   color: #3498db;
  transform: translateY(-2px);
}

.burger-menu {
    display: none;
   background: none;
  border: none;
   cursor: pointer;
   flex-direction: column;
  gap: 6px;
}

.burger-line {
	   width: 25px;

	   height: 3px;

		background: #ecf0f1;

	    transition: all 0.3s ease;

	    border-radius: 2px;}

.burger-menu.active .burger-line:nth-child(1) {

	  transform: rotate(45deg) translate(10px, 10px);
	}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3)     {
  transform: rotate(-45deg) translate(7px, -7px);
}

.hero {
	height: 600px;
  background: linear-gradient(rgba(44, 62, 80, 0.85), rgba(44, 62, 80, 0.85)), 
                url('backgrounds/corporate_responsibility_seminar_room.webp') center/cover;
	display: flex;
    align-items  :center;
   justify-content: center;
   text-align: center;
    color: white;
   position: relative;
    overflow: hidden;
}

.hero-content {
    z-index: 2;
   max-width: 700px;
    animation:    fadeInUp 0.8s ease;
}

.hero h1 {
  font-size: 3.5rem;
   margin-bottom: 1rem;
    line-height: 1.2;
 font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
               font-size: 1.3rem;
	margin-bottom: 2rem;
   opacity: 0.95;
}

.hero-overlay {
                    position: absolute;
    top: 0;
		 left: 0;
    right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(44, 62, 80, 0.3) 100%);
    z-index    :  1;
}@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.cta-button, .cta-button-large {
      display : inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    text-decoration: none;
   border-radius: 50px;
  transition: all 0.3s ease;
    font-weight: 600;
  border :      none;
    cursor: pointer;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);

}

.cta-button:hover, .cta-button-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.6);
  background: linear-gradient(135deg, #2980b9 0%, #1f618d 100%);
}

.cta-button-large {
  padding: 1.2rem 3rem;
   font-size: 1.1rem;
} 

.section-intro {


    padding  :    5rem 2rem;
  background: #f8f9fa;


}

.intro-container {
    max-width: 1000px;
   margin: 0 auto;
}

.section-intro h2, 
.section-services h2, 
.section-webinars h2, 
.section-process h2,
.section-cta h2,
.section-testimonials h2,
.section-contact h2   {
		font-size: 2.5rem;
   margin-bottom: 2rem;
    text-align: center;
  color: #2c3e50;
  position: relative;
    padding-bottom  :       1rem;
}

.section-intro h2::after {
  content: '';
    position: absolute;
                    bottom: 0;
    left:       50%;
  transform: translateX(-50%);
    width: 100px;
   height: 4px;
  background: linear-gradient(90deg, #3498db, #2980b9);
  border-radius: 2px;
}

.intro-container > p {
  font-size: 1.1rem;
   margin-bottom: 3rem;
       text-align: center;
  color  :      #555;
  line-height: 1.8;
}

.intro-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	 gap: 2rem;
    margin-top: 2rem;
}

.intro-card {
   background: white;
   padding: 2rem;
                    border-radius :   10px;
    text-align :   center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
    border: 2px solid transparent;
}

.intro-card:hover {
   border-color: #3498db;
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.2);
}

.intro-card h3 {
    font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #3498db;
}

.intro-card p {
  color: #666;
   font-size :    1rem;
}

.section-services {
  padding: 5rem 2rem;
    background:   white;
}

.services-container {
	 max-width: 1200px;
		margin: 0 auto;
}

.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
   margin-top: 3rem;
}

.service-item {
        background: white;
  border-radius: 12px;
   overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-image {
  width: 100%;
   height     :     250px;
    object-fit: cover;
   transition: all 0.3s ease;
}

.service-item:hover .service-image {
  transform: scale(1.05);
}

.service-item h3 
 {


  font-size: 1.5rem;
  padding: 1.5rem 1.5rem 0.5rem;
   color: #2c3e50; 
	
     }

.service-item p     {
    padding     :       0 1.5rem 1.5rem;
	color  :        #555;
    line-height: 1.7;
}

.section-webinars {

	    padding: 5rem 2rem;
    background: #ecf0f1;
	}

.webinars-container {
    max-width: 1200px;
   margin: 0 auto;
}

.section-desc {
  line-height: 1.8;
 color: #555;
    margin-bottom     :       3rem;
	text-align: center;
  font-size: 1.1rem;
}

.webinars-grid {
  display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	  gap: 2.5rem;
	   margin-top: 2rem;
}

.webinar-card {
     background: white; 
		border-radius: 12px; 
	   overflow: hidden; 
	  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); 
	               transition: all 0.3s ease;
}

.webinar-card:hover		{
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.webinar-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.webinar-card:hover .webinar-image {
  transform: scale(1.08);
}

.webinar-card h3 {
     padding  :  1.5rem 1.5rem 0.5rem;
   font-size: 1.4rem;
	color: #2c3e50; 

}

.webinar-card p		{

		 line-height: 1.7;
    color     :#666;
   padding: 0 1.5rem;
    font-size: 0.95rem;


}

.webinar-badge {
	display: inline-block;
   margin: 1rem 1.5rem 1.5rem;
     padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #3498db, #2980b9);
   color: white;
  border-radius: 20px;
    font-size: 0.85rem;
	font-weight: 600; 

}

.section-process {
    background: white;
   padding: 5rem 2rem;
}

.process-container
{


  max-width: 1200px;
   margin: 0 auto; 


}

.process-steps {
   display   : grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.process-step {
    text-align: center;
  padding: 2rem;
	border-radius: 10px;
  background   :    #f8f9fa;
   transition: all 0.3s ease;
      border-left: 4px solid transparent;


}

.process-step:hover     {
   	 border-left-color: #3498db;
  background :      #ecf0f1;
  transform: translateX(5px);
}

.step-number {
  font-size: 3rem;
	font-weight: 700;
    color: #3498db;
          margin-bottom: 1rem;
    opacity: 0.7;
}

.process-step h3 {
  font-size: 1.3rem;
	margin-bottom: 1rem;
   color   :#2c3e50;
}

.process-step p {
    color: #666;
	line-height: 1.7;
} 

.section-cta {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
  text-align: center;
}

.cta-container {
	max-width: 800px;

	    margin: 0 auto;
}

.section-cta h2 {


    color: white;
  font-size: 2.8rem;
    margin-bottom:     1.5rem;
}

.section-cta h2::after {
  background: rgba(255, 255, 255, 0.5);
}

.section-cta p {
    font-size: 1.2rem;
   margin-bottom    :     2rem;
   opacity: 0.95;
   line-height: 1.8;
}

.cta-button-large {
  background: rgba(255, 255, 255, 0.2);
	border: 2px solid white;
   color   :   white;
}

.cta-button-large:hover {
    background    :        white;
    color: #3498db;
          border-color    :    white;}

.section-testimonials {
	padding: 5rem 2rem;
    background: #f8f9fa;
}

.testimonials-container {
  max-width: 1200px;
	 margin: 0 auto;
}

.testimonials-grid   {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
   margin-top: 3rem;
}

.testimonial-card {
    background: white;
  padding: 2rem;
    border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
    border-top: 4px solid #3498db;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.15);
}

.testimonial-card p

{
   color: #555;
    font-style: italic;
  margin-bottom: 1.5rem;
			line-height: 1.8;
}

.testimonial-card h4 {
  color: #2c3e50;
  font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.testimonial-card span {
    color: #999;
			font-size: 0.95rem;
}

.section-contact {
    padding: 5rem 2rem;
  background: white;
}

.contact-container {
   max-width: 1000px;
    margin: 0 auto;
}

.contact-intro {
		 margin-bottom: 3rem; 
  color: #555; 
     text-align: center; 
   line-height: 1.8; 
   font-size: 1.1rem;
}



.contact-form {
   background   :     #f8f9fa;
  padding    :   2.5rem;
  border-radius     :      12px;
  margin-bottom: 3rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.form-group{
     margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
   -webkit-border-radius: 8px;
                    padding: 1rem;
   -moz-border-radius: 8px;
    color: #333;
    border-radius: 8px;
  transition: all 0.3s ease;
               font-family: inherit;
	 width: 100%;
  background: white;
   font-size: 1rem;
    border: 2px solid #e0e0e0;
}

.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); 

}

.contact-form textarea {
      min-height: 150px;
    resize: vertical;
}

.form-submit {
   width: 100%;
    padding  :    1.2rem;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
 color: white;
  border: none;
	 border-radius: 8px;
   font-size: 1.1rem;
    font-weight: 600;
   cursor: pointer;
    transition   : all 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
} 

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.6);
}

.contact-info {
  background: #ecf0f1;
   padding: 2rem;
	 border-radius: 10px;
   border-left: 4px solid #3498db; 
	
}  

.contact-info h3
	{
   margin-bottom   :1rem;
    color: #2c3e50;

}

.contact-info p {
   margin-bottom: 0.5rem;
  color    :       #555;
  line-height: 1.8; 
	
}

.footer {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);

	    color: #ecf0f1;

	   padding: 3rem 2rem 1rem;
}

.footer-container {


   max-width: 1200px;
    margin: 0 auto;
    display: grid;
  grid-template-columns: 1fr 2fr;
	gap: 3rem;
  margin-bottom   :   2rem;

}

.footer-logo-section {
          display: flex;
  align-items    : flex-start;
}

.footer-logo {
        height: 86px;
	width: auto;
  filter: brightness(0) invert(1);
}

.footer-content {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap :2rem; 

}

.footer-section h4 {
	   margin-bottom: 1rem;
          color: #3498db;
    font-size: 1.1rem;
	}

.footer-section ul {


    list-style :     none;
}

.footer-section ul li {
   margin-bottom: 0.7rem;
}

.footer-section a


{
         color: #bdc3c7;
	text-decoration    :       none;
   transition: all 0.3s ease;
}

.footer-section a:hover {
    color :   #3498db;
  padding-left: 5px;
}

.footer-section p {
   color: #bdc3c7;
    line-height: 1.7;
      font-size     : 0.95rem;
	margin-bottom   :     0.7rem;
}

.footer-bottom {
   text-align: center;
    padding-top:  2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
   color: #95a5a6;
   font-size: 0.9rem;
     }@media (max-width: 768px) {
    .burger-menu {
        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;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero {
        height: 400px;
    }

    .section-intro,
    .section-services,
    .section-webinars,
    .section-process,
    .section-testimonials,
    .section-contact {
        padding: 3rem 1rem;
    }

    .intro-grid,
    .services-grid,
    .webinars-grid,
    .process-steps,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .section-intro h2,
    .section-services h2,
    .section-webinars h2,
    .section-process h2,
    .section-cta h2,
    .section-testimonials h2,
    .section-contact h2 {
        font-size: 2rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .section-cta h2 {
        font-size: 2rem;
    }

    .cta-button, .cta-button-large {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero {
        height: 300px;
    }

    .nav-logo img {
        height: 50px;
    }

    .section-intro h2,
    .section-services h2,
    .section-webinars h2,
    .section-process h2,
    .section-cta h2,
    .section-testimonials h2,
    .section-contact h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .intro-card h3 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 1rem;
    }

    .footer-logo {
        height: 70px;
    }
}.hero-services {
    height: 500px;
  background: linear-gradient(rgba(44, 62, 80, 0.85), rgba(44, 62, 80, 0.85)), 
                url('backgrounds/esg_strategy_workshop_professional.webp') center/cover;
   display: flex;
   align-items    :  center;
   justify-content: center;
  text-align: center;
  color: white;
  position:      relative;
   overflow   :   hidden;
}

.hero-services-content{
    z-index: 2;
  max-width: 700px;
   animation: fadeInUp 0.8s ease;
}

.hero-services h1 {
	font-size: 3rem;
  margin-bottom: 1rem;
   line-height: 1.2;
	font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}  

.hero-services p {


  font-size  :     1.2rem;
   opacity: 0.95;
	}

.hero-services-overlay


{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
   bottom: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(44, 62, 80, 0.3) 100%);
   z-index: 1;
}

.services-detailed {
    padding: 5rem 2rem;
    background    :     #ffffff;
}

.services-detailed-container {
      max-width: 1200px;
  margin: 0 auto;
}

.service-detail-card   {
 display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
 align-items: center;
   margin-bottom  :    4rem;
   animation: fadeInUp 0.6s ease;
}

.service-detail-card.alternate {
    grid-template-columns: 1fr 1fr;
}

.service-detail-card.alternate .service-detail-image {

	order: 2;
}

.service-detail-card.alternate .service-detail-content		{
    order:        1;
}

.service-detail-image   {
  position:    relative;
  border-radius: 12px;
   overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.detail-img {
    width: 100%;
 height: auto;
   display: block;
    transition: all 0.3s ease; 

}

.service-detail-image:hover .detail-img {
  transform: scale(1.05);
}

.service-detail-content h2 {
    font-size: 2.2rem;
    color: #2c3e50;
   margin-bottom :  1.5rem;
   line-height: 1.3;
}

.service-detail-content p {
  font-size: 1.05rem; 
	  color :     #555; 
		line-height :      1.8; 
	    margin-bottom: 2rem;

}

.service-features 
 {

	      margin-bottom: 2rem;
	}

.service-features h3  {
    font-size: 1.2rem;
  color: #2c3e50;
    margin-bottom    :  1rem;
}

.features-list{
   list-style: none;
}

.features-list li 
 {
      padding-left: 25px;
	position     :        relative;
                    margin-bottom: 0.8rem;
   color  :   #555;
         line-height: 1.6;
}

.features-list li:before {

	  content: '✓';
   position: absolute;
                    left: 0;
   color: #3498db;
   font-weight: bold;
  font-size: 1.2rem;
	

}

.service-info {
	display: flex;
   flex-wrap: wrap;
	gap: 2rem;
   padding-top: 1.5rem;
   border-top     :      2px solid #ecf0f1;
}

.service-info span {

   display: flex;

	  align-items: center;

		color: #2c3e50;

	    font-weight: 600;

	    font-size   :    0.95rem;

}

.services-pricing {
  padding: 5rem 2rem;
    background: #f8f9fa;
}

.pricing-container {

	  max-width: 1200px;
    margin     :  0 auto;

}

.pricing-container h2 {
     font-size     :   2.5rem;
   text-align: center;
    color: #2c3e50;
  margin-bottom   :   0.5rem;
  position   :        relative;
    padding-bottom :     1rem;
}

.pricing-container h2::after {
  content: '';
   position: absolute;
    bottom: 0;
	 left: 50%;
  transform: translateX(-50%);
    width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #3498db, #2980b9);
  border-radius:       2px;
	}

.pricing-intro  
  {
   font-size: 1.1rem;
       margin-bottom: 3rem;
   text-align     : center;
	color: #666;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
          gap: 2rem;
   margin-top: 2rem;

}

.pricing-card  {
  background: white;
   padding    :     2.5rem;
    border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
   position  :  relative;
   border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border-color: #3498db;
  transform: scale(1.05);
}

.pricing-card.featured:hover {
	  transform: scale(1.05) translateY(-10px);

}

.featured-badge {
 position: absolute;
  top   :        -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #3498db, #2980b9);
  color    : white;
   padding: 0.5rem 1.2rem;
    border-radius: 20px;
  font-weight: 600;
	font-size: 0.85rem;


}

.pricing-card h3 {
  font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
  margin-top: 0.5rem;
}

.pricing-card .price {
   font-size: 2rem;
    color: #3498db;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.pricing-features {
	margin-bottom: 2rem;
  list-style: none;
}

.pricing-features li {
               padding-left: 25px;
  position: relative;
	margin-bottom     :1rem;
       color: #555;
  line-height  : 1.6;
}

.pricing-features li:before {
  content: '✓';
          position: absolute;
     left: 0;
  color: #3498db;
    font-weight: bold;
   font-size   :       1.2rem;
}

.pricing-button
{
    display:   inline-block;
   width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color    :    white;
    text-decoration: none;
   border-radius :     8px;
	text-align: center;
    font-weight :  600;
        transition     :    all 0.3s ease;
   border     :   2px solid transparent;
    cursor: pointer;
}

.pricing-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.services-process {
  padding: 5rem 2rem;
    background: white;
}

.process-container {
  max-width:     1200px;
   margin: 0 auto;
}

.process-container h2 {

   font-size: 2.5rem;
		 text-align: center;
    color: #2c3e50;
    margin-bottom   :    3rem;
  position: relative;
   padding-bottom: 1rem;

}

.process-container h2::after {
  content: '';
       position: absolute;
	 bottom: 0;
    left     :     50%;
  transform: translateX(-50%);
  width     :    100px;
  height: 4px;
  background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius :     2px;
}

.process-timeline   {
	      display: grid;

  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

    gap: 1.5rem;

    position: relative; 
	
     }

.process-timeline::before {
  content: '';
    position    : absolute;
   top   :  50px;
  left: 0;
    right: 0;
   height: 2px;
  background: linear-gradient(90deg, transparent, #3498db, transparent);
    z-index: 1;
}

.timeline-item {


  background: #f8f9fa;
   padding: 2rem;
   border-radius: 10px;
    text-align: center;
   position: relative;
    z-index: 2;
   transition: all 0.3s ease;
	}

.timeline-item:hover {
					background:      white;

	  box-shadow: 0 5px 20px rgba(52, 152, 219, 0.2);
}

.timeline-number {
   width: 60px;
        height: 60px;
  background: linear-gradient(135deg, #3498db, #2980b9);
    color :      white;
   border-radius    :  50%;
   display     :      flex;
   align-items: center;
    justify-content: center;
  font-weight: 700;
	font-size: 1.5rem;
 margin: -2rem auto 1rem;
  box-shadow: 0 3px 10px rgba(52, 152, 219, 0.3);
}

.timeline-item h3 {

    font-size: 1.2rem;
    color: #2c3e50;
   margin-bottom: 0.8rem;
	}

.timeline-item p {
   color: #666;
  font-size: 0.95rem;
  line-height: 1.6;

}

.services-faq {
   padding: 5rem 2rem;
			background: #f8f9fa;
}

.faq-container {
   max-width: 1000px;
   margin: 0 auto;
}

.faq-container h2 {
    font-size: 2.5rem;
  text-align: center;
	color: #2c3e50;
  margin-bottom    :     3rem;
    position:        relative;
        padding-bottom: 1rem;
}

.faq-container h2::after {
  content: '';
        position :  absolute;
    bottom   :    0;
    left: 50%;
  transform: translateX(-50%);
  width: 100px;
    height: 4px;
  background: linear-gradient(90deg, #3498db, #2980b9);
   border-radius: 2px;
}

.faq-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap:      2rem;
}

.faq-item


{
      background: white;
                    padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
   transition:all 0.3s ease;
        border-left: 4px solid transparent;}

.faq-item:hover {
    border-left-color: #3498db;
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.15);
  transform: translateX(5px);
}

.faq-item h3{
               font-size: 1.15rem;
      color: #2c3e50;
   margin-bottom: 1rem;
    line-height: 1.4;
}

.faq-item p {
             color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
}

.section-cta-services {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
    text-align: center;
}

.cta-services-container {
  max-width: 800px;
    margin: 0 auto;
}

.section-cta-services h2 {
		font-size: 2.5rem;
    margin-bottom: 1.5rem;
       color: white; 

}

.section-cta-services h2::after {
    display :     none;
}

.section-cta-services p {


   font-size: 1.15rem;
  margin-bottom: 2rem;
	opacity: 0.95;
    line-height: 1.8;

}

.cta-button-services {
      display: inline-block;
    padding: 1.1rem 2.8rem;
  background: rgba(255, 255, 255, 0.2);
   color: white;
   text-decoration: none;
   border-radius :    50px;
  font-weight: 600;
    border: 2px solid white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button-services:hover {
  background: white;
	 color: #3498db;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.thankyou-hero {
   height: 550px;
  background: linear-gradient(rgba(44, 62, 80, 0.85), rgba(44, 62, 80, 0.85)), 
                url('backgrounds/green_transition_consulting_session.webp') center/cover;
   display:flex;
   align-items: center;
    justify-content: center;
  text-align: center;
   color: white;
   position: relative;
    overflow:      hidden;
}

.thankyou-content {
	    z-index: 2; 
	  max-width: 700px; 
	    animation: fadeInUp 0.8s ease;

}

.success-icon {
        margin-bottom: 2rem;
  animation: scaleIn 0.6s ease;
}

.success-icon svg {
     filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
     }@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}.thankyou-hero h1 {
    font-size:  3.2rem;
               margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.thankyou-message {
  font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.thankyou-text {
  background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
  backdrop-filter: blur(10px);
}

.thankyou-text p {
	font-size: 1rem;
   margin-bottom     :  1rem;
   line-height: 1.7;
   opacity: 0.95;
}

.thankyou-text p:last-child {
   margin-bottom: 0;
} 

.thankyou-overlay {
   position: absolute;
     top: 0;
     left: 0;
       right: 0;
       bottom: 0;
     background: linear-gradient(to bottom, transparent 40%, rgba(44, 62, 80, 0.3) 100%);
       z-index    :1;
}

.what-next {
    padding: 5rem 2rem;
  background: #f8f9fa;
}

.what-next-container {
    max-width: 1000px;
   margin: 0 auto;
}

.what-next h2 {
					font-size: 2.5rem;
   text-align: center;
	 color: #2c3e50;
       margin-bottom: 3rem;
     position :   relative;
   padding-bottom: 1rem; 

}

.what-next h2::after {

	  content: '';
               position: absolute;
	bottom   :     0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
    height: 4px;
  background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius :    2px;

}

.next-steps-grid
	{
    display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  gap: 2rem;
}

.next-step-card {
    background: white;
  padding    : 2.5rem;
  border-radius   :    12px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
}

.next-step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.2);
}

.step-icon {
    width: 70px;
   height: 70px;
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
		border-radius    :50%;
   display: flex;
   align-items:    center;
    justify-content: center;
	 font-weight: 700;
  font-size: 2rem;
    margin: 0 auto 1.5rem;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.next-step-card h3 {
   margin-bottom: 1rem;
  color: #2c3e50;
    font-size: 1.3rem;
}

.next-step-card p {
   color: #666;
  line-height: 1.7;
   font-size  :0.95rem;

}

.recommended-services {
    background: white;
    padding: 5rem 2rem;
}

.recommended-container {
                    max-width  :   1000px;
    margin: 0 auto;


}

.recommended-container h2		{
   font-size: 2.5rem;
  text-align  :  center;
	color: #2c3e50;
   margin-bottom: 0.5rem;
    position   :    relative;
  padding-bottom :      1rem;
}

.recommended-container h2::after {
  content: '';
    position: absolute;
	 bottom: 0;
   left: 50%;
  transform: translateX(-50%);
	 width: 100px;
   height: 4px;
  background: linear-gradient(90deg, #3498db, #2980b9);
   border-radius: 2px;
}


.recommended-intro {
    text-align: center;
  font-size: 1.05rem;
    color: #666;
	margin-bottom: 2.5rem;
}

.recommended-grid {
  display  :  grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap   :  2rem;
}

.recommended-item {
    background: #f8f9fa; 
	   padding :   2rem; 
	    border-radius: 10px; 
	  border     : 2px solid transparent; 
	   transition: all 0.3s ease;
}

.recommended-item:hover {
  border-color: #3498db;
  box-shadow: 0 5px 20px rgba(52, 152, 219, 0.15);
  transform: translateY(-5px);
}

.recommended-item h3 {
    font-size: 1.3rem;
    color: #2c3e50;
	 margin-bottom: 1rem;
}

.recommended-item p    {
	color: #666;
   line-height: 1.7;
  margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.recommended-item a {
    display: inline-block;
    color: #3498db;
   text-decoration: none;
	font-weight: 600;
                    transition: all 0.3s ease;
  padding-bottom: 3px;
    border-bottom: 2px solid transparent;
}

.recommended-item a:hover {
    color: #2980b9;
    border-bottom-color: #3498db;
}

.contact-quick 
 {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #ecf0f1 0%, #f8f9fa 100%);
  text-align    :center;
}

.contact-quick-container {
    max-width: 800px;
 margin: 0 auto; 
	
}

.contact-quick h2 {
   font-size  :      2.2rem;
  color    :      #2c3e50;
   margin-bottom: 1rem;

}

.contact-quick p {
	  font-size: 1.05rem;
	 color :    #666;
	        margin-bottom: 2rem;
	}

.contact-quick-info {
  background: white;
     padding: 2rem;
   border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
   margin-bottom: 2rem;
   border-left: 4px solid #3498db;
}

.contact-quick-info p {
    margin-bottom: 0.8rem;
  font-size:1.05rem;
   color: #2c3e50;
}

.contact-quick-info p:last-child  {
  margin-bottom     :   0;
}

.back-home-button {
 display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   color   :  white;
          text-decoration: none;
	border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
}

.back-home-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.6);
}

@media (max-width: 768px) {
    .service-detail-card {
        grid-template-columns: 1fr;
    }

    .service-detail-card.alternate .service-detail-image {
        order: 1;
    }

    .service-detail-card.alternate .service-detail-content {
        order: 2;
    }

    .service-detail-content h2 {
        font-size: 1.8rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: scale(1) translateY(-10px);
    }

    .process-timeline::before {
        display: none;
    }

    .hero-services h1 {
        font-size: 2.2rem;
    }

    .thankyou-hero h1 {
        font-size: 2.5rem;
    }

    .next-steps-grid,
    .recommended-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .service-detail-content h2 {
        font-size: 1.5rem;
    }

    .service-detail-content p {
        font-size: 0.95rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .pricing-card h3 {
        font-size: 1.2rem;
    }

    .pricing-card .price {
        font-size: 1.5rem;
    }

    .hero-services h1 {
        font-size: 1.8rem;
    }

    .hero-services p {
        font-size: 0.95rem;
    }

    .thankyou-hero h1 {
        font-size: 2rem;
    }

    .thankyou-message {
        font-size: 1.1rem;
    }

    .timeline-item {
        padding: 1.5rem 1rem;
    }

    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .faq-item h3 {
        font-size: 1rem;
    }
}.policySection {
  padding: 80px 2rem;
  background: #f8f9fa;
  min-height: calc(100vh - 400px);
}

.policyContainer {
  max-width  : 900px;
   margin: 0 auto;
    text-align    :left;
         background: white;
   padding: 3rem;
   border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.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: 1rem;
    font-weight: 600;
   line-height: 1.4;
}

.policyContainer h2:first-of-type {
    margin-top: 0;
}

.policyContainer p
{
   color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size:      1.05rem;
   text-align: justify;
}

.policyContainer p:last-child


{
  margin-bottom  :  0;
}

.policyContainer ul {
    margin-bottom: 1.5rem;
  margin-left:     1.5rem;
	
}

.policyContainer ul li {
                    color: #555;
   margin-bottom     :    0.8rem;
    line-height: 1.7;
  font-size: 1.05rem;
}

.policyContainer ol {
	margin-bottom: 1.5rem;

	  margin-left: 1.5rem;
}

.policyContainer ol li  
  {
   color     :   #555;
  margin-bottom: 0.8rem;
  line-height: 1.7;
   font-size     :1.05rem;
	}

.policyContainer strong {
	 color: #2c3e50;
    font-weight: 600;
}

.policyContainer em {
       color: #7f8c8d;
    font-style    :   italic; 
	
     }

.policyContainer h2 {
    transition: all 0.3s ease;
}

.policyContainer h2:hover {
    color: #3498db;
	padding-left: 10px; 

}

.policyContainer a {
   color: #3498db;
	   text-decoration: none;
	  transition: all 0.3s ease;
	    border-bottom: 1px solid transparent;
}

.policyContainer a:hover {
   color: #2980b9;

   border-bottom-color: #3498db;
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer {
        padding: 2rem 1.5rem;
        margin: 0 auto;
    }

    .policyContainer h1 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .policyContainer p {
        font-size: 1rem;
        text-align: left;
    }

    .policyContainer ul,
    .policyContainer ol {
        margin-left: 1.2rem;
    }

    .policyContainer ul li,
    .policyContainer ol li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 0.5rem;
    }

    .policyContainer {
        padding: 1.5rem 1rem;
        border-radius: 8px;
    }

    .policyContainer h1 {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
        line-height: 1.7;
    }

    .policyContainer ul,
    .policyContainer ol {
        margin-left: 1rem;
    }

    .policyContainer ul li,
    .policyContainer ol li {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }
}

@media print {
    .navbar,
    .footer {
        display: none;
    }

    .policySection {
        padding: 0;
        background: white;
    }

    .policyContainer {
        box-shadow: none;
        padding: 0;
    }

    .policyContainer h1,
    .policyContainer h2,
    .policyContainer p {
        page-break-inside: avoid;
    }
}.policySection {
   animation: fadeInUp 0.6s ease;

}