* {
    margin: 0;
   padding: 0;
         box-sizing   :     border-box;
}

html {
	 scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
   line-height: 1.6;
  color: #2c3e50;
  background-color: #f8f9fa; 

}

.header-section {
            position: sticky;
  top: 0;
  background: linear-gradient(135deg, #1a1f2e 0%, #2d3748 100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
   z-index: 1000;

}

.navigation-bar {
   padding:        1.2rem 0;
}

.nav-container {
  max-width: 1200px;
  margin   :   0 auto;
  padding: 0 2rem;
  display: flex;
    justify-content: space-between;
  align-items: center;

}


.logo-brand {
    flex-shrink: 0;

}

.logo-image {
   height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

.menu-toggle {
   display: none;
    background: none;
  border :   none;
  cursor: pointer;
	flex-direction: column;
        gap: 6px;
  padding: 0.5rem;
}

.burger-line   {
    width: 25px;
    height: 2.5px;
   background-color: #ffffff;
	border-radius: 2px;
     transition: all 0.3s ease;
}

.menu-toggle.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.menu-toggle.active .burger-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.nav-links {


   list-style: none;
  display :     flex;
    gap: 3rem;
   align-items    :      center;

}

.nav-link {
	text-decoration: none;
      position: relative;
  font-weight: 500;
   color: #ffffff;
      transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
    position: absolute;
    bottom:   -5px;
    left: 0;
        width: 0;
    height:  2px;
	background-color: #3498db;
   transition: width 0.3s ease; 
	
}

.nav-link:hover::after {


	 width: 100%;


}

.hero-banner {
      max-width: 1200px;
	    margin: 0 auto;
	  padding: 4rem 2rem;
		display: grid;
	   grid-template-columns: 1fr 1fr;
	  gap: 3rem;
	  align-items: center;
}

.hero-content {
   display: flex;
   flex-direction: column;
  gap   :   1.5rem;
}

.hero-title {

  font-size: 2.5rem;
    font-weight: 700;
  line-height   : 1.2;
	 color: #1a1f2e;


}

.hero-description {
   font-size: 1.1rem; 
  color: #555555; 
  line-height: 1.7;
}



.cta-button {
 display: inline-block;

    padding: 1rem 2.5rem;

  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);

  color: #ffffff;

   text-decoration: none;

       border-radius: 50px;

  font-weight: 600;

  transition  :  all 0.3s ease;

    width: fit-content;

  border: none;

  cursor: pointer;

  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);


}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.hero-image {


  border-radius  :  15px;
    overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-image img {

  width  :100%;
                    height    :       auto;
  display: block;
     }

.features-section {
    margin: 2rem 0;
	background-color :   #ffffff;
  padding: 4rem 2rem;
}

.section-title {
	font-size    :      2.2rem;
  font-weight: 700;
    text-align: center;
   margin-bottom: 3rem;
  color: #1a1f2e;

}

.features-grid{
    max-width    :       1200px;
                    margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.feature-card {
	 padding: 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
                    border-radius: 10px;
    border-left: 4px solid #3498db;
   transition: all 0.3s ease;
    cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.2);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
                    color: #2c3e50;
          margin-bottom: 1rem;
}

.feature-text {
   font-size: 0.95rem;
	color: #555555;
   line-height: 1.6;
}

.showcase-section {
   max-width: 1200px;
    margin: 0 auto;
		 padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
  gap: 4rem;
} 

.showcase-item {

   display: grid;
       grid-template-columns :       1fr 1fr;
   	 gap: 3rem;
     align-items: center; 
	
	}

.showcase-reverse 
 {
      grid-template-columns: 1fr 1fr;

} 

.showcase-reverse img {


   order: 2;
}

.showcase-reverse .showcase-text {

  order: 1;
}

.showcase-item img {
  border-radius: 10px; 
   overflow: hidden; 
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); 
  width: 100%; 
    height: auto;
	}

.showcase-title {
	font-size: 1.8rem; 
  font-weight: 700; 
  color     :      #1a1f2e; 
         margin-bottom: 1rem;
}

.showcase-description {
   font-size: 1rem;
        color    :    #555555;
  line-height: 1.8;
}

.services-overview	{
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  color: #ffffff;
   padding: 4rem 2rem;
}

.services-overview .section-title {
    color: #ffffff;
}

