* {
   margin: 0;
  padding: 0;
  box-sizing  :  border-box;
}

html {
     scroll-behavior: smooth;
} 

body {


  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  color: #2c3e50;
   line-height: 1.6;
    background-color   :       #ffffff;}

.navbar {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
   padding: 1.5rem 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
   position: sticky;
  top   :      0;
      z-index: 1000;

}

.navbar__container {
	max-width: 1200px;
   margin: 0 auto;
   display: flex;
   justify-content: space-between;
    align-items: center;
}

.navbar__logo-section	{
   display: flex;
  align-items :center;
}

.navbar__logo {
    height: 64px;
  width   :auto;
  filter: brightness(0) invert(1);
}

.navbar__menu {
   display: flex;
    list-style: none;
    gap: 3rem;
	 align-items: center; 
	
}  

.navbar__link {
	 text-decoration:     none; 
	    color: #2c3e50; 
	  font-weight: 500; 
	    transition: color 0.3s ease; 
	  position: relative; 

} 

.navbar__link::after		{
  content: '';
  position: absolute;
  bottom: -5px;
   left    :0;
  width: 0;
   height: 2px;
  background: linear-gradient(90deg, #3498db, #2980b9);
  transition: width 0.3s ease;
}

.navbar__link:hover::after {
   width: 100%;
}

.navbar__burger {
   display: none;
   flex-direction: column;
        background: none;
   border: none;
   cursor: pointer;
    padding: 0.5rem;
}

.navbar__burger-line {
    width: 25px;
  height: 3px;
   background-color: #2c3e50;
  margin: 5px 0;
  transition: 0.3s;
	 border-radius  : 2px;
}

.hero    {

	    display : grid;
   grid-template-columns   :    1fr 1fr;
   gap: 4rem;
  align-items: center;
    max-width: 1200px;
  margin: 0 auto;
    padding:     5rem 2rem;


}

.hero__content {
   z-index: 2;

}

.hero__title {
      font-size :   3.5rem;
    font-weight: 700;
  line-height: 1.2;
    margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
	 background-clip: text;
}

.hero__subtitle {

   font-size: 1.25rem;
    color: #555;
  margin-bottom    :      2rem;
   line-height :    1.8;


}

.hero__button {
   display: inline-block;
    padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  text-decoration: none;
         border-radius   :      50px;
  font-weight : 600;
   transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3); 
	
}

.hero__button:hover {


  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);

}

.hero__image {
   position: relative;
}

.hero__img {
    width: 100%;
    height: auto;
    border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}



.about-coaching {
  background: #f8f9fa;
   padding: 5rem 2rem;
    max-width :     1200px;
  margin: 0 auto;
    margin-top: 3rem;
}

.about-coaching__wrapper {
	          display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;}

.about-coaching__content h2 {
  font-size: 2.5rem;
   margin-bottom: 1.5rem;
  color: #2c3e50;
}

.about-coaching__text {
   font-size    :     1.1rem;
  color: #555;
  margin-bottom: 2rem;
   line-height: 1.8;
}

.about-coaching__features {
    display :       grid;
	 grid-template-columns     :      1fr;
  gap : 1.5rem;
}

