* {
    margin   :  0;
   padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a472a;
    --secondary-color: #2d6a4f;
    --accent-color: #40916c;
    --light-accent: #52b788;
    --neutral-dark: #2c2c2c;
    --neutral-light: #f8f8f8;
    --text-color: #1a1a1a;
    --border-color: #e0e0e0;
    --success-color: #52b788;
    --error-color: #d62828;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height: 1.6;
  color: var(--text-color);
   background-color    :        #fff;
}

.navbar {
  background-color: var(--primary-color);
    padding: 1rem 0;
  position  : sticky;
   top: 0;
    z-index: 999;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nav-container {
	max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
   display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
  flex-shrink: 0;
}

.nav-logo  
  {
   height: 94px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.burger-menu {
  display   :none;
  background: none;
	border: none;
  cursor: pointer;
    flex-direction: column;
   justify-content: center;
  gap: 6px;
}

.burger-line {
  width    :       25px;
  height:   3px;
   background-color: white;
          border-radius: 2px;
   transition: all 0.3s ease;


}

.nav-menu {
  display:   flex;
   list-style:     none;
   gap: 2rem;
  align-items: center;
}

.nav-link {
   padding: 0.5rem 1rem;
    text-decoration: none;
   color  :   white;
   transition: color 0.3s ease;
    font-weight: 500;
}

.nav-link:hover {
	  color: var(--light-accent);}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--primary-color);
        flex-direction: column;
        gap: 0;
        padding: 2rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 1rem;
        width: 100%;
    }

    .nav-logo {
        height: 70px;
    }
}.hero-section {

  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%); 
       color: white; 
    padding     :  6rem 2rem; 
    text-align: center; 
    min-height: 500px; 
   display: flex; 
	 align-items: center; 
       justify-content: center;}

.hero-content		{
   max-width: 800px;
}


.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
        font-weight: 700;
  line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
   opacity: 0.95;
    font-weight: 300;
}

.hero-cta {
               display: inline-block;
  background-color: var(--light-accent);
  color: white;
   padding: 1rem 2.5rem;
	border-radius: 50px;
  text-decoration: none;
   font-weight: 600;
    transition: all 0.3s ease;
  font-size: 1.1rem;
}



.hero-cta:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-section {
        padding: 3rem 1rem;
        min-height: 350px;
    }
}.section-container {
   max-width: 1200px;
   margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
   text-align: center;
   margin-bottom: 3rem;
}

.section-header h2,
.section-title {
    font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom  :    1rem;
    font-weight :700;
}

.about-coaching {
   padding   : 5rem 0;
   background-color: #fafafa;
}



.about-grid {
	  display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 3rem;
  align-items: center;
}

.about-image img {
    width: 100%;
   border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15); 
	
}

.about-text p {
    margin-bottom: 1.5rem;
         font-size: 1rem;
    line-height: 1.8;
   color: #333;
}

.benefits-list {
	margin-top: 2rem;
	display: flex;
  flex-direction: column;
   gap: 1rem;
}

.benefit-item {
  padding: 1rem;
   background-color: white;
  border-left: 4px solid var(--accent-color);
   border-radius: 4px;
   font-weight: 500;
	
}@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .section-title,
    .section-header h2 {
        font-size: 1.8rem;
    }
}.coaching-methods {
  padding: 5rem 0;
}

.methods-grid {
  display :     grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 2rem;
}

