* {
	margin  :      0;
	padding: 0;
  box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --accent-blue: #3498db;
    --accent-teal: #1abc9c;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --white: #ffffff;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
    line-height    :    1.6;
  background-color: var(--white);
}

.navigation {
  background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    padding: 1.2rem 2rem;
    position: sticky;
   top: 0;
   z-index: 1000;
  box-shadow: var(--shadow);
}

.nav-container {
      max-width: 1200px;
    margin: 0 auto;
   display: flex;
    justify-content: space-between;
  align-items: center;

}

.nav-logo {
  flex: 0 0 auto;
}

.logo-img {
    height   :        45px;
	width:      auto;
  filter: brightness(0) invert(1);
}

.nav-links {


    display: flex;
    list-style: none;
  gap: 2rem;
     }

.nav-links a {


  color: var(--white);
   text-decoration: none;
   font-weight: 500;
  transition :        all 0.3s ease;
  position: relative;
     }

.nav-links a:after {
  content: '';
   position:     absolute;
    bottom: -5px;
   left     :     0;
  width: 0;
	height: 2px;
  background: var(--accent-teal);
  transition: width 0.3s ease;
} 

.nav-links a:hover:after
{
    width: 100%;
}

.burger-menu

{
   display:    none;
   flex-direction: column;
   background: none;
   border: none;
  cursor: pointer;
   gap: 6px;
}

.burger-line {
	    width: 25px;
         height: 3px;
  background: var(--white);
   border-radius: 2px;
   transition    :     all 0.3s ease;
	}

.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-section {
    display: grid;
   grid-template-columns: 1fr 1fr;
   align-items: center;
                    gap: 4rem;
   padding    :  4rem 2rem;
   max-width: 1200px;
   margin: 0 auto;
    min-height: 600px;
}

.hero-content h1 {


  font-size: 3.2rem; 
	  line-height: 1.2; 
	    margin-bottom: 1rem; 
	  color: var(--primary-color); 
	         font-weight: 700;

}

.hero-subtitle     {
    font-size: 1.2rem;
  color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}  

.cta-button {
   display: inline-block;
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-teal) 100%);
  color: var(--white);
   padding: 1rem 2.5rem;
    border-radius    :  50px;
  text-decoration: none;
   font-weight: 600;
   transition: all 0.3s ease;
  box-shadow: var(--shadow);
  border: none;
    cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.hero-image {
    width: 100%;
   height     :    100%;
    object-fit: cover;
    border-radius: 15px;
  box-shadow: var(--shadow-hover);
}

.services-preview {
  background: linear-gradient(to bottom, var(--bg-light), var(--white));
	    padding :       5rem 2rem;
	   text-align :        center;
}


.services-preview h2
{
	font-size   :    2.5rem;
    margin-bottom: 3rem;
  color: var(--primary-color);
}

.services-grid {

        display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
 max-width  :      1200px;
   margin: 0 auto;
	}

.service-card    {
  background: var(--white);
    padding: 2rem;
    border-radius: 12px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border-top: 4px solid var(--accent-teal);
}

.service-card:hover {

	  transform: translateY(-8px);

  box-shadow: var(--shadow-hover);

}

.service-card h3 {

	  color: var(--accent-blue);
   margin-bottom: 1rem;
   font-size: 1.4rem;
	}

.service-card p {
  color: var(--text-light);
               line-height: 1.8;
}

.workspace-showcase    {

  padding: 5rem 2rem;
   margin: 0 auto;
  max-width: 1200px;
}

.workspace-showcase h2 {
    font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--primary-color);
 text-align: center; 
	
}

.showcase-container {
    display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 3rem;
   align-items: center;
}

.showcase-img {
    width: 100%;
        height: auto;
   border-radius     : 15px;
  box-shadow: var(--shadow-hover);
}