.services-list {
		 max-width  :        1200px;
   margin   :       0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-item {
    padding: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
	 border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
     transition :   all 0.3s ease;


}

.service-item:hover  {
  background: rgba(52, 152, 219, 0.15);
	  border-color: rgba(52, 152, 219, 0.5);
	  transform: translateY(-3px);
}

.service-name {
  font-size: 1.25rem;
  font-weight    :        600;
  margin-bottom: 1rem;
   color: #3498db;
}

.service-detail {
	   font-size: 0.95rem;
   line-height  :     1.6;
  color: #e0e0e0;
}

.workspace-section {
	background-color: #ffffff;
  padding: 4rem 2rem;
}

.workspace-content {
    max-width: 1200px;
     margin: 0 auto;
	text-align: center;
}

.workspace-description

{
   color   :    #555555;
   margin-left: auto;
  font-size: 1.05rem;
    line-height: 1.7;
   margin     :     2rem 0;
    margin-right: auto;
    max-width     :        800px;
}

.workspace-content img     {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
    margin-top: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-section {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   color: #ffffff;
	 padding    : 3.5rem 2rem;
	text-align: center;
    margin: 2rem 0;
}

.cta-content {
  max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
   margin-bottom: 1rem;

}

.cta-text {
   font-size: 1.05rem;
  margin-bottom   :    2rem;
   line-height: 1.6;
}

.cta-primary-button {
    display: inline-block;
    padding: 1rem 2.5rem;
   background-color: #ffffff;
    color: #3498db;
	text-decoration: none;
   border-radius: 50px;
       font-weight: 700;
  transition: all 0.3s ease;
   border: none;
    cursor: pointer;
    font-size: 1rem; 
	
}

.cta-primary-button:hover {

	  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);}

.office-section {
    max-width: 1200px;
	 margin: 0 auto;
     padding: 4rem 2rem;
    background-color: #ffffff; 

}

.office-image {
   border-radius: 15px;
  overflow: hidden;
	margin: 2rem 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.office-image img {
 width: 100%;
    height: auto;
  display: block;
}

.office-info {
    -webkit-border-radius: 10px;
   text-align:        center;
  padding: 2rem;
    background-color: #f8f9fa;
     border-radius: 10px;
   -moz-border-radius: 10px;
    margin-top: 2rem;
}

.office-address {
   font-size: 1.1rem;
         color : #2c3e50;
    font-weight   :   600;
  margin-bottom: 1rem;
}

.office-phone {
	 font-size: 1.1rem;
   color: #3498db;
               font-weight :       600;
}

.contact-section {
   background-color: #ffffff;
   padding: 4rem 2rem;
  max-width: 1200px;
   margin: 0 auto;
}

.contact-form {
    max-width: 600px;
  margin: 2rem auto 0;
   display: grid;
   gap: 1.5rem;
}

.form-group {
    display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
    font-weight: 600;
   	color     : #2c3e50;
   	 font-size: 0.95rem;
}

.form-input {
   padding: 1rem;
        border: 2px solid #e0e0e0;
  border-radius: 8px;
    font-size:    1rem;
   font-family: inherit;
  transition   :       all 0.3s ease;
		 background-color: #ffffff;
    color: #2c3e50;
}

.form-input:focus {
    outline: none;
  border-color : #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-textarea
{
  resize: vertical;
  min-height: 120px;
}

.form-submit-button   {
      padding: 1rem 2rem;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
   cursor: pointer;
      transition: all 0.3s ease;
               margin-top: 1rem;
     }

.form-submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.form-submit-button:active

{
  transform: translateY(0);
}

.footer-section{
  background: linear-gradient(135deg, #1a1f2e 0%, #2d3748 100%);
  color : #ffffff;
   padding: 3rem 2rem 1rem;
	
}

.footer-container {
   max-width: 1200px;
  margin: 0 auto;
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
          margin-bottom: 2rem;
   padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);

}

.footer-brand {
  align-items:   flex-start;
  display: flex;
}

.footer-logo {


  height: 45px;
   width: auto;
  filter: brightness(0) invert(1);
	}

.footer-heading    {
         font-size: 1.05rem;
	font-weight   :        700;
  margin-bottom: 1rem;
    color: #3498db;
}

.footer-text {

  font-size: 0.95rem;
   line-height :       1.6;
	color: #b0b0b0;}

.footer-links {
  list-style: none;
}

.footer-link {

   color: #b0b0b0;
  text-decoration: none;
   font-size: 0.95rem;
   display: block;
   margin-bottom: 0.5rem;
    transition: color 0.3s ease;


}

.footer-link:hover
{
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
   color: #888888;
  font-size: 0.9rem;
}@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 1rem;
        background: linear-gradient(135deg, #1a1f2e 0%, #2d3748 100%);
        padding: 2rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-links.active {
        max-height: 400px;
    }

    .hero-banner {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .showcase-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .showcase-reverse {
        grid-template-columns: 1fr;
    }

    .showcase-reverse img {
        order: 1;
    }

    .showcase-reverse .showcase-text {
        order: 2;
    }

    .services-list {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .contact-form {
        max-width: 100%;
    }

    .form-input {
        padding: 0.85rem;
        font-size: 16px;
    }

    .hero-banner {
        padding: 1.5rem 1rem;
    }
}.policy-hero {
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  color: #ffffff;
   padding: 3.5rem 2rem;
  text-align: center;
}



.policy-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-title {
	font-size: 2.5rem;
  font-weight: 700;
   line-height     :        1.2;
   margin-bottom   :1rem;
	
} 

.policy-subtitle {
   font-size: 1.1rem;
	 color: #d0d0d0;
  line-height: 1.6;
}

.policy-content {
    background-color: #ffffff;
   padding: 4rem 2rem;
}

.policy-container {
    max-width: 900px;
  margin: 0 auto;
}

.policy-article {
  margin-bottom: 3rem;
       scroll-behavior: smooth;
	
}

.policy-section-title {
    font-size: 1.8rem;

	    font-weight: 700;

	  color    : #2c3e50;

		margin-bottom: 1.5rem;

	  padding-bottom: 0.5rem;

	  border-bottom: 3px solid #3498db;
}

.policy-subsection {
	    margin-bottom : 1.5rem;

	  padding-left: 1.5rem;

	   border-left: 4px solid #3498db;

	   background-color   :       #f8f9fa;

	    padding: 1.5rem;

	      border-radius: 8px;
	}

.policy-subsection-title
	{
    font-size: 1.3rem;
    font-weight: 700;
	color: #2c3e50;
 margin-bottom: 1rem;
}

.policy-text {
	   font-size: 1rem;
   line-height: 1.8;
  color: #555555;
	margin-bottom  :  1rem;
   text-align: justify;
     }

.policy-list {
    list-style: none;
	 padding: 0;
   margin    :  1.5rem 0;
}

.policy-list li {
    padding: 0.75rem 0;
   padding-left: 2rem;
  color: #555555;
  font-size: 0.95rem;
	line-height: 1.6;
    position: relative;
}

.policy-list li::before {
  content: '✓';
   position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
  font-size: 1.2rem;
}

.policy-article:last-of-type {
	margin-bottom: 0;

}

.policy-cta

{
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   color: #ffffff;
   padding: 3rem 2rem;
   text-align: center;
}

.policy-cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.policy-cta-title  {
    font-weight: 700; 
	   margin-bottom: 1.5rem; 
	   font-size: 2rem;
}

.policy-cta-button {
   display: inline-block;
  padding: 1rem 2.5rem;
	background-color: #ffffff;
  color :       #3498db;
    text-decoration: none;
  border-radius: 50px;
   font-weight: 700;
   transition: all 0.3s ease;
   font-size: 1rem;
}


.policy-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
} 

.policy-cta-button:active {
  transform: translateY(0);
}@media (max-width: 768px) {
    .policy-title {
        font-size: 2rem;
    }

    .policy-subtitle {
        font-size: 1rem;
    }

    .policy-section-title {
        font-size: 1.5rem;
    }

    .policy-subsection-title {
        font-size: 1.1rem;
    }

    .policy-content {
        padding: 2rem 1rem;
    }

    .policy-subsection {
        padding: 1rem;
    }

    .policy-text {
        text-align: left;
        font-size: 0.95rem;
    }

    .policy-list li {
        padding-left: 1.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .policy-hero {
        padding: 2rem 1rem;
    }

    .policy-title {
        font-size: 1.5rem;
    }

    .policy-subtitle {
        font-size: 0.95rem;
    }

    .policy-section-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .policy-container {
        margin: 0;
    }

    .policy-article {
        margin-bottom: 2rem;
    }

    .policy-subsection {
        padding: 1rem;
        border-radius: 6px;
    }

    .policy-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .policy-list li {
        padding-left: 1.6rem;
        font-size: 0.85rem;
    }

    .policy-cta-title {
        font-size: 1.5rem;
    }

    .policy-cta-button {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
    }
}.policy-hero {
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
   color: #ffffff;
               padding:   3.5rem 2rem;
  text-align: center;
}

.policy-hero-content {
	max-width: 800px;
 margin:      0 auto;
}

.policy-title {
   font-size: 2.5rem;
	font-weight: 700;
    margin-bottom : 1rem;
   line-height: 1.2;
}

.policy-subtitle {
   font-size: 1.1rem;
    color: #d0d0d0;
    line-height: 1.6;
}

.policy-content {
		 background-color: #ffffff;
       padding: 4rem 2rem;
}

.policy-container {
  max-width: 900px;
   margin :0 auto;


}


.policy-article {
	margin-bottom: 3rem; 
  scroll-behavior: smooth;
     }

.policy-section-title {
   font-size     :  1.8rem;
   font-weight: 700;
    color:     #2c3e50;
       margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #3498db;
}

.policy-subsection {
   margin-bottom: 1.5rem;
   padding-left :     1.5rem;
    border-left: 4px solid #3498db;
  background-color: #f8f9fa;
   padding: 1.5rem;
  border-radius: 8px;
}

.policy-subsection-title		{
  font-size     :    1.3rem;
               font-weight: 700;
   color: #2c3e50;
  margin-bottom: 1rem;
}

.policy-text {
  font-size: 1rem;
	 line-height: 1.8;
   color: #555555;
                    margin-bottom: 1rem;
     text-align: justify;
}

.policy-list {
    list-style  :none;
    padding: 0;
   margin: 1.5rem 0;

}

.policy-list li {
   position: relative;
   padding: 0.75rem 0;
  line-height: 1.6;
   padding-left: 2rem;
    font-size :0.95rem;
  color: #555555;
}  

.policy-list li::before {
  content: '✓';
    position: absolute;
  left: 0;
    color: #3498db;
   font-weight: bold;
    font-size: 1.2rem;
}

.policy-article:last-of-type {
  margin-bottom: 0;
}

.policy-cta


{

  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   color: #ffffff;
    padding: 3rem 2rem;
  text-align: center;

}

.policy-cta-content {
	  max-width: 600px;
       margin: 0 auto;}

.policy-cta-title {
        font-size: 2rem;
  font-weight :   700;
         margin-bottom: 1.5rem;
}

.policy-cta-button {
	 display: inline-block;
   padding: 1rem 2.5rem;
 background-color: #ffffff;
  color: #3498db;
               text-decoration: none;
     border-radius: 50px;
 font-weight: 700;
  transition: all 0.3s ease;
	font-size     :  1rem;
}

.policy-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.policy-cta-button:active {
  transform: translateY(0);
}@media (max-width: 768px) {
    .policy-title {
        font-size: 2rem;
    }

    .policy-subtitle {
        font-size: 1rem;
    }

    .policy-section-title {
        font-size: 1.5rem;
    }

    .policy-subsection-title {
        font-size: 1.1rem;
    }

    .policy-content {
        padding: 2rem 1rem;
    }

    .policy-subsection {
        padding: 1rem;
    }

    .policy-text {
        text-align: left;
        font-size: 0.95rem;
    }

    .policy-list li {
        padding-left: 1.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .policy-hero {
        padding: 2rem 1rem;
    }

    .policy-title {
        font-size: 1.5rem;
    }

    .policy-subtitle {
        font-size: 0.95rem;
    }

    .policy-section-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .policy-container {
        margin: 0;
    }

    .policy-article {
        margin-bottom: 2rem;
    }

    .policy-subsection {
        padding: 1rem;
        border-radius: 6px;
    }

    .policy-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .policy-list li {
        padding-left: 1.6rem;
        font-size: 0.85rem;
    }

    .policy-cta-title {
        font-size: 1.5rem;
    }

    .policy-cta-button {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
    }
}.services-hero   {

	  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  color :    #ffffff;
   padding: 4rem 2rem;
    text-align: center;}

.services-hero-content {
  max-width: 800px;
   margin: 0 auto;
}

.services-hero-title {
 font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
   line-height   :1.2;
}

.services-hero-description {
  font-size: 1.2rem;
    color:  #d0d0d0;
    line-height: 1.6;
	
}

.detailed-services {
  background-color :     #ffffff;
  padding: 4rem 2rem;
}

.services-container {
    max-width: 1200px;
	margin     :        0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap  :        2.5rem;
}

.service-block {
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
  border-radius: 12px;
  padding: 2.5rem;
  border-left: 5px solid #3498db;
                    transition:    all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.service-block:hover {
     transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(52, 152, 219, 0.2);
}

.service-block-header 
 {
    margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(52, 152, 219, 0.3);
}

.service-block-title {
   font-size: 1.5rem; 
	  font-weight: 700; 
	          color: #2c3e50; 
	    margin-bottom: 0.5rem;
}

.service-block-price {
  font-size: 1.3rem;
  color: #3498db;
  font-weight: 600;
}

.service-block-description {
  font-size: 0.95rem;
   color: #555555;
  line-height  : 1.7;
 margin-bottom: 1.5rem;
}

.service-features {
  background-color: rgba(52, 152, 219, 0.08);
        padding: 1.5rem;
  border-radius    :  8px;
}

.features-title {
	font-size: 1rem;
   font-weight: 700;
    color     :     #2c3e50;
    margin-bottom: 1rem;
}

.features-list {
    padding:    0; 
	    list-style: none;
}

.features-list li {
      padding: 0.6rem 0;
   padding-left: 1.8rem;
    color: #555555;
			font-size: 0.9rem;
    line-height: 1.5;
	position: relative;

}

.features-list li::before {
   left: 0;
   font-weight: bold;
   color: #3498db;
	font-size: 1.1rem;
  content: '✓';
    position: absolute;


}

.services-showcase
{
  max-width: 1200px;
    margin:0 auto;
    padding: 4rem 2rem;}

.showcase-item-service {
  display  :      grid;
	    grid-template-columns: 1fr 1fr;
	    gap: 3rem;
			 align-items: center;
	          background-color: #f8f9fa;
	  padding: 3rem;
	   border-radius: 15px;
}

.showcase-item-service img {

	          border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
   width: 100%;
   height: auto;

}

.showcase-text-service {
   padding   : 1rem;
}

.showcase-title-service {
   font-size: 1.8rem;

  font-weight: 700;

    color    :     #2c3e50;

  margin-bottom: 1rem; 

}

.showcase-description-service {
   font-size: 1rem;
   color: #555555;
    line-height     :    1.8;
}

.services-cta {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color:  #ffffff;
   padding: 3.5rem 2rem;
  text-align: center;
   margin: 2rem 0;
}

.services-cta-content

{
   max-width: 700px;
          margin  :     0 auto;
}

.services-cta-title	{
   font-size: 2rem;

    font-weight: 700;

  margin-bottom: 1rem;
}

.services-cta-text {
   font-size :   1.05rem;
	        margin-bottom: 2rem;
	   line-height: 1.6;
}

.services-cta-button {
    display: inline-block;
   padding: 1rem 2.5rem;
  background-color: #ffffff;
   color: #3498db;
    text-decoration: none;
   border-radius: 50px;
  font-weight: 700;
	 transition: all 0.3s ease;
    font-size :  1rem; 
	
}

.services-cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); 
	
}

.thankyou-section {
  background-color: #ffffff;
   padding: 4rem 2rem;
         min-height: 60vh;
   display: flex;
    align-items: center;
    justify-content: center;
}

.thankyou-container {
   max-width: 700px;
    margin: 0 auto;
      text-align:center;
}

.thankyou-icon{
	margin-bottom: 2rem;
  animation    :  slideDown 0.6s ease;
}

.thankyou-icon svg {
   display: inline-block;


}@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.thankyou-title


{
   font-size: 2.5rem;
   font-weight: 700;
  color: #2c3e50;
    margin-bottom: 1rem;
} 

.thankyou-subtitle {
    font-size: 1.2rem;
   color: #666666;
    margin-bottom :       2.5rem;
    line-height: 1.6;
}

.thankyou-details {
    background-color: #f8f9fa;
    margin-bottom: 2.5rem;
    border-radius  :        12px;
    display: grid;
  grid-template-columns: repeat(2, 1fr);
    padding: 2rem;
	 gap     :        1.5rem; 

}

.detail-card {
   text-align: left;
  padding: 1rem;
	 background-color: #ffffff;
   border-radius: 8px;
 border-left: 4px solid #3498db;
	}

.detail-label

{
    font-size    :        0.9rem;
	font-weight: 700;
    color: #7f8c8d;
   text-transform: uppercase;
    margin-bottom:       0.5rem;
}

.detail-value {
 font-size: 1rem;
    font-weight: 600;
  color: #2c3e50;
  word-break: break-word;
}

.thankyou-message {
                    background-color: #f0f4f8;
    padding: 2rem;
     border-radius: 12px;
   margin-bottom: 2rem;
    text-align: left;
}

.message-title {
    font-size :   1.1rem;
                    font-weight: 700;
   color: #2c3e50;
               margin-bottom     :     1rem;
}

.message-box {
   font-size:      0.95rem;
  border-left     :        4px solid #3498db;
    padding: 1.5rem;
  line-height: 1.7;
    background-color: #ffffff;
   color: #555555;
    border-radius: 8px;

}

.thankyou-info {


  background-color: #e8f4f8;
       padding   :        2rem;
         border-radius: 12px;
  margin-bottom: 2.5rem;
  border: 2px solid #3498db;
     }

.info-text {
  font-size: 0.95rem;
  color :    #2c3e50;
  line-height: 1.7;
    margin-bottom: 1rem;
}


.info-text:last-child
{
   margin-bottom  :    0;
}

.thankyou-actions {
		display: flex;
          gap: 1rem;
   justify-content  :        center;
   flex-wrap: wrap;
	
     }

.thankyou-button-primary,
.thankyou-button-secondary

{

	    display: inline-block;
 padding: 1rem 2rem;
  border-radius: 50px;
   font-weight: 700;
	 text-decoration: none;
   transition: all 0.3s ease;
  font-size: 1rem; 
	
     }

.thankyou-button-primary
	{
	  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   color: #ffffff;
	}


.thankyou-button-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.thankyou-button-secondary {
	   background-color: #ecf0f1;
               color  : #2c3e50;
   border: 2px solid #3498db;
	}

.thankyou-button-secondary:hover {
   background-color:  #3498db;
  color: #ffffff;
  transform: translateY(-3px);
}

.thankyou-cta {
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: #ffffff;
    padding: 3rem 2rem;
   text-align    :    center;


}

.thankyou-cta-content 
 {

		max-width   : 600px;
  margin: 0 auto;
	}

.thankyou-cta-title		{
   font-size: 2rem;
   font-weight: 700;
   margin-bottom: 1rem;
}

.thankyou-cta-text		{
    color: #d0d0d0;
	font-size: 1.05rem;
 margin-bottom: 1.5rem;
}  

.thankyou-phone {
    font-size: 1.1rem;
}  

.thankyou-phone a {
    color: #3498db;
   text-decoration: none;
  font-weight    :  700;
  transition :color 0.3s ease;
}

.thankyou-phone a:hover {
	  color: #2980b9;}@media (max-width: 768px) {
    .services-hero-title {
        font-size: 2rem;
    }

    .services-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-block {
        padding: 1.5rem;
    }

    .showcase-item-service {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .services-cta-title {
        font-size: 1.5rem;
    }

    .thankyou-details {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }

    .thankyou-title {
        font-size: 1.8rem;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .thankyou-button-primary,
    .thankyou-button-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 2rem 1rem;
    }

    .services-hero-title {
        font-size: 1.6rem;
    }

    .services-hero-description {
        font-size: 1rem;
    }

    .services-container {
        padding: 1rem 0;
    }

    .service-block {
        padding: 1.2rem;
    }

    .service-block-title {
        font-size: 1.2rem;
    }

    .service-block-price {
        font-size: 1.1rem;
    }

    .features-list li {
        padding-left: 1.5rem;
        font-size: 0.85rem;
    }

    .thankyou-section {
        padding: 2rem 1rem;
        min-height: auto;
    }

    .thankyou-title {
        font-size: 1.5rem;
    }

    .thankyou-subtitle {
        font-size: 1rem;
    }

    .thankyou-details {
        padding: 1rem;
    }

    .detail-card {
        padding: 0.8rem;
    }

    .thankyou-message {
        padding: 1rem;
    }

    .message-box {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .thankyou-button-primary,
    .thankyou-button-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .thankyou-cta-title {
        font-size: 1.5rem;
    }

    .thankyou-phone {
        font-size: 0.95rem;
    }
}