.method-card {
    background-color    :   white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.method-card:hover
	{
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.method-card img {
   width: 100%;
                    height: 250px;
   object-fit: cover;
}

.method-card h3 {
  padding     :  1.5rem 1.5rem 0.5rem;
  color: var(--primary-color);
   font-size: 1.3rem;
}

.method-card p {
                    padding: 0 1.5rem 1.5rem;
  color: #555;
  line-height: 1.6;
}

.webinar-section
	{

  background: linear-gradient(135deg, #f0f4f8 0%, #e8f1f5 100%);
   padding: 5rem 0;

} 

.webinar-header {
	 text-align: center;
    margin-bottom: 3rem;


}

.webinar-header h2 {

  color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom :     1rem;
	}

.webinar-header p {
    font-size: 1.1rem;
  color: #555;
    max-width: 600px;
  margin: 0 auto;
}

.webinar-grid {
 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.webinar-item {
	 background-color: white;
    padding: 2rem;
     border-radius   :       10px;
  border-top: 4px solid var(--accent-color);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.webinar-item h4 {

  color: var(--primary-color);
  font-size: 1.2rem;
    margin-bottom: 1rem;
	}

.webinar-item p   {


   line-height   :       1.6;
  color: #666;
  margin-bottom     :      1.5rem;


}

.webinar-tag {
      display:    inline-block;
  background-color: var(--light-accent);
   color: white;
    padding: 0.4rem 1rem;
   border-radius   :  20px;
  font-size: 0.85rem;
    font-weight :  600;
}

.transformation-stories {
    padding: 5rem 0;
  background-color: white;
}

.stories-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 2.5rem;
}

.story-card {
  background-color: #f8f8f8;
   border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition   :    all 0.3s ease;
}

.story-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
     }

.story-card img {
  width: 100%;
   height: 220px;
  object-fit: cover;
}

.story-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
  color: var(--primary-color);
    font-size: 1.2rem;
}

.story-card p		{
  padding: 0 1.5rem 1.5rem;
               color: #555;
  font-size: 0.95rem;
    line-height: 1.7; 

}

.conference-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
   color: white;
    padding: 5rem 0;
}

.conference-header {
  text-align: center;
    margin-bottom: 3rem; 
	
}

.conference-header h2 {
    color: white;
  font-size: 2.5rem;
    margin-bottom: 1rem;
}

.conference-header p {
    font-size: 1.1rem;
    opacity: 0.95;
    max-width: 600px;
    margin    :0 auto;
}

.conferences-list  {
           display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	}

.conference-item {
  background-color: rgba(255,255,255,0.1);
   padding: 2rem;
    border-radius: 8px;
  border-left: 4px solid var(--light-accent);
  backdrop-filter: blur(10px);
}

.conference-item h3 {

   font-size: 1.3rem;
  margin-bottom: 1rem;
  color: white;

}



.conference-item p {

	        margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0.95;}  

.conference-date {
  display  :    inline-block;
     background-color: var(--light-accent);
       padding: 0.5rem 1.2rem;
        border-radius: 20px;
       font-weight: 600;
     font-size: 0.9rem;
}

.benefits-section

{
  padding: 5rem 0;
    background-color: #fafafa;
}

.benefits-grid   {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2rem;
}

.benefit-box {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition    :  all 0.3s ease;
  border-top: 3px solid var(--accent-color);
}

.benefit-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.benefit-box h4	{
  color: var(--primary-color);
    font-size: 1.2rem;
   margin-bottom: 1rem;
}

.benefit-box p {
   color: #666;
	 line-height: 1.6;
     }

.success-metrics {


    padding: 5rem 0;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: white;
}

.metrics-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap  :      2rem;
        text-align: center;
}

.metric-card  
  {
    padding:2.5rem;
  background-color: rgba(255,255,255,0.1);
   border-radius: 10px;
  backdrop-filter: blur(10px);
}

.metric-number {
   font-size: 3rem;
  font-weight: 700;
    margin-bottom: 0.5rem;
  color: var(--light-accent);
}

.metric-card p {
  font-size: 1rem;
   opacity: 0.95;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
	  color: white;
	    padding:      4rem 2rem;
	   text-align :    center;
	   margin: 3rem 0;
}

.cta-container {

	       max-width: 700px;
   margin: 0 auto;


}