.showcase-text h3 {
   font-size: 2rem;
          margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.showcase-text p {
  color: var(--text-light);
    line-height: 1.9;
   font-size: 1.05rem; 
	
}

.joint-ventures    {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 5rem 2rem;
}

.joint-ventures h2 {
   font-size: 2.5rem;
   margin-bottom   :1rem;
  color: var(--primary-color);
   text-align: center;
}

.section-intro 
 {


   text-align: center;
  color: var(--text-light);
               font-size: 1.1rem;
   margin-bottom: 3rem;
    max-width    :   600px;
    margin-left: auto;
  margin-right: auto;
}

.ventures-wrapper {
  max-width: 1200px;
  margin  :    0 auto;
   display: grid;
  grid-template-columns: 1fr 1fr;
	gap: 3rem;
   align-items: center;
}

.ventures-img {
   width: 100%;
    height: auto;
    border-radius: 15px;
  box-shadow: var(--shadow-hover);
}

.ventures-content h3 {
   font-size: 2rem;
   margin-bottom: 2rem;
  color: var(--primary-color);
}

.ventures-list {
   list-style: none;


}

.ventures-list li {
     padding: 0.8rem 0;
  padding-left: 2rem;
  color: var(--text-light);
    position:       relative;
	font-size: 1.05rem;
   line-height: 1.8;
}

.ventures-list li:before {
  content: '▸';
   position: absolute;
   left: 0;
  color: var(--accent-teal);
    font-weight: bold;
	font-size :       1.3rem;
}



.expert-coaching {
   padding: 5rem 2rem;
                    max-width: 1200px;
    margin: 0 auto;
}

.expert-coaching h2 {
	    font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--primary-color);
   text-align    :   center;
	}

.coaching-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.coaching-item {
  background: var(--white);
    border-radius :        12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;


}

.coaching-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
} 

.coaching-img {
   width: 100%;
    height: 250px;
   object-fit: cover;
}

.coaching-item h3

{


	font-size :1.6rem;
  color: var(--accent-blue);
    padding: 2rem 2rem 1rem;


}

.coaching-item p {

  color: var(--text-light);
    padding: 0 2rem 2rem;
    line-height  :     1.8;
     }

.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
  color: var(--white);
   padding: 4rem 2rem;
  text-align: center;
}

.cta-section h2 {
		font-size: 2.5rem;
	   margin-bottom: 1rem;
}

.cta-section p {
                    font-size: 1.1rem;
	 margin-bottom  :  2.5rem;
	opacity: 0.95;
	max-width: 700px;
    margin-left:  auto;
   margin-right: auto;
}

.cta-button-large {
  display: inline-block;
	  background: linear-gradient(135deg, var(--accent-teal) 0%, #16a085 100%);
	  color: var(--white);
	  padding: 1.2rem 3rem;
		border-radius: 50px;
		 text-decoration: none;
	    font-weight: 600;
	   font-size: 1.1rem;
	    transition: all 0.3s ease;
	  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-button-large:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.contact-section 
 {
          padding: 5rem 2rem;
    max-width   :900px;
  margin: 0 auto;
}

.contact-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
		text-align: center;
}

.contact-intro {

	  text-align: center;
  color: var(--text-light);
  margin-bottom: 3rem;
   font-size: 1.1rem;
     }

.contact-form    {
  background: var(--bg-light);
    padding   :        3rem;
   border-radius    :        15px;
  box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 2rem;
  display: flex;
   flex-direction: column;
}

.form-group label {
      font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.8rem;
  font-size: 1rem;}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
	border: 2px solid #d0d8e0;
  border-radius: 8px;
   font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
  background: var(--white);
	}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-teal);
  box-shadow: 0 0 0 3px rgba(26, 188, 156, 0.1);
}

.form-group textarea  {
    resize: vertical;
  min-height: 150px;
}

.submit-button {
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-teal) 100%);
  color: var(--white);
         padding: 1.1rem 3rem;
    border: none;
    border-radius: 8px;
  font-size: 1.05rem;
   font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
    width: 100%;
}

.submit-button:hover {
	  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);}