.feature-box{
       padding    :      1.5rem;
   background: white;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
   border-left: 4px solid #3498db;}

.feature-box h3 {
    color    :    #2c3e50;
   font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.feature-box p {
   color   :  #666;
	font-size: 0.95rem;
}

.about-coaching__image {
                  position     :relative;
	
	}

.about-coaching__img {
   width     :      100%;
    border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.section-title


{
  font-size :     2.8rem;
  text-align: center;
    margin-bottom: 3rem;
	color  : #2c3e50;
    position: relative;
       padding-bottom: 1rem;
}


.section-title::after {
  content: '';
  position: absolute;
    bottom: 0;
                    left :       50%;
  transform: translateX(-50%);
   width: 80px;
    height: 4px;
  background: linear-gradient(90deg, #3498db, #2980b9);
          border-radius: 2px;
}

.services-preview {
  max-width: 1200px;
    padding :5rem 2rem;
    margin:  0 auto;
}


.services-grid {
  display :      grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 2.5rem;
}



.service-card {
   background: white;
   border-radius: 12px;
   overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-card__image {
  width: 100%;
     height: 250px;
    overflow: hidden;
}  

.service-card__img {
	 width: 100%;
  height: 100%;
       object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-card__img	{
  transform: scale(1.05);
}

.service-card__title {
  font-size: 1.5rem;
   color: #2c3e50;
   padding: 1.5rem 1.5rem 0.5rem;
}

.service-card__desc {
	 padding: 0 1.5rem;
		color   :    #666;
	  font-size: 0.95rem;
	    line-height  : 1.6;
}

.service-card__price {

	          display: block;
   padding: 1.5rem 1.5rem 1.5rem;
  color: #3498db;
  font-weight: 600;
    font-size :1.1rem;
}  

.webinars-section {
  background: linear-gradient(135deg, #ecf0f1 0%, #fff 100%);
  padding :       5rem 2rem;
                    max-width :       1200px;
   margin: 3rem auto 0;
}

.webinars-content 
 {
    display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 4rem;
	align-items :       center;
}

.webinars-text
	{
    color: #555;
  font-size: 1.1rem;
  line-height    :   1.8;
}

.webinar-list {
	list-style     :    none;
    margin-top:       1.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid #3498db;
}

.webinar-list li {
       padding :0.8rem 0;

		padding-left: 1.5rem;

	  position: relative;

		color: #2c3e50;
	}

.webinar-list li::before {
     content: '✓';
    position     :  absolute;
  left: 0;
  color: #3498db;
   font-weight: bold;
	}

.webinars-image {
 position  : relative;

}

.webinars-img {
  width: 100%;

  border-radius: 15px;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1); 
	
}

.success-stories {
    background: white;

    margin  : 0 auto;

  max-width: 1200px;

  padding: 5rem 2rem;
}

.stories-grid {
  display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		 gap: 2rem;
}  

.story-item {
                    transition: box-shadow 0.3s;
   border-left: 4px solid #2980b9;
    background: #f8f9fa;
  border-radius: 12px;
   padding   :      2rem;
}

.story-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.story-item h3    {
    color: #2c3e50;
  margin-bottom     :        1rem;
   font-size: 1.2rem;
}

.story-item p {
    color: #666;
  line-height     :    1.7;
  font-style: italic;
   margin-bottom : 1rem;
}


.story-author


{

	     display: block;
               color: #3498db;
    font-weight: 600;
   font-size: 0.9rem;
}

.cta-main {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
         color: white;
    padding: 4rem 2rem;
	text-align: center;
  margin: 3rem 0; 
	
}

.cta-main__title {
  font-size: 2.5rem; 
	               margin-bottom: 1rem;
}

.cta-main__text {
  font-size: 1.2rem;
	margin-bottom: 2rem;
   opacity     :  0.95;
	
}

.cta-main__button {
       display: inline-block;
         padding: 1rem 2.5rem;
 background: white;
   color     :       #3498db;
  text-decoration     :   none;
	 border-radius     :        50px;
      font-weight: 600;
   transition  :transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.cta-main__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.contact-section {
   padding: 5rem 2rem;
   max-width: 1200px;
   margin: 0 auto;
  background  : #f8f9fa;
	
}

.contact-wrapper {

	    display: grid;
	  grid-template-columns: 2fr 1fr;
	    gap:       3rem; 
	

}

.contact-form {
    background: white;
    padding  :     2rem;
	 border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	
}

.form-group {
	 margin-bottom: 1.5rem;
   display: flex;
    flex-direction: column;
}

.form-label {
    margin-bottom: 0.5rem;
                    font-weight: 600;
  color: #2c3e50; 

}

.form-input,
.form-textarea {
    padding: 0.75rem 1rem;
     border   : 2px solid #ecf0f1;
	border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
  font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
  border-color     :   #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-textarea {
    resize: vertical;
   line-height: 1.6;
}

.form-submit {
  background: linear-gradient(135deg, #3498db, #2980b9);
   color: white;
   border: none;
    padding: 1rem 2rem;
  border-radius: 50px;
   font-weight: 600;
	cursor :    pointer;
	 transition: transform 0.3s, box-shadow 0.3s;
   font-size: 1rem;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.contact-info {
   background: white;
  padding: 2rem;
    border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-info h3 {
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-size: 1.3rem; 
	
}

.info-item {
   margin-bottom: 1.5rem;
}

.info-item strong {


   display: block;
   color :#3498db;
       margin-bottom: 0.5rem;


}

.info-item p {
	color: #666;
   line-height: 1.6;
}

.info-item a {
  color: #3498db;
    text-decoration  :       none;
	transition: color 0.3s;
}

.info-item a:hover{

   color: #2980b9;
	}

.footer {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
      color: #ecf0f1;
      padding: 4rem 2rem 2rem;
      margin-top: 5rem;


}

.footer__container {
		 max-width: 1200px;

	   margin:       0 auto;
}

.footer__logo-section {
    align-items: center;
               margin-bottom: 3rem;
    display: flex;
}

.footer__logo {
               height:   86px;
   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;
    padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
     }

.footer__column h4
{
          margin-bottom     :  1rem;
    font-size: 1.1rem;
    color: #3498db;
}

.footer__column ul {
    list-style: none;
}

.footer__column li {
                    margin-bottom: 0.5rem;
}

.footer__column a {
   color: #ecf0f1;
    text-decoration: none;
   transition: color 0.3s;
}



.footer__column a:hover {
    color: #3498db;
}

.footer__column p {
    color  :#bdc3c7;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.footer__bottom
	{
    text-align: center; 
	                    padding-top: 1rem; 
	    color: #95a5a6; 
	  font-size: 0.9rem;
}@media (max-width: 768px) {
    .navbar__menu {
        display: none;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .navbar__menu.active {
        display: flex;
    }

    .navbar__menu li {
        width: 100%;
    }

    .navbar__menu li a {
        display: block;
        padding: 1rem 2rem;
        border-bottom: 1px solid #ecf0f1;
    }

    .navbar__burger {
        display: flex;
    }

    .navbar__burger.active .navbar__burger-line:nth-child(1) {
        transform: rotate(-45deg) translate(-8px, 8px);
    }

    .navbar__burger.active .navbar__burger-line:nth-child(2) {
        opacity: 0;
    }

    .navbar__burger.active .navbar__burger-line:nth-child(3) {
        transform: rotate(45deg) translate(-8px, -8px);
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
    }

    .hero__title {
        font-size: 2rem;
    }

    .about-coaching__wrapper,
    .webinars-content {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 1.5rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .navbar__logo {
        height: 50px;
    }

    .footer__logo {
        height: 70px;
    }
}

.services-hero {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
    text-align: center;
    color: white;
}

.services-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="1200" height="600" fill="url(%23grid)"/></svg>');
    z-index: 1;
}

.services-hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.services-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.services-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
    line-height: 1.6;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-detailed {
    padding: 5rem 2rem;
    background: white;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 5rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid #ecf0f1;
}

.service-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-detail--reverse {
    direction: rtl;
}

.service-detail--reverse > * {
    direction: ltr;
}

.service-detail__image {
    position: sticky;
    top: 100px;
}

.service-detail__img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-detail__content h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-intro {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-details-box {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 4px solid #3498db;
}

.service-details-box h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.service-details-box p {
    color: #555;
    line-height: 1.7;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.service-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.service-pricing {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    border: 2px solid #ecf0f1;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #ecf0f1;
}

.price-item:last-child {
    border-bottom: none;
}

.price-item strong {
    color: #2c3e50;
    font-size: 0.95rem;
}

.price {
    color: #3498db;
    font-weight: 700;
    font-size: 1.2rem;
}

.service-cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    margin-top: 1rem;
}

.service-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.comparison-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: #f8f9fa;
}

.comparison-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.comparison-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    border-bottom: 1px solid #ecf0f1;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-header {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    font-weight: 600;
}

.comparison-cell {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.9rem;
}

.comparison-row:first-child .comparison-cell {
    text-align: left;
    justify-content: flex-start;
}

.comparison-cell.checked {
    color: #2ecc71;
    font-weight: 700;
}

.faq-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.faq-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s;
    border-left: 4px solid #3498db;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.faq-question {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.faq-answer {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

.cta-services {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    margin-top: 3rem;
}

.cta-services h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-services p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-services__button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: #3498db;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.cta-services__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.thankyou-hero {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    padding: 5rem 2rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.thankyou-container {
    max-width: 700px;
    text-align: center;
    animation: slideInUp 0.6s ease;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.thankyou-icon {
  width: 120px;
      height: 120px;
    margin: 0 auto 2rem;
  animation: scaleIn 0.6s ease;
}@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}.thankyou-icon svg {
  width    :     100%;
   height: 100%;
}

.thankyou-title{
  font-size: 3rem;
  font-weight: 700;
   margin-bottom: 0.5rem;
   line-height: 1.2;
}

.thankyou-subtitle {
    font-size: 1.3rem;
	 margin-bottom: 2rem;
  opacity: 0.95;
}

.thankyou-message {


  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
   border-radius: 12px;
   margin: 2rem 0;
  backdrop-filter: blur(10px);
     }

.thankyou-message p {
   line-height: 1.7;
		margin-bottom: 1rem;
		font-size: 1rem;
}

.thankyou-message p:last-child     {
	margin-bottom: 0;
}

.next-steps {
	   text-align: left;
        margin: 3rem 0;
	}

.next-steps h2 {
  text-align: center;
  margin-bottom: 2rem;
   font-size: 1.8rem;
}  

.steps-grid {
    display   :     grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1.5rem;
}

.step {
  background: rgba(255, 255, 255, 0.1); 
    padding    :   1.5rem; 
   border-radius:10px; 
  backdrop-filter: blur(10px); 
  text-align: center;
}

.step-number {
  display: inline-flex;
   align-items: center;
   justify-content: center;
  width: 50px;
  height: 50px;
  background: white;
 color: #2ecc71;
  border-radius: 50%;
		 font-weight: 700;
      font-size: 1.5rem;
   margin-bottom: 1rem;
}

.step h3 {
    margin-bottom: 0.5rem;
	   font-size:     1.1rem;
}

.step p {
  font-size     :      0.9rem;
    opacity: 0.9;
	}

.contact-during-wait {
  background: rgba(255, 255, 255, 0.15);
  padding: 2rem;
   border-radius: 12px;
  margin: 2rem 0;
}

.contact-during-wait h2  {
               margin-bottom: 1rem;
  text-align:  center;
  font-size: 1.3rem;
}

.contact-during-wait p {
   margin-bottom  :   1rem;
    text-align: center;
}

.call-button {
    display :     inline-block;
   padding: 1rem 2rem;
      background  :     white;
   color: #2ecc71;
	text-decoration: none;
    border-radius:      50px;
    font-weight: 600;
    font-size: 1.2rem;
    transition  :       transform 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);

}

.call-button:hover {
  transform: translateY(-2px);
} 

.call-info
	{
    font-size: 0.9rem;
   opacity: 0.85;


}

.back-to-home {
  display: flex;
	flex-direction: column;
   gap: 1rem;
  margin-top: 2rem;
}

.back-button {
         display: inline-block;
    padding: 0.85rem 2rem;
   background: white;
	 color     :        #2ecc71;
    text-decoration: none;
  border-radius :50px;
  font-weight  :  600;
    transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}


.back-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.back-button.secondary{
  background: rgba(255, 255, 255, 0.2);

   color: white;

  border: 2px solid white; 

}

.back-button.secondary:hover {

	  background: rgba(255, 255, 255, 0.3);}

.offer-section {

   padding: 5rem 2rem;
  max-width    :  1200px;
  margin: 0 auto;
 background: #f8f9fa; 


}

.offer-section h2 {
     font-size: 2rem;
          text-align   :      center;
  margin-bottom: 3rem;
	color: #2c3e50;


}

.offer-content {
    display  :    grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.offer-item {
   background: white;
	 padding: 2rem;
       border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
   transition: transform 0.3s, box-shadow 0.3s;
}

.offer-item:hover     {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.offer-item h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.offer-item p {
  color: #666;
   margin-bottom    :    1rem;
  line-height: 1.6; 

}


.offer-link		{
      color: #3498db;
    text-decoration : none;
          font-weight: 600;
   transition: color 0.3s;
}

.offer-link:hover {
    color: #2980b9;
}

.faq-thankyou {
   padding: 3rem 2rem;
   max-width: 1200px;
   margin: 0 auto;
}

.faq-thankyou h2    {
  font-size: 1.8rem;

	  text-align: center;

	  margin-bottom: 2rem;

	     color  :        #2c3e50;
}

.faq-container-short {
   display :     grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.faq-item-short {
	background: white;
   padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item-short h3 {
   color: #2c3e50;
  margin-bottom     :  0.75rem;
  font-size: 1rem;
	}

.faq-item-short p {
	 color: #666;
  font-size :        0.9rem;
   line-height: 1.6;


}@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2rem;
    }

    .services-hero p {
        font-size: 1rem;
    }

    .service-detail {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-detail--reverse {
        direction: ltr;
    }

    .service-detail__image {
        position: static;
    }

    .service-detail__content h2 {
        font-size: 1.5rem;
    }

    .comparison-row {
        grid-template-columns: 1fr 0.8fr 0.8fr 0.8fr 0.8fr;
    }

    .comparison-cell {
        padding: 0.75rem 0.25rem;
        font-size: 0.75rem;
    }

    .faq-container {
        grid-template-columns: 1fr;
    }

    .thankyou-title {
        font-size: 2rem;
    }

    .thankyou-subtitle {
        font-size: 1.1rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .back-to-home {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 3rem 1rem;
    }

    .services-hero h1 {
        font-size: 1.5rem;
    }

    .service-pricing {
        flex-direction: column;
    }

    .price-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .comparison-row {
        grid-template-columns: 1fr 0.6fr 0.6fr 0.6fr 0.6fr;
    }

    .comparison-cell {
        padding: 0.5rem 0.1rem;
        font-size: 0.65rem;
    }

    .thankyou-container {
        padding: 1rem;
    }

    .thankyou-icon {
        width: 80px;
        height: 80px;
    }

    .call-button {
        font-size: 1rem;
    }
}.policySection {
    padding: 80px 2rem;
                    background: #f8f9fa;
  min-height: calc(100vh - 300px); 

}

.policyContainer {
    max-width: 900px;

	  margin: 0 auto;

	 text-align: left;
}

.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;
   border-left: 4px solid #3498db;
         padding-left: 1rem;
}

.policyContainer p {
       color: #555;
   margin-bottom: 1.2rem;
  line-height: 1.8;
    font-size: 1rem;
  text-align: justify;

}

.policyContainer strong {
	    color:      #2c3e50;
	font-weight: 600;}

.policyContainer h2:first-of-type {

	   margin-top    :   1.5rem;
     }

.policyContainer ul,
.policyContainer ol {

    margin: 1.5rem 0 1.5rem 2rem; 
	    line-height : 1.8;
     }

.policyContainer li {
    color: #555;
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.policyContainer li strong 
 {
   color: #2c3e50;
}

.policyContainer {
    background: white;
    padding: 3rem;
   border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer {
        padding: 2rem 1.5rem;
        max-width: 100%;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        text-align: left;
    }

    .policyContainer ul,
    .policyContainer ol {
        margin-left: 1.5rem;
    }

    .policyContainer li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
        min-height: calc(100vh - 250px);
    }

    .policyContainer {
        padding: 1.5rem 1rem;
    }

    .policyContainer h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        border-bottom-width: 2px;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
        padding-left: 0.75rem;
        border-left-width: 3px;
    }

    .policyContainer p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }

    .policyContainer ul,
    .policyContainer ol {
        margin-left: 1rem;
    }

    .policyContainer li {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
}

@media print {
    .policySection {
        background: white;
        padding: 0;
    }

    .policyContainer {
        box-shadow: none;
        padding: 0;
    }

    .policyContainer h1,
    .policyContainer h2 {
        page-break-after: avoid;
    }

    .policyContainer p {
        orphans: 2;
        widows: 2;
    }
}