.cta-section h2 {
   font-size: 2.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-section p {
	font-size: 1.1rem;
    margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-button {
  display: inline-block;
  background-color: var(--light-accent);
    color   :        white;
  padding: 1rem 2.5rem;
    border-radius: 50px;
 text-decoration: none;
  font-weight: 600;
     transition: all 0.3s ease;
   font-size: 1rem;

}

.cta-button:hover {
  background-color: var(--accent-color);
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.contact-section {
   padding: 5rem 0;
    background-color: #fafafa;
}

.contact-wrapper {
   display: grid;
    grid-template-columns: 2fr 1fr;
  gap: 3rem;
    margin-top: 3rem;
}

.contact-form {
  background-color: white;
   padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
   display: block;
				 margin-bottom: 0.5rem;
  color: var(--primary-color);
  font-weight: 600;
} 

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--border-color);
	 border-radius: 6px;
    font-family :  inherit;
    font-size: 1rem;
	 transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(64, 145, 108, 0.1);
}

.submit-button {
  background-color: var(--accent-color);

	      color: white;

	    padding: 1rem 2rem;

	   border: none;

	  border-radius: 6px;

	  font-size: 1rem;

	  font-weight: 600;

	   cursor: pointer;

	    transition: all 0.3s ease;

	    width: 100%;
}

.submit-button:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 71, 42, 0.2);
}

.contact-info {
      background-color: white;
  padding   :       2.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.contact-info h3


{
  color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 2rem;
	
}

.info-item 
 {
  margin-bottom: 2rem;
}

.info-item strong{

	  color: var(--primary-color);
   display: block;
  margin-bottom: 0.5rem;

}

.info-item p {
   color: #666;
   line-height   :        1.8;
}@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}.footer-section {
  background-color: var(--primary-color);
    color: white;
  padding: 4rem 0 2rem;
}

.footer-container   {
        margin: 0 auto;
   padding: 0 2rem;
   max-width: 1200px;
}

.footer-logo {
    text-align: center;
                    margin-bottom: 2rem;
}

.footer-logo-img {
   height    :136px;
   width: auto;
  filter: brightness(0) invert(1);
} 

.footer-content   {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
   margin-bottom: 2rem;
}

.footer-column h4{
          margin-bottom: 1rem;

    font-size   :       1.1rem;

  color: var(--light-accent);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
  color: rgba(255,255,255,0.85);
   text-decoration: none;
   transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--light-accent);
}

.footer-column p {
     color: rgba(255,255,255,0.85);
   line-height  :  1.8;
    font-size: 0.95rem;}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
    padding-top     :        2rem;
                    text-align: center;
  color: rgba(255,255,255,0.7);
   font-size: 0.9rem;
}@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-logo-img {
        height: 100px;
    }
}.services-hero {


  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%); 
	   color     :   white; 
	    padding   :   5rem 2rem; 
	  text-align: center;
     }

.hero-services-content h1 {
    font-size: 3rem;
   margin-bottom: 1rem;
  font-weight: 700;
}

.hero-services-content p  
  {
   font-size: 1.2rem;
   opacity: 0.95;
   max-width: 600px;
    margin: 0 auto;
}

.services-main-section {
    padding: 5rem 0;
    background-color    : white;
}

.services-intro {
	text-align     :      center;
  margin-bottom: 3rem;
}

.services-intro h2 {
  color: var(--primary-color);
    font-size:        2.5rem;
  margin-bottom    :  1rem;
}

.services-intro p {
    font-size: 1.1rem;
    color: #555;
  max-width: 800px;
   margin: 0 auto;
    line-height: 1.8;
}

.service-card-container  {
  display: grid;
       grid-template-columns: 1fr;
      gap: 3rem;
}