.submit-button:active {
  transform: translateY(0);
}@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--primary-color);
        padding: 2rem;
        gap: 1rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-links.active {
        max-height: 300px;
    }

    .burger-menu {
        display: flex;
    }

    .showcase-container,
    .ventures-wrapper {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .expert-coaching h2,
    .services-preview h2,
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .cta-button {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .nav-links {
        gap: 0.5rem;
    }
}.services-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
  color: var(--white);
  padding:     4rem 2rem;
  text-align :   center;
    min-height: 400px;
	display: flex;
   align-items: center;
  justify-content: center; 

}

.services-hero-content h1
{
  font-size: 2.8rem;
  font-weight: 700;
   margin-bottom: 1rem;
}

.services-hero-content p {
    font-size: 1.2rem;
  opacity: 0.95;
   max-width: 700px;
       margin: 0 auto;}

.services-detailed {
	max-width: 1200px;
   margin: 0 auto;
  padding: 5rem 2rem;
} 

.services-detailed h2 {

	    font-size: 2.5rem;
       text-align: center;
      margin-bottom: 4rem;
     color: var(--primary-color);
}

.service-detailed-item {
    display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
   align-items: center;
   margin-bottom: 5rem;
    padding-bottom    :       3rem;
  border-bottom: 2px solid var(--bg-light);
}

.service-detailed-item.reverse {
   grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.service-detailed-item.reverse > * {
  direction: ltr;
}

.service-detail-image {
	 width :    100%;


}

.detail-img {
   width:      100%;
                    height: auto;
  border-radius: 15px;
  box-shadow: var(--shadow-hover);
    object-fit  :        cover; 
	
}

.service-detail-content h3 {
    font-size: 2rem;
  color: var(--accent-blue);
    margin-bottom  :    1.5rem;
}

.service-detail-content p {
  color: var(--text-light);
     line-height: 1.9;
       margin-bottom: 1.5rem;
   	 font-size: 1.05rem;

}

.service-details-list h4 {
  color: var(--primary-color);
	 margin-bottom:1rem;
    font-size: 1.1rem;
}

.service-details-list ul {
  margin-bottom: 1.5rem;
    list-style: none;
}


.service-details-list li {
   padding: 0.6rem 0;
   padding-left: 1.8rem;
  color: var(--text-light);
	position: relative;
    line-height: 1.7;
}

.service-details-list li:before {
  content: '✓'; 
   position :       absolute; 
    left: 0; 
  color: var(--accent-teal); 
   font-weight     :     bold; 
   font-size :        1.2rem;
}

.service-price {
    font-size: 1.3rem;
  color: var(--accent-teal);
   font-weight     :      600;
   margin-top: 1.5rem;
	padding-top: 1.5rem;
  border-top: 2px solid var(--bg-light);
}

.pricing-comparison {
  background: linear-gradient(to bottom, var(--bg-light), var(--white));
  padding: 5rem 2rem;
}

.pricing-comparison h2 {

	  font-size: 2.5rem;
   text-align: center;
        margin-bottom: 1rem;
  color: var(--primary-color);
	}



.pricing-intro {
    text-align: center;
  color: var(--text-light);
	 font-size :       1.1rem;
   margin-bottom   :       3rem;
     }

.pricing-table {
    max-width: 1100px;
    margin  :  0 auto;
	display :   grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}



.pricing-card {
  background: var(--white);
    border-radius     :       12px;
        padding: 2.5rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
  position  :       relative;
  border-top: 4px solid var(--accent-teal);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
} 

.pricing-card.professional {
  transform: scale(1.05);
  border-top: 4px solid var(--accent-blue);
}

.pricing-card h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}


.price {
   font-size: 2.5rem;
  color: var(--accent-blue);
          font-weight: 700;
  margin-bottom: 0.5rem;


}

.price-period {
     color: var(--text-light);
    font-size: 1rem;
  margin-bottom: 1.5rem;
}

.popular-badge {
    position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-teal) 100%);
  color: var(--white);
    padding: 0.5rem 1.2rem;
   border-radius: 20px;
 font-size: 0.9rem;
	font-weight: 600;
}


.pricing-features {
	list-style: none;
	  margin: 2rem 0;
	   text-align: left;
	
}

