:root {
    --primary-dark: #1a1a1a;
    --primary-light: #ffffff;
    --accent-blue: #4a90e2;
    --accent-purple: #9b59b6;
    --accent-teal: #1abc9c;
    --text-dark: #2c3e50;
    --text-light: #ecf0f1;
    --border-light: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
}

* {
   margin: 0;
    box-sizing: border-box;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--primary-light);
}

html	{
  scroll-behavior: smooth;
}

.navbar {
  background-color: var(--primary-dark);
     padding     :1rem 0;
     position: sticky;
     top: 0;
   	z-index: 1000;
     box-shadow: var(--shadow-md);
}

.nav-container {
   align-items: center;
          padding: 0 2rem;
  max-width: 1200px;
    margin: 0 auto;
	justify-content: space-between;
    display: flex;
}

.nav-logo {
  display   :    flex;
    align-items: center;
  text-decoration: none;
  height: 74px;
}

.logo-img {
    height: 74px;
  width: auto;
  filter: brightness(0) invert(1);
}

.hamburger {
  flex-direction: column;
	  display: none;
	  gap: 6px;
	 cursor: pointer;
}

.hamburger span {
  width    :    25px;
	   height: 3px;
	  background-color: var(--primary-light);
	   border-radius: 2px;
	   transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: flex;
    list-style: none;
  gap: 2rem;
    align-items: center;
}

.nav-item {
    position: relative;


}

.nav-link {
  color: var(--primary-light);
	    text-decoration: none;
	  font-weight: 500;
		 transition  :      color 0.3s ease;
	   padding    :0.5rem 0; 
	
}

.nav-link:hover {
	  color: var(--accent-teal);
}@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--primary-dark);
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 300px;
        padding: 2rem 0;
    }

    .nav-item {
        width: 100%;
        padding: 0.5rem 0;
    }

    .nav-link {
        display: block;
    }
}.hero {
   max-width: 1200px;
               margin: 0 auto;
   padding: 4rem 2rem;
                    display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {


   font-size: 3rem;
  line-height: 1.2;
   margin-bottom   :      1rem;
  color: var(--text-dark);
   font-weight    :     700;


}

.hero-content p		{
   font-size: 1.2rem;
   color: #666;
   margin-bottom: 2rem;
   line-height: 1.8;
}

.cta-button

{
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
   color  :      white;
        padding: 1rem 2rem;
   border-radius: 8px;
  text-decoration     :      none;
  font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-md);
} 

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.hero-image		{
    display: flex;
	justify-content: center;
}

.hero-img {
   max-width: 100%;
  height: auto;
   border-radius: 12px;
  box-shadow: var(--shadow-lg); 

}

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}.section-header {

	   text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
   font-size: 2.5rem;
  color: var(--text-dark);
    margin-bottom: 0.5rem;
  font-weight: 700; 
	
}

.section-header p {
    font-size   : 1.1rem;
    color    :     #999;
}

.services-preview {


  max-width: 1200px;
   padding:      4rem 2rem;
   margin: 0 auto;
}

.services-grid {
	 display    :   grid; 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
   gap: 2rem;
}