.service-card {
   background-color: #f8f8f8;
    border-radius    :12px;
   overflow: hidden;
    display: grid;
   grid-template-columns: 1fr 1fr;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border-left: 5px solid var(--accent-color);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-card:nth-child(even)     {
   direction: rtl;
}

.service-card:nth-child(even) > * {
	direction: ltr; 
	
}

.service-card-primary {
    border-left-color: #52b788;
}

.service-card-secondary {
  border-left-color: #40916c;
}

.service-card-tertiary {
   border-left-color: #2d6a4f;
}

.service-card-quaternary {
   border-left-color:#1b4332;
}  

.service-card-quinary {

	    border-left-color: #08540f;}

.service-card-image {
	 width: 100%;
                    height: 100%;
   min-height: 400px;
}

.service-card-image img{
   width: 100%;
  height :100%;
   object-fit: cover;

}

.service-card-content {
  display: flex;
       justify-content: center;
   flex-direction: column;
	padding: 3rem;
}

.service-card-content h3 {
  color: var(--primary-color);
   font-size: 1.8rem;
    margin-bottom:      0.5rem;
                    font-weight:    700;
}

.service-highlight {
  color: var(--accent-color);
  font-size: 1rem;
   margin-bottom: 1.5rem;
  font-weight     : 600;
}

.service-details p {
   color: #555;
     margin-bottom: 1.5rem;
   line-height: 1.7;
}

.service-features {

	  list-style: none;
    margin-bottom: 2rem;

}

.service-features li {
   padding: 0.6rem 0;
   color: #666;
  padding-left: 1.5rem;
   position: relative;
}

.service-features li:before {
  content: "→";
   position: absolute;
  left: 0;
  color: var(--accent-color);
   font-weight: bold;
}

.service-pricing

{
  background-color: white;
  padding: 1.5rem;
    border-radius: 8px;
  border-top: 2px solid var(--accent-color);
          text-align: center;
}

.price-label {
    display: block;
	 color: #999;
 font-size   :  0.9rem;
  margin-bottom: 0.3rem;
}

.price-value {
    display   :    block;
    font-size: 2rem;
  color: var(--primary-color);
    font-weight: 700;
   margin-bottom: 0.3rem;
}

.price-period {
   font-size: 0.85rem;
  color     : #999;
  display: block;
}@media (max-width: 1024px) {
    .service-card {
        grid-template-columns: 1fr;
    }

    .service-card:nth-child(even) {
        direction: ltr;
    }

    .service-card-image {
        min-height: 300px;
    }
}.packages-section {
   padding:  5rem 0;
  background: linear-gradient(135deg, #f0f4f8 0%, #e8f1f5 100%);
}

.packages-section h2 {
  color: var(--primary-color);
   font-size: 2.5rem;
   text-align: center;
  margin-bottom: 1rem;
}

.packages-intro {
  text-align:      center;
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 3rem;
	 max-width: 600px;
    margin-left: auto;
   margin-right: auto;
}

.packages-grid


{
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2.5rem;
}

.package-item {
  background-color: white;
  border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
   transition: all 0.3s ease;
  display: flex;
    flex-direction: column;
}

.package-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.package-header {
      padding   : 2rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
    text-align: center; 

	}

.package-header h3 {
  font-size: 1.8rem;
   margin-bottom: 0.5rem;
    font-weight: 700;
}

.package-subtitle {

	   opacity: 0.9;
  font-size: 0.95rem;
}

.package-body {
  padding   : 2rem;
    flex-grow: 1;
  display: flex;
	flex-direction: column;
}

.package-price {
     text-align: center;
  margin-bottom: 2rem;
     }

.package-price .price {
   display: block;
	 font-size :   2.2rem;
  color: var(--primary-color);
  font-weight: 700;
}

.package-price .period  {
     display: block;
   color: #999;
       font-size: 0.95rem;
	}

.package-features {
   list-style: none;
         margin-bottom: 2rem;
    flex-grow: 1;
}

.package-features li {
  padding :    0.8rem 0;
   color:      #555;
    padding-left: 1.5rem;
   position: relative;
	border-bottom    :  1px solid #f0f0f0;
}

.package-features li:last-child     {
   border-bottom: none;
}

.package-features li:before {
  content: "✓";
  position: absolute;
   left: 0;
  color: var(--success-color);
   font-weight: bold;
}

.package-cta {
   display: inline-block;
  background-color: var(--accent-color);
       color     :      white;
  padding: 0.8rem 1.5rem;
    border-radius: 6px;
          text-decoration: none;
   text-align: center;
   font-weight     :600;
  transition: all 0.3s ease;
}

.package-cta:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
}

.package-cta.package-featured {
  background-color: var(--light-accent);
	 font-size: 1.05rem;
}

.service-process-section  {


   padding :    5rem 0;
    background-color: white;

	}

.service-process-section h2 {
  color: var(--primary-color);
   font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;


}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.process-step {
   padding :       2rem;
    text-align: center;
  background-color: #f8f8f8;
	border-radius: 10px;
   transition: all 0.3s ease;
  position: relative;
}

.process-step:hover {
  background-color: #f0f4f8;
  transform: translateY(-5px);
}

.step-number {
    font-size: 3rem;
  color: var(--accent-color);
  font-weight: 700;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.process-step h3 {
  color: var(--primary-color);
    font-size: 1.3rem;
  margin-bottom: 1rem;
        font-weight    :       600;
}

.process-step p {
    color: #555;
    line-height: 1.6;
}

.service-faq-section{

   padding   :    5rem 0;
  background: linear-gradient(135deg, #f0f4f8 0%, #e8f1f5 100%);


}

.service-faq-section h2 {
  color: var(--primary-color);
    font-size: 2.5rem;
	text-align: center;
  margin-bottom: 3rem;
}

.faq-container {
	max-width: 900px;
  margin: 0 auto;
    display: grid;
			grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.faq-item {
	background-color: white;
   padding: 2rem;
               border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition    : all 0.3s ease;
}

.faq-item:hover{
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
  border-left: 4px solid var(--accent-color);
}

.faq-question {
  color: var(--primary-color);
    font-size: 1.1rem;
   margin-bottom: 1rem;
	font-weight: 600;
   cursor: pointer;
}

.faq-answer {
   color: #555;
   line-height   :    1.6;
    font-size :     0.95rem;
}@media (max-width: 768px) {
    .faq-container {
        grid-template-columns: 1fr;
    }

    .hero-services-content h1 {
        font-size: 2rem;
    }

    .services-intro h2 {
        font-size: 1.8rem;
    }

    .service-card-content {
        padding: 2rem;
    }
}.cta-services-section {


  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 4rem 2rem;
  text-align  :   center;
    margin: 3rem 0;
} 

.cta-services-container {
  max-width: 800px;
   margin: 0 auto;
}

.cta-services-section h2 {
   font-size: 2.2rem;
  margin-bottom :  1rem;
   font-weight: 700;
}

.cta-services-section p {
      font-size: 1.1rem;
   margin-bottom: 2rem;
    opacity: 0.95;


}

.cta-services-button {
   display: inline-block; 
	  background-color: var(--light-accent); 
	   color: white; 
		padding: 1rem 2.5rem; 
	    border-radius: 50px; 
	    text-decoration: none; 
	    font-weight: 600; 
	    transition: all 0.3s ease; 
	    font-size: 1rem;
}

.cta-services-button:hover {
  background-color: var(--accent-color);
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.service-contact-section {
    padding     :        5rem 0;
   background-color:    #fafafa;
}

.service-contact-section h2 {
  color: var(--primary-color);
    font-size: 2.5rem;
    text-align: center;
  margin-bottom: 3rem;
}  

.service-contact-wrapper {
   display   : grid;
   grid-template-columns: 1fr 1fr;
  gap: 3rem;


} 

.service-contact-info {
   background-color: white;
  padding: 2.5rem;
    border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08); 
	
} 

.service-contact-info h3  {
  color: var(--primary-color);
   font-size: 1.5rem;
    margin-bottom: 2rem;
}

.service-contact-form-wrapper {
   background-color: white;
    padding: 2.5rem;
	border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.form-intro {
	color: #555;
  line-height: 1.8;
	font-size: 1rem;
}@media (max-width: 768px) {
    .service-contact-wrapper {
        grid-template-columns: 1fr;
    }
}.thankyou-section {
    padding   :       5rem 2rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
   color     : white;
  min-height: calc(100vh - 200px);
   display    :      flex;
    align-items: center;
    justify-content: center;
}

.thankyou-container {
   max-width: 800px;
   margin: 0 auto;
  text-align: center;
}

.success-badge {
   font-size: 5rem;
   margin-bottom: 1.5rem;
 animation:     bounce-animation 1s ease-in-out;
}@keyframes bounce-animation {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}.thankyou-section h1 {


	 font-size: 2.8rem;
    margin-bottom    :        0.5rem;
         font-weight: 700;
	}

.thankyou-subtitle {
    font-size :     1.2rem;
   opacity: 0.95;
    margin-bottom: 3rem;
}

.message-summary {
  background-color: rgba(255,255,255,0.1);
    padding: 2.5rem;
  border-radius     :  10px;
   margin-bottom :3rem;
  backdrop-filter: blur(10px);
  text-align: left;
}

.message-summary h2 {
  font-size: 1.5rem;
    margin-bottom: 1.5rem;
  text-align: center;
}

.summary-item {
    display    :grid;
      grid-template-columns: 200px 1fr;
  gap: 2rem;
    margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.2); 
	
}

.summary-item:last-child 
 {
               border-bottom: none;
}

.summary-label {
    font-weight: 600;
     opacity: 0.9;
}

.summary-value  {
   word-break:  break-word;
   opacity: 0.95;
}

.summary-message {

  grid-template-columns: 1fr;
} 

.next-steps {
  background-color: rgba(255,255,255,0.1);
               padding: 2.5rem;
   border-radius: 10px;
   margin-bottom: 3rem;
  backdrop-filter: blur(10px);
}

.next-steps h2 
 {
  font-size: 1.5rem;
    margin-bottom: 2rem;
}

.steps-list {
      display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
     }

.step {
  background-color: rgba(255,255,255,0.15);
    padding: 1.5rem;
    border-radius: 8px;
   display: flex;
    gap: 1rem;
}

.step-icon {

	   font-size: 1.8rem;
    font-weight: 700;
  color: var(--light-accent);
   flex-shrink: 0;
   width: 40px;
     height: 40px;
  background-color: rgba(255,255,255,0.2);
                    border-radius: 50%;
    display: flex;
   align-items: center;
   justify-content: center;


}

.step-content h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
       font-size:      0.9rem;
    opacity: 0.9;
     line-height    :  1.5;
	}

.thankyou-cta-section {
  background-color: rgba(255,255,255,0.1);
   padding: 2.5rem;
    border-radius: 10px;
   margin-bottom: 3rem;
  backdrop-filter: blur(10px);
}

.thankyou-cta-section h2 {
	    font-size: 1.5rem;
  margin-bottom: 0.5rem;
     }

.thankyou-cta-section p {
   margin-bottom: 2rem;
	   opacity: 0.95;
}

.thankyou-buttons {
    display: flex;
   gap: 1rem;
   flex-wrap: wrap;
   justify-content: center;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
		 padding: 0.8rem 2rem;
    border-radius: 6px;
   text-decoration: none;
  font-weight: 600;
   transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--light-accent);
    color: white;
	}

.btn-primary:hover  
  {
  background-color: var(--accent-color);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: rgba(255,255,255,0.2);
   color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

.contact-support {
  background-color: rgba(255,255,255,0.15); 
    padding: 2rem; 
    border-radius: 8px; 
  border: 2px solid rgba(255,255,255,0.3);
	}

.contact-support h3 {
   font-size: 1.2rem;
  margin-bottom: 0.5rem;
   font-weight: 600;
}

.contact-support p {
  margin-bottom: 1rem;
    opacity: 0.95;
}

.support-details {
   text-align   :   left;
   margin-top: 1.5rem;
}

.support-details p {
   margin: 0.5rem 0;
  font-size  :   0.95rem;
}@media (max-width: 768px) {
    .thankyou-section {
        padding: 3rem 1rem;
    }

    .thankyou-section h1 {
        font-size: 2rem;
    }

    .success-badge {
        font-size: 3.5rem;
    }

    .summary-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .thankyou-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}.policySection {
     padding: 80px 2rem;
   background: #f8f9fa;
  min-height: calc(100vh - 200px);
}

.policyContainer {
   max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.policyContainer h1 {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

.policyContainer h2 {
    font-size: 2rem;
  color: var(--primary-color);
	margin-bottom: 1.5rem;
   margin-top: 2.5rem;
	font-weight: 700;
  border-bottom: 3px solid var(--accent-color);
  padding-bottom: 0.5rem;
}

.policyContainer p {
     color  :   #555;
  margin-bottom: 1.5rem;
  line-height: 1.8;
    font-size: 1.05rem;
  text-align  :    justify;
	}@media (max-width: 768px) {
    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
        text-align: left;
    }

    .policySection {
        padding: 60px 1rem;
    }
}