.pricing-features li {
    padding: 0.8rem 0;
  color: var(--text-light);
  border-bottom: 1px solid var(--bg-light);
   position: relative;
      padding-left: 1.8rem;
}

.pricing-features li:last-child	{
    border-bottom: none;
}

.pricing-features li:before {


  content: '○';
                    position :  absolute;
   left: 0;
  color: var(--accent-teal);
  font-weight: bold;


}

.pricing-button {
    width: 100%;

	 padding: 1rem;

	   margin-top: 2rem;

	  background: linear-gradient(135deg, var(--accent-teal) 0%, #16a085 100%);

	  color: var(--white);

	    border: none;

	  border-radius: 8px;

		 font-size   : 1rem;

	  font-weight: 600;

		cursor: pointer;

	   transition     :   all 0.3s ease;
}

.pricing-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(26, 188, 156, 0.3);
}

.pricing-button.professional-btn {
  background: linear-gradient(135deg, var(--accent-blue) 0%, #2980b9 100%);
}

.pricing-button.professional-btn:hover     {
  box-shadow: 0 6px 15px rgba(52, 152, 219, 0.3);
}

.how-it-works {
  background: linear-gradient(to bottom, var(--white), var(--bg-light));
   padding     : 5rem 2rem;
}

.how-it-works h2
	{

     font-size: 2.5rem;
    text-align: center;
   margin-bottom: 4rem;
  color: var(--primary-color);

}

.steps-container {

  max-width: 1000px;
 margin   : 0 auto;
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;}

.step {
  background: var(--white);
  padding: 2rem;
                    border-radius  :        12px;
   text-align: center;
  box-shadow: var(--shadow);
   transition: all 0.3s ease;
  border-left: 4px solid var(--accent-teal);
}

.step:hover {
  transform: translateY(-5px);
	  box-shadow: var(--shadow-hover);
}

.step-number {
   width: 50px;
   height: 50px;
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-teal) 100%);
  color: var(--white);
    border-radius: 50%;
   display: flex;
    align-items: center;
  justify-content: center;
   font-size: 1.8rem;
         font-weight: 700;
    margin: 0 auto 1rem;
}

.step h3 {
      font-size: 1.3rem;
  color: var(--primary-color);
    margin-bottom     :        1rem;
}

.step p {
  color: var(--text-light);
      line-height: 1.7;
}

.faq-section {
  max-width: 900px;
    margin: 0 auto;
  padding :   5rem 2rem;
}

.faq-section h2 {
    font-size: 2.5rem;
    text-align: center;
   margin-bottom: 3rem;
  color: var(--primary-color);
}

.faq-container {
    display   :  flex;
   flex-direction: column;
    gap     :1.5rem;
}

.faq-item{
  background: var(--white);
    border-radius    :      8px;
  box-shadow: var(--shadow);
   overflow: hidden;


}

.faq-question {
   width: 100%;
    padding: 1.5rem;
  background: linear-gradient(135deg, var(--bg-light) 0%, #f0f3f7 100%);
    border  :      none;
  cursor    :    pointer;
  display: flex;
    justify-content: space-between;
   align-items: center;
          font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary-color);
   transition  :        all 0.3s ease;
}