.service-card
	{
  background: var(--primary-light);
  border: 1px solid var(--border-light);
	 border-radius: 12px;
   overflow: hidden;
  transition    :    transform 0.3s ease, box-shadow 0.3s ease;
   display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-image {

    width: 100%;
   height: 250px;
    object-fit: cover;
     }

.service-card h3 {
   font-size: 1.5rem;
  color: var(--text-dark);
  padding: 1.5rem 1.5rem 0.5rem;
	 font-weight  :600;
}


.service-card p {
                  flex-grow    :       1;
	 padding: 0.5rem 1.5rem 1.5rem;
   color   :      #666;}

.coaching-approach {
     max-width: 1200px;
     margin: 0 auto;
   	padding: 4rem 2rem;
     display: grid;
       grid-template-columns: 1fr 1fr;
      gap: 3rem;
     align-items: center;
     background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
     border-radius: 12px;
}

.approach-content h2   {
   font-size: 2.5rem;
  color: var(--text-dark);
   margin-bottom     : 1rem;
    font-weight: 700;
}

.approach-content p {
  color: #666;
    margin-bottom: 2rem;
  line-height: 1.8;


}

.approach-features {
    display :        grid;
	    grid-template-columns: 1fr 1fr;
	   gap  : 1.5rem;
}

.feature {
        background: white;
   padding: 1.5rem;
  border-radius :8px;
  box-shadow: var(--shadow-sm);
}

.feature h4 {
	  color: var(--accent-blue);
    margin-bottom: 0.5rem;
   font-weight: 600;
}

.feature p {
   color: #888;
   font-size  :       0.95rem;
  margin   :    0;
}

.approach-image {
               display   : flex;
    justify-content: center;
}

.approach-img {
  max-width: 100%;
    height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
} @media (max-width: 768px) {
    .coaching-approach {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .approach-features {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}.success-stories {
       max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;}

.stories-container {
        display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.story-item {
  background: linear-gradient(135deg, var(--accent-teal), var(--accent-blue));
	color: white;
   padding: 2rem;
   border-radius: 12px;
  box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.story-item:hover
{
  transform: translateY(-5px);
}

.story-item h3 {
          font-size: 1.3rem;
   margin-bottom: 1rem;
    font-weight: 600;

}

.story-item p 
 {
    font-size: 0.95rem;
    line-height: 1.6;
}

.webinars-section {


    max-width: 1200px;
    margin: 0 auto;
     padding: 4rem 2rem;


}

.events-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap   :   2rem;
}

.event-card {
  background: white;
  border: 2px solid var(--border-light);
    border-radius: 12px;
   padding: 2rem;
	transition: all 0.3s ease;
         position: relative;
}

.event-card:hover {
  border-color: var(--accent-teal);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.event-card.featured {
  border-color: var(--accent-purple);
  background: linear-gradient(135deg, rgba(155, 89, 182, 0.05), rgba(74, 144, 226, 0.05));
}

.event-card h3 {
  color: var(--text-dark);
   margin-bottom: 1rem;
    font-size: 1.4rem;
   font-weight: 600;
}

.event-card p		{
  color: #666;
  margin-bottom: 1.5rem;
   line-height: 1.6;
}

.event-tag {
   display: inline-block;
  background-color: var(--accent-teal);
   color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
   font-size: 0.85rem;
	 font-weight     :      600;
}

.event-card.featured .event-tag {
	  background-color: var(--accent-purple);
}

.cta-section {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color :     white;
    padding: 4rem 2rem;
    text-align: center;
   margin: 2rem 0;
}

.cta-content h2 {
   font-size: 2.5rem;
        margin-bottom    :   1rem;
   font-weight: 700;
}

.cta-content p
	{

	    font-size: 1.1rem;
         margin-bottom: 2rem;
	 opacity: 0.95;


}



.cta-button-large   {
    display: inline-block;

		background: white;

	  color: var(--accent-blue);

	               padding: 1.2rem 2.5rem;

		border-radius: 8px;

	  text-decoration: none;

	    font-weight :        600;

	   font-size: 1.1rem;

	    transition    :    all 0.3s ease;

	  box-shadow: var(--shadow-md);
}

.cta-button-large:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}



.contact-section	{
  max-width: 1200px; 
                    margin    :       0 auto; 
 padding: 4rem 2rem;
}

.contact-form {
	background: #f9f9f9;
   padding: 2rem;
    border-radius: 12px;
  max-width    :    600px;
  margin     : 2rem auto;
  box-shadow: var(--shadow-sm);


}

.form-group {

	    margin-bottom: 1.5rem;
       display: flex;
	flex-direction    :    column;
}


.form-group label {
  font-weight: 600;
  color: var(--text-dark);
	margin-bottom: 0.5rem;
	
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
  border: 1px solid var(--border-light);
	border-radius: 6px;
  font-family: inherit;
	 font-size: 1rem;
    transition:        border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;

  border-color: var(--accent-blue);

  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.submit-button		{
  width: 100%;
    padding: 1rem;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
   color: white;
    border :   none;
  border-radius     :  6px;
  font-weight:      600;
   font-size: 1rem;
  cursor: pointer;
               transition     :  all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.submit-button:hover
{
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.footer  
  {
  background-color: var(--primary-dark);
  color: var(--text-light);
		 padding: 3rem 2rem 1rem;
               margin-top   :      4rem;
}

.footer-container {
    max-width: 1200px;
  margin: 0 auto;
     display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
               margin-bottom: 2rem;
} 

.footer-logo-section {
    display: flex;
    align-items    : flex-start;
}

.footer-logo {
	height: 96px;
         width: auto;
  filter: brightness(0) invert(1); 

}

.footer-info h3 {
	 font-size   :1.3rem;
   margin-bottom: 1rem;
  font-weight: 600;
}

.address, .phone {
  margin: 0.5rem 0;

	   color: #bbb;
}

.footer-links h4 {
	font-size: 1.1rem;
   margin-bottom: 1rem;
  color: var(--text-light);
         font-weight: 600;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
   margin-bottom: 0.5rem;
}

.footer-links a {
      color: #bbb;
  text-decoration: none;
    transition: color 0.3s ease;

}

.footer-links a:hover {
  color: var(--accent-teal);
}


.footer-bottom
	{
   text-align: center;
   padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
    color:       #999;
    font-size: 0.9rem;
}

.cookies-alert {
   position  :      fixed;
   bottom     :  20px;
      left:20px;
  right: 20px;
    background   :      white;
   border-radius: 12px;
         padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 999;
    display: none;
  max-width: 400px;
}

.cookies-alert.show {
	display: block;

    animation: slideUp 0.3s ease;
	}@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.cookies-content p {
  margin-bottom: 1rem;
    font-size  :       0.95rem;
  line-height: 1.5;
    color: #666;
}

.cookies-buttons    {
   display: flex;
    gap: 1rem;
				 flex-wrap: wrap;
}

.btn-reject, .btn-settings, .btn-accept {
	cursor: pointer;
	font-size:  0.9rem;
    flex     :    1;
    transition: all 0.3s ease;
       padding: 0.7rem;
					border  :       none;
   font-weight: 600;
   border-radius: 6px;
}

.btn-reject {
    background: #f0f0f0;
   color:        #333;

}

.btn-reject:hover {
    background: #e0e0e0;

}

.btn-settings {
    background: #e0e0e0;
  color: #333;
}

.btn-settings:hover {
    background: #d0d0d0;
}

.btn-accept {
  background: var(--accent-teal);
   color: white;
}

.btn-accept:hover {
	background  :   #0fa897;
}

.cookies-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;
}

.cookies-modal.show {
  display: flex;
    animation: fadeIn 0.3s ease;
}@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}.modal-content     {


    background: white;
  border-radius: 12px;
    width: 90%;
	max-width: 500px;
  box-shadow: var(--shadow-lg);
	}

.modal-header {
 display: flex; 
    justify-content  :      space-between; 
	 align-items     :   center; 
    padding: 1.5rem; 
  border-bottom: 1px solid var(--border-light);
}

.modal-header h3		{
  color: var(--text-dark);
	font-size   :        1.3rem;
    margin: 0;
}

.modal-close {
    font-size: 1.5rem;
  border: none;
   color: #999;
  background: none;
	 cursor     :  pointer;
}

.modal-body    {
   padding   :1.5rem;
}

.cookie-option {


  margin-bottom: 1.5rem;


}

.cookie-option label {
     display: flex;
    align-items: center;
    gap: 0.8rem;
   cursor: pointer;
  font-weight: 600;
  color: var(--text-dark);
     }

.cookie-option input[type="checkbox"] {
		 width: 18px;
    height: 18px;
  cursor: pointer;
}

.cookie-label {
  display: block;
}

.cookie-description {
    color: #888;
  font-size: 0.9rem;
	margin: 0.5rem 0 0 2rem;
}

.modal-footer
{
    padding   :     1.5rem;

	  border-top: 1px solid var(--border-light);

		display: flex;

	    gap: 1rem;
}

.btn-save-settings	{

	   flex: 1;
  padding: 0.8rem;
  background: var(--accent-teal);
  color: white;
  border: none;
   border-radius: 6px;
       font-weight: 600;
   cursor: pointer;
    transition: all 0.3s ease;
     }

.btn-save-settings:hover {
          background     :     #0fa897;
}@media (max-width: 768px) {
    .cookies-alert {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
    }

    .modal-content {
        width: 95%;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }
}.services-hero {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple)); 
	  color: white; 
	    padding: 5rem 2rem; 
	         text-align: center;
}

.services-hero-content h1

{
   font-size: 3rem;
     margin-bottom: 1rem;
		font-weight: 700;
}

.services-hero-content p {
  font-size: 1.3rem;
  opacity: 0.95;
}



.services-main     {
        max-width    :        1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.services-container   {
	       display :       flex;
               flex-direction    :    column;
   gap    :4rem;


}

.service-detail {
   border-radius: 12px;
  overflow :     hidden;
      background: white;
  box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-detail:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-detail-header  {
  background: linear-gradient(135deg, #f5f7fa, #e9ecef);
   padding: 2rem;
  border-bottom: 3px solid var(--accent-teal);
}

.service-detail-header h2 {
    font-size:   2rem;
  color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.service-subtitle {
  color: #666;
               font-size: 1.1rem;
          margin   :       0;
}

.service-detail-content
	{
    display: grid;
   grid-template-columns: 1fr 1fr;
          gap: 2rem;
	padding: 2.5rem;
}

.service-detail-image {
    align-items: center;
    display: flex;
   justify-content: center;
}

.detail-img {

		 width: 100%;
    height: auto;
   border-radius: 8px;
  box-shadow: var(--shadow-md);
	}

.service-detail-text {
      display: flex;
   flex-direction  :    column;
    justify-content   : center;

}

.service-detail-text p {
      color     :#666;
    margin-bottom: 1rem;
   line-height: 1.8;
} 

.service-list {
   list-style: none;
    margin: 1.5rem 0;
}

.service-list li {
   padding: 0.6rem 0;

				position: relative;

	  padding-left  : 1.8rem;

	    line-height:     1.6;

	   color: #666;
}

.service-list li:before{
  content: "→";
   position    :  absolute;
    left: 0;
  color: var(--accent-teal);
   font-weight: bold;
}

.highlight-text {
  background: linear-gradient(135deg, rgba(26, 188, 156, 0.1), rgba(74, 144, 226, 0.1));
  padding: 1rem;
    border-radius: 6px;
  border-left: 4px solid var(--accent-teal);
  color: #555 !important;
}

.service-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
   gap: 1rem;
  margin-top: 1.5rem;


}

.info-item   {
	background: #f9f9f9;
  padding  :        1rem;
  border-radius: 6px;
  border: 1px solid var(--border-light);
}

.info-item h4 {
  color: var(--accent-blue);
    font-size: 0.9rem;
   text-transform   :       uppercase;
                    margin-bottom:    0.5rem;
}

.info-item p {
  margin: 0;
	color   :#666;
    font-size    :   0.95rem;
}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .service-detail-content {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .service-info {
        grid-template-columns: 1fr;
    }
}.process-section {
   max-width: 1200px;
   margin  : 4rem auto;
		padding: 0 2rem;
}

.process-steps {
    display    :   grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  background: white;
    padding: 2rem;
	 border-radius    :      12px;
                    text-align: center;
  box-shadow: var(--shadow-sm);
  transition :     all 0.3s ease;
  border-top: 4px solid var(--accent-blue);
}

.process-step:hover {
     box-shadow: var(--shadow-md);
  transform: translateY(-3px);


}

.step-number {

	     width: 50px;
    height: 50px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
   color: white;
    border-radius: 50%;
               display: flex;
    align-items: center;
  justify-content: center;
	font-size: 1.5rem;
  font-weight: 700;
   margin: 0 auto 1rem;

}

.process-step h3 {
  color: var(--text-dark); 
  margin-bottom    :     0.8rem; 
    font-weight: 600;
}

.process-step p {
   color: #888;
    font-size: 0.95rem;
     line-height: 1.6;
}

.pricing-section

{
   max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.pricing-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
   margin-top: 3rem;
}

.pricing-card {
   background: white;
  border: 2px solid var(--border-light);
  border-radius: 12px;
	padding: 2rem;
    text-align: center;
   transition: all 0.3s ease;
}

.pricing-card:hover

{
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);


}

.pricing-card.featured 
 {
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.05), rgba(155, 89, 182, 0.05));
  border-color: var(--accent-purple);
  transform: scale(1.05);
}

.pricing-card h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.price {
  font-size: 2.5rem;
  color: var(--accent-blue);
	font-weight: 700;
    margin: 0.5rem 0;
}

.price-desc {
	color: #999;
  margin: 0 0 1.5rem;
	 font-size: 0.9rem;
}

.pricing-features {
	    margin-bottom     :   1.5rem;
 text-align: left;
   list-style: none;}

.pricing-features li


{
    padding: 0.6rem 0;
    color: #666;
   padding-left: 1.5rem;
    position: relative;
}

.pricing-features li:before {

  content: "✓";
  position: absolute;
         left    :  0;
  color: var(--accent-teal);
  font-weight: bold; 
	}

.why-choose-us {
         max-width  :     1200px; 
	   margin: 4rem auto; 
	  padding: 0 2rem;
}

.reasons-grid {

	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
   margin-top: 3rem;
	}

.reason-card  
  {
  background: linear-gradient(135deg, white, #f9f9f9);
   padding: 2rem;
        border-radius: 12px;
  border-left: 4px solid var(--accent-teal);
  box-shadow: var(--shadow-sm);
  transition:       all 0.3s ease; 
	
}

.reason-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-left-color: var(--accent-blue);
}

.reason-card h3 {
  color: var(--text-dark);
  margin-bottom: 0.8rem;
	font-weight: 600;
}

.reason-card p	{
   color: #888; 
	  font-size: 0.95rem; 
	   line-height    :   1.6; 
	   margin: 0;
	} 

.cta-section-services {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: white;
    padding: 3rem 2rem;
   text-align: center;
   border-radius: 12px;
    max-width: 1200px;
   margin: 4rem auto;
	
}

.cta-section-services h2 {
   font-size: 2rem;
    margin-bottom: 0.5rem;
}

.cta-section-services p 
 {
    font-size: 1.1rem;
      margin-bottom:2rem;
	 opacity: 0.95;
}

.thankyou-container {
    max-width: 900px;
   margin: 0 auto;
  padding     :     4rem 2rem;
    min-height: 70vh;
   display    :flex;
  align-items: center;
  justify-content     :  center;
}

.thankyou-content    {
    background: white;
   border-radius: 16px;
        padding: 3rem;
  box-shadow: var(--shadow-lg);
		 text-align: center; 
	
}

.success-icon {
		width: 80px;
          height: 80px;
  background: linear-gradient(135deg, var(--accent-teal), #11998e);
    color: white;
        border-radius: 50%;
   display: flex;
    align-items: center;
  justify-content: center;
  font-size: 3rem;
   font-weight: bold;
    margin     :0 auto 1.5rem;
  box-shadow: var(--shadow-md);
}  

.thankyou-content h1 {
  color: var(--text-dark);
   font-size: 2.5rem;
	margin-bottom: 0.5rem;
   font-weight: 700;
}

.thankyou-message {


    color: #666;
  font-size: 1.2rem;
        margin-bottom   :        2rem;
	}

.thankyou-details {
    text-align :      left;
  margin: 2rem 0;
}

.thankyou-details p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
    color: #666;
	
}

.next-steps 
 {
  background: linear-gradient(135deg, #f5f7fa, #e9ecef);
                    padding: 2rem;
    border-radius: 12px;
  margin: 2rem 0;
  border-left: 4px solid var(--accent-teal); 

}

.next-steps h2   {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.steps-list {
  display   :     grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.step-item
	{
    background: white;
    padding: 1rem;
         border-radius: 8px;
  box-shadow: var(--shadow-sm);
   display: flex;
   gap: 1rem;
}

.step-num {
   width: 40px;
  height: 40px;
  background: var(--accent-blue);
    color: white;
   border-radius: 50%;
	display: flex;
    align-items: center;
   justify-content: center;
  font-weight: 700;
   flex-shrink: 0;
}

.step-item p

{
        margin   :  0;
   font-size: 0.95rem;
    color: #666;
	text-align: left;
}

.contact-info-box {
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(26, 188, 156, 0.1));
  padding: 1.5rem;
				 border-radius: 8px;
       margin: 1.5rem 0;
  border: 1px solid rgba(74, 144, 226, 0.2);
}

.contact-info-box h3 {
  color: var(--accent-blue);
  margin-bottom: 1rem;
   font-size: 1.1rem;
}

.contact-info-box p {
  margin: 0.5rem 0;
		 color: #666;
    font-size: 0.95rem;
}

.faq-section {
      margin-top: 1.5rem;

  text-align: left;
}

.faq-section h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
	font-size: 1.2rem;
    text-align: center;
}

.faq-item {
    background: #f9f9f9;
 padding: 1rem;
  margin-bottom: 1rem;
    border-radius: 6px;
  border-left: 3px solid var(--accent-purple); 
	
}

.faq-item h4
	{
  color: var(--accent-purple);
  margin-bottom: 0.5rem;

}

.faq-item p {
	margin: 0;
    color: #666;
  font-size   :      0.9rem;
}

.action-buttons {
  display: flex;
   gap: 1rem;
  margin-top: 2rem;
   justify-content: center;
     flex-wrap:   wrap;
}

.button-primary, .button-secondary {
    -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
   padding: 1rem 2rem;
   -webkit-border-radius: 8px;
    border-radius  :       8px;
    -moz-border-radius: 8px;
  text-decoration: none;
	font-weight    :  600;
	 transition   :      all 0.3s ease;
   -webkit-transition   :all 0.3s ease;
    display: inline-block;
}

.button-primary {


  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: white;
  box-shadow: var(--shadow-md);
     }  

.button-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.button-secondary {


	background: white;
  color: var(--accent-blue);
  border: 2px solid var(--accent-blue);
	}

.button-secondary:hover {
  background: var(--accent-blue);
  color: white;
}

.recommended-services	{

  max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}


.services-preview-grid{

	   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                    gap: 2rem;
  margin-top: 3rem;


}

.service-preview-card {
        background:     white;
          border-radius   :       12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
	transition: all 0.3s ease;
}

.service-preview-card:hover   {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.preview-image {
  object-fit: cover;
    height: 200px;
    width: 100%;
}

.service-preview-card h3 
 {
	padding: 1rem 1.5rem 0.5rem;
  color: var(--text-dark);
   font-size: 1.2rem;
   font-weight: 600;
}

.service-preview-card p {
	padding: 0 1.5rem; 
	   color  :  #666; 
	  font-size: 0.95rem; 
		 margin  :      0.5rem 0;
}

.learn-more-link {
   display: inline-block;
	 padding :        1rem 1.5rem;
  color: var(--accent-blue);
         text-decoration: none;
 font-weight :        600;
    transition: all 0.3s ease;
}

.learn-more-link:hover {


  color: var(--accent-purple);


}@media (max-width: 768px) {
    .thankyou-content {
        padding: 2rem;
    }

    .thankyou-content h1 {
        font-size: 1.8rem;
    }

    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .steps-list {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        flex-direction: column;
    }

    .button-primary, .button-secondary {
        width: 100%;
    }

    .services-hero-content h1 {
        font-size: 2rem;
    }

    .service-detail-content {
        grid-template-columns: 1fr;
    }
}.policy-section   {
          padding: 80px 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 70vh;
}

.policy-container {
    max-width: 900px;
  margin :  0 auto;
	background: white;
   padding :   3rem;
 border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.policy-container h1 {


  font-size     :  2.8rem;
  color: var(--text-dark);
    margin-bottom : 2rem;
    font-weight: 700;
  border-bottom: 3px solid var(--accent-teal);
    padding-bottom: 1rem;
	}

.policy-container h2 {
   font-size: 1.6rem;
  color: var(--accent-blue);
  margin-top: 2rem;
  margin-bottom: 1rem;
    font-weight :    600;}

.policy-container p {
   color: #666;
  margin-bottom: 1.2rem;
  line-height: 1.8;
  font-size  :1rem;
   text-align: justify;

}

.policy-container strong {
	  color: var(--text-dark);
  font-weight    :        600;


}@media (max-width: 768px) {
    .policy-section {
        padding: 60px 1rem;
    }

    .policy-container {
        padding: 2rem;
    }

    .policy-container h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policy-container h2 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
    }

    .policy-container p {
        font-size: 0.95rem;
        line-height: 1.7;
        text-align: left;
    }
}