.faq-question:hover {
  background: linear-gradient(135deg, #e0e8f0 0%, #d8dfe8 100%);
}

.faq-toggle	{
        font-size: 1.8rem;
  color: var(--accent-teal);
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
   overflow : hidden;
  transition: max-height 0.3s ease;
  background: var(--white);
}

.faq-item.active .faq-answer


{
  max-height: 500px;
}

.faq-answer p {


   padding: 1.5rem;
  color: var(--text-light);
   line-height: 1.8;}

.thankyou-section 
 {
	  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
         padding: 5rem 2rem;
  min-height: 600px;
  display: flex;
  align-items   :center;
	 justify-content: center;
}

.thankyou-container {
  background: var(--white);
   border-radius: 15px;
  box-shadow: var(--shadow-hover);
    padding: 4rem;
  max-width: 700px;
   text-align   :   center;
}



.success-icon  {
  width: 100px;
    height : 100px;
    margin: 0 auto 2rem;
  color: var(--accent-teal);
}

.success-icon svg {
	      width: 100%;
    height: 100%;


}

.thankyou-container h1{
   font-size   :    2.5rem;
  color: var(--primary-color);
   margin-bottom: 1.5rem;
}

.thankyou-message p {
  color: var(--text-light);
   font-size: 1.1rem;
  line-height:    1.8;
   margin-bottom: 1.5rem;
}

.next-steps {
  background: var(--bg-light);
   border-radius: 10px;
  padding: 2rem;
    margin: 2rem 0;
   text-align:        left;
}

.next-steps h2 {
    font-size: 1.4rem;
  color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;

}

.steps-list {
  list-style: none;
}

.steps-list li  {
   display: flex;
   align-items: flex-start;
    gap: 1rem;
   margin-bottom: 1.2rem;
  color: var(--text-light);
  line-height: 1.6;
}



.steps-list li:last-child {
        margin-bottom: 0;
}

.step-icon {
   width: 35px;
    height: 35px;
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-teal) 100%);
  color: var(--white);
  border-radius :   50%;
    display: flex;
	 align-items: center;
   justify-content: center;
   font-weight: 700;
	flex-shrink: 0;
}

.contact-info-box {
  background: linear-gradient(135deg, var(--accent-teal) 0%, #16a085 100%);
  color: var(--white);
    border-radius     :        10px;
   padding: 2rem;
  margin  :   2rem 0;
         text-align: center;
}

.contact-info-box h3 {
          font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.contact-info-box p {
  color: rgba(255, 255, 255, 0.95);
                    margin-bottom     :  0.5rem;
}

.contact-hours {
    font-size: 0.95rem;
   opacity: 0.9;
}

.action-buttons {
    display:     flex;
  gap: 1rem;
  margin: 2.5rem 0;
    justify-content: center;
   flex-wrap: wrap;}

.button-primary,
.button-secondary
{
   padding     :   1rem 2rem;
   border-radius: 8px;
		text-decoration: none;
    font-weight: 600;
	 transition: all 0.3s ease;
  display: inline-block;
}

.button-primary 
 {


  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-teal) 100%);
  color: var(--white);
  box-shadow: var(--shadow);

}

.button-primary:hover {
  transform: translateY(-3px); 
  box-shadow: var(--shadow-hover);

}

.button-secondary {
  background: var(--bg-light);
  color: var(--primary-color);
  border: 2px solid var(--accent-teal);
}

.button-secondary:hover {
  background: var(--accent-teal);
  color: var(--white);

}

.social-message  
  {
  color: var(--text-light);
   font-size:      0.95rem;
  margin-top  :      1rem;
}

.info-section {
  max-width   :        1200px;
   margin: 0 auto;
   padding:      5rem 2rem;
}

.info-section h2 {
    font-size: 2.5rem;
    text-align: center;
   margin-bottom: 3rem;
  color: var(--primary-color);


}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
}

.info-card {
  background: var(--white);
   padding: 2rem;
   border-radius: 12px;
  box-shadow: var(--shadow);
   transition: all 0.3s ease;
  border-top: 4px solid var(--accent-teal);
}

.info-card:hover {


  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);


}

.info-card h3 {
   font-size: 1.2rem;
  color: var(--accent-blue);
	 margin-bottom     :   1rem;
}

.info-card p {
  color: var(--text-light);
    line-height: 1.8;
}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .services-hero-content p {
        font-size: 1rem;
    }

    .service-detailed-item,
    .service-detailed-item.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        direction: ltr;
    }

    .service-detailed-item.reverse > * {
        direction: ltr;
    }

    .pricing-card.professional {
        transform: scale(1);
    }

    .pricing-table {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        flex-direction: column;
    }

    .button-primary,
    .button-secondary {
        width: 100%;
        text-align: center;
    }

    .thankyou-container {
        padding: 2rem;
    }

    .thankyou-container h1 {
        font-size: 1.8rem;
    }

    .contact-info-box {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 1.6rem;
    }

    .service-detail-content h3 {
        font-size: 1.4rem;
    }

    .pricing-button {
        font-size: 0.9rem;
        padding: 0.8rem;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 1rem;
    }
}.policySection {
	 padding: 80px 2rem;
  background: linear-gradient(to bottom, var(--white), var(--bg-light));
    min-height: 600px;
}

.policyContainer {
  max-width: 850px; 
	    margin: 0 auto; 
	  text-align: left;
}

.policyContainer h1 {

	   font-size: 2.8rem;
  color: var(--primary-color);
    margin-bottom: 2rem;
  font-weight: 700;


}

.policyContainer h2 {
                       font-size : 1.6rem; 
  color: var(--accent-blue); 
  margin-top: 2.5rem; 
      margin-bottom: 1rem; 
    font-weight: 600; 
	line-height: 1.4;
	}

.policyContainer p {
  color: var(--text-light);
         margin-bottom: 1.5rem;
  line-height    :    1.8;
   font-size: 1.05rem;
   text-align: justify;
}

.policyContainer p:first-of-type {
    margin-top   :    0;
}

.last-updated {
    margin-top: 3rem;
     padding-top: 2rem;
  border-top: 2px solid var(--bg-light);
  color: var(--text-light);
  font-size: 0.95rem;
     font-style: italic;
	
}

.policyContainer h2:first-child {
  margin-top: 0;

}

.policyContainer h2 + p {
 margin-top: 1rem;
}

.policyContainer a {
  color: var(--accent-teal);
    text-decoration: none;
    transition: all 0.3s ease;
 font-weight:500;
}

.policyContainer a:hover {
  color: var(--accent-blue); 
    text-decoration: underline;
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1.5rem;
        min-height: auto;
    }

    .policyContainer {
        max-width: 100%;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 2rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 1rem;
        line-height: 1.7;
        text-align: left;
    }

    .last-updated {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .last-updated {
        font-size: 0.9rem;
        margin-top: 1.5rem;
        padding-top: 1rem;
    }
}.main-footer  
  {
     background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-blue) 100%);
  color: var(--white);
    padding: 3rem 2rem 1.5rem;
  box-shadow: var(--shadow);

}

.footer-content {
   display    :       flex;
  flex-wrap: wrap;
   justify-content: space-between;
    align-items: flex-start;
  max-width: 1200px;
               margin: 0 auto 2rem;
  gap: 2.5rem;
}

.footer-logo-section


{
    flex: 1 1 180px;
  display: flex;
				 align-items :      center;
	gap :      1rem;
	
}  

.footer-logo-section img{
  max-width: 60px;
}

.footer-logo img {
   max-width :       60px;
  filter: brightness(0) invert(1);

}

.footer-nav,
.footer-contact,
.footer-services {
  flex: 1 1 180px;
}

.footer-nav h4, .footer-contact h4, .footer-services h4 {
	font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
  color: var(--accent-teal);
}

.footer-nav ul,
.footer-services ul {
    list-style: none;

    padding: 0;

    margin: 0;
}

/* Production ready */
/* Utility classes */


/* Auto-generated CSS */


.footer-nav a,
.footer-services a {

	  color: var(--white);
	 text-decoration: none;
    line-height: 2;
   transition: color 0.2s;
	}

/* Browser compatibility */

.footer-nav a:hover,
.footer-services a:hover {
  color: var(--accent-teal);
   text-decoration: underline; 
	
}

.footer-contact .address,
.footer-contact .phone {
	 font-size:     1rem;
  margin-bottom: .6rem;
  color: var(--white);
}
	/* Development only */
/* Legacy code */

.footer-bottom {
  text-align: center; 
  color: var(--text-light); 
   padding-top: 1rem; 
  border-top: 1px solid var(--bg-light); 
    font-size: .95rem;
}
@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
        align-items: stretch;
        gap: 2rem;
    }
    .footer-logo-section {
        justify-content: center;
    }
}
@media (max-width: 600px) {
    .main-footer {
        padding: 2rem 1rem 1rem;
    }
    .footer-logo img {
        max-width: 90px;
    }
}
