* {
   margin: 0;
   padding:       0;
		 box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body   {

  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
	 color: #1a1a1a;
  background: #fafafa;
   line-height: 1.6;


}

a

{
	   text-decoration: none;
	  color    :      inherit;
	}

img {
   max-width  :      100%;
  height: auto;
  display: block;
}

button
	{


    border     :        none;
  background: none;
          cursor: pointer;
	font-family: inherit;
}

.header-nav {
   background     :    #fff;
   border-bottom: 1px solid #e8e8e8;
    position: sticky;
	top:       0;
  z-index: 1000;
} 

.nav-container {
    max-width: 1200px;
    margin  : 0 auto;
	padding: 1rem 2rem;
    display: flex;
  justify-content: space-between;
   align-items: center;
}

.logo-section {
    flex: 0 0 auto;
}

.nav-logo {
  height: 40px;
  width     :   auto;
}



.burger-btn
	{
    display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width  :  40px;
    height: 40px;
  gap: 5px;
  z-index: 1001;
}

.burger-btn span {

    width: 24px;
    height: 2.5px;
   background: #1a1a1a;
  border-radius   :   2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
     } 

.burger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
     transform: rotate(-45deg) translate(7px, -7px);

}

.nav-menu {

  gap: 2.5rem;
  list-style: none;
	align-items: center;
	display: flex;}

.nav-menu a		{
   font-size: 0.95rem;
	  font-weight :        500;
		 color: #1a1a1a;
	  position: relative;
	   transition: color 0.3s ease;
}  

.nav-menu a::after {
  content: '';
   position: absolute;
   bottom: -4px;
  left: 0;
  width: 0;
   height: 2px;
  background: #2563eb;
    transition: width 0.3s ease;
	
}

.nav-menu a:hover::after
	{
    width: 100%;
}

.hero-section {
    max-width: 1200px;
    margin:     0 auto;
  padding: 3rem 2rem;
  display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 3rem;
					align-items: center;
}

.hero-wrapper h1 {
  font-size: 2.5rem;
	font-weight: 700;
  line-height: 1.2;
   margin-bottom: 1.5rem;
  color: #0f172a;
}

.hero-subtitle {
 font-size: 1.1rem;

	   color   :    #475569;

	   margin-bottom: 2rem;

	    line-height: 1.8;
}

.cta-button

{
   display: inline-block;

	  padding: 0.875rem 1.75rem;

	  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);

	  color: #fff;

	  border-radius: 6px;

	  font-weight: 600;

	  font-size: 0.95rem;

	      transition: all 0.3s ease;

	  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
	
}

.hero-image {
  width: 100%;
	 border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-narrative {
  background: linear-gradient(135deg, #f0f4ff 0%, #fff9f0 100%);
	padding: 4rem 2rem;
	margin: 2rem 0;
}

.why-content {

	 max-width: 1200px;
   margin:      0 auto;
	}

.why-narrative h2 {
  font-size : 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
   color: #0f172a;
}

.why-narrative > div > p {
    font-size: 1rem;

	    color: #475569;

	  margin-bottom: 2.5rem;

	   line-height: 1.8;
}

.benefits-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.benefit-card		{
   background: #fff;
   padding: 2rem;
    border-radius: 10px;
   border-left :   4px solid #2563eb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition :      all 0.3s ease;
}

.benefit-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.benefit-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
   color: #0f172a;
}

.benefit-card p 
 {
   font-size  :    0.95rem;
    color: #64748b;
 line-height: 1.7;
}

.approach-section {
   padding     :     0 2rem; 
	  max-width: 1200px; 
	  margin: 3rem auto;
}

.approach-section h2

{
    font-size: 2.2rem;
  font-weight: 700;
   text-align   :    center;
  margin-bottom: 3rem;
    color: #0f172a;
}

.approach-blocks {
       display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 2.5rem;
}

.approach-item {
	background: #fff;
   border-radius: 12px;
  overflow  :hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition   :    all 0.3s ease;
     }

.approach-item:hover 
 {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  transform: translateY(-6px);

}

.approach-img {
                    width  :   100%;
    height: 220px;
   object-fit   :       cover;
}

.approach-item h3 {
       font-size     :        1.3rem;
    font-weight: 600;
      padding: 1.5rem 1.5rem 0.8rem;
  color: #0f172a;


}

.approach-item p     {
     padding: 0 1.5rem 1.5rem;
    color: #64748b;
  font-size: 0.95rem;
  line-height: 1.7;
}

.offerings-section {
   background   :        #f8fafc;
 padding: 4rem 2rem;
   margin: 3rem 0;
}

.offerings-wrapper {
  max-width: 1200px;
     margin: 0 auto; 

}

.offerings-section h2 {
	margin-bottom: 3rem;
    font-weight    :      700;
    color: #0f172a;
   font-size: 2.2rem;
                    text-align: center;
}

.offerings-grid {
       display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   	gap: 2rem;


}

.offering-card {
       padding: 2rem;
			background: #fff;
   transition: all 0.3s ease;
  border-radius :      10px;
    border    :        1px solid #e2e8f0;
	}

.offering-card:hover {
   border-color: #2563eb;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.1);
}

.offering-featured {
  border: 2px solid #2563eb;
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
}

.offering-header {
  display: flex;
	justify-content: space-between;
	 align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.offering-card h3   {
       font-size     :1.3rem;
   font-weight: 600;
   color: #0f172a;
}

.offering-duration {
    padding: 0.4rem 0.8rem;
  border-radius: 4px;
  background: #eff6ff;
   color: #0c63e4;
  font-weight: 600;
  white-space: nowrap;
        font-size: 0.8rem; 

}

.offering-card p {
                    color: #64748b;
 font-size   :      0.95rem;
        margin-bottom: 1.5rem;
   line-height: 1.6;
}

.offering-list {
   list-style: none;
	 padding: 0;
}

.offering-list li {
  padding: 0.6rem 0;
  color: #475569;
  font-size : 0.9rem;
   padding-left:       1.5rem;
  position: relative;
}  

.offering-list li::before{
  content: '✓';
   position: absolute;
  left: 0;
   color   : #2563eb;
        font-weight: 700;
}

.story-section {
    gap: 3rem;
               display:      grid;
  margin     :   3rem auto;
	max-width: 1200px;
	grid-template-columns: 1fr 1fr;
   padding:       2rem;
  align-items: center;

}

.story-image {
   width:       100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.story-content h2 {
   font-size: 2rem;
    font-weight: 700;
  margin-bottom: 1.5rem;
   color: #0f172a;
}

.story-content p {
   color: #475569;
	    font-size: 0.95rem;
	    line-height: 1.8;
	   margin-bottom: 1.5rem;
}

.cta-section {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #fff;
   padding: 4rem 2rem;
	 text-align: center;
    margin: 3rem 0;
}

.cta-content h2 {
	  font-size: 2rem;
    font-weight   :        700;
   margin-bottom: 1rem;
	}

.cta-content p {
    font-size   :       1.1rem;
   margin-bottom: 2rem;
               opacity: 0.95;
}

.cta-button-large {
  background: #fff;
  color: #2563eb;
    padding: 1rem 2rem;
      font-size   :       1rem;
}


.cta-button-large:hover {
   background: #f0f4ff;
}

.contact-section {


               max-width: 800px;
  margin: 3rem auto;
	 padding: 0 2rem;}

.contact-wrapper h2 {

  font-size: 2rem;
    font-weight: 700;
  text-align:  center;
    margin-bottom: 2rem;
	color: #0f172a;}

.contact-form {
   background: #fff;
  padding: 2rem;
  border-radius: 10px;
               border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	
}

.form-group {


    margin-bottom: 1.5rem;
    display: flex;
   flex-direction: column;
     }

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
  color: #0f172a;
   font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
          padding :    0.75rem 1rem;
  border: 1px solid #cbd5e1;
    border-radius: 6px;
  font-size: 0.95rem;
  font-family     :  inherit;
  transition: all 0.3s ease;
   background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	 outline: none;
    border-color: #2563eb;
         background: #fff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.submit-btn {
    width: 100%;
  padding: 0.875rem 1.75rem;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #fff;
    border-radius: 6px;
    font-weight:   600;
    font-size: 0.95rem;
  cursor: pointer;
    transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
    margin-top: 0.5rem; 

}

.submit-btn:hover {
  transform: translateY(-2px);
	  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
}

.submit-btn:active {
  transform: translateY(0);
}

.main-footer   {
    background: #0f172a;
  padding   :    3rem 2rem 1.5rem;
	margin-top:   4rem;
    color: #cbd5e1;
}


.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: 50px;
	width    :       auto;
}

.footer-section h4 {
  color: #fff;
   font-weight: 600;
   font-size: 1rem;
   margin-bottom: 1rem;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav a {
                    color: #cbd5e1;
   text-decoration: none;
	font-size: 0.9rem;
  transition: color 0.3s ease;
    display: inline-block;
   margin-bottom: 0.6rem;


}

.footer-nav a:hover {
    color: #2563eb; 

}

.footer-address {
    font-size: 0.9rem;
    line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-phone 
 {
    font-size: 0.95rem;
  font-weight: 600;
    color: #fff;
}

.footer-info p {
  color: #cbd5e1;

	   line-height: 1.6;

	   font-size: 0.9rem;
}

.footer-bottom {
   max-width     :       1200px;
         margin: 0 auto;
   padding-top: 1.5rem;
    border-top: 1px solid #334155;
  text-align: center;
    font-size    :  0.85rem;
          color: #94a3b8;
}@media (max-width: 768px) {
    .burger-btn {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 1rem;
        background: #fff;
        padding: 2rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid #e8e8e8;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .nav-menu a {
        font-size: 1rem;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
        gap: 2rem;
    }

    .hero-wrapper h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .why-narrative h2 {
        font-size: 1.8rem;
    }

    .approach-section h2 {
        font-size: 1.8rem;
    }

    .approach-blocks {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .offerings-grid {
        grid-template-columns: 1fr;
    }

    .offering-featured {
        transform: scale(1);
    }

    .story-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem;
    }

    .story-content h2 {
        font-size: 1.6rem;
    }

    .cta-content h2 {
        font-size: 1.6rem;
    }

    .contact-wrapper h2 {
        font-size: 1.6rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .nav-menu a::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.8rem 1rem;
    }

    .hero-wrapper h1 {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }

    .why-narrative {
        padding: 2rem 1rem;
    }

    .approach-img {
        height: 180px;
    }

    .offerings-section {
        padding: 2rem 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .footer-container {
        gap: 1rem;
    }
}.policySection {
   padding :       80px 2rem;
  background: #f8f9fa;
}

.policyContainer {
   max-width: 800px; 
  margin: 0 auto; 
  text-align: left;

}

.policyContainer h1 {
    font-size: 2.8rem;
   color: #2c3e50;
    margin-bottom: 2rem;
   font-weight: 700;
    text-align: center;
}

.policyContainer h2 {
   font-size  :     2rem;
    color: #2c3e50;
  margin  :     2.5rem 0 1.5rem;
    font-weight: 600;


     }

.policyContainer h3 {
    font-size: 1.4rem;
   color: #34495e;
	margin: 2rem 0 1rem;
	 font-weight:   600;
}

.policyContainer p {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
   line-height: 1.7;
  font-size: 1.1rem;
}

.policyContainer ul  {
   margin: 1rem 0 1.5rem 1.5rem;
}

.policyContainer ul li
	{
   color: #7f8c8d;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    position: relative;
   padding-left   :     0.5rem;
}

.policyContainer ul li::before{
  content: "•";
    color: #3498db;
  font-weight: bold;
  position: absolute;
   left: -1rem;
}@media (max-width: 768px) {
    .policyContainer h1 {
        font-size: 2.2rem;
    }

    .policyContainer h2 {
        font-size: 1.6rem;
    }

    .policyContainer h3 {
        font-size: 1.2rem;
    }

    .policyContainer p,
    .policyContainer ul li {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
    }

    .policyContainer h1 {
        font-size: 1.8rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
       color: #fff;
  padding: 4rem 2rem;
  text-align: center;
}

.services-hero-content h1 {
  font-size: 2.8rem;
   font-weight: 700;
   margin-bottom: 0.8rem;
}

.services-hero-content p {
	 font-size: 1.2rem;
   opacity: 0.9;
    max-width: 600px;
   margin: 0 auto;
}

.services-overview {
  background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
  padding: 3rem 2rem;
    text-align: center;
}

.overview-container {
  max-width  :  900px;
  margin    :     0 auto;
	
}

.services-overview h2 {
       font-size: 2rem;
	font-weight: 700;
   margin-bottom: 1rem;
   color:       #0f172a;


}

.services-overview p {


   font-size: 1rem;
    color: #475569;
  line-height: 1.8;
	} 

.services-detailed{

			 max-width: 1200px;
          margin: 3rem auto;
  padding: 0 2rem;}

.service-item {
    background: #fff;
	border-radius   :       12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
   margin-bottom:2.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
	 border    :      1px solid #e2e8f0;
}

.service-item:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.service-header {
     display:        flex;
    justify-content: space-between;
   align-items: center;
  padding :      1.5rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-bottom: 1px solid #e2e8f0;
}

.service-header h3  {
      font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
   margin  :  0;


     }

.service-badge {
   background: #e0e7ff;
	 color: #4338ca;
  padding: 0.4rem 1rem;
   border-radius: 20px;
   font-size: 0.8rem;
	font-weight: 600;
}

.service-badge-featured {


  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
   color: #fff;
}

.service-content {
       display: grid;
     grid-template-columns: 1fr 1fr;
        gap: 2rem;
    padding: 2rem;


}

.service-image {
  width: 100%;

}

.service-img {
   width: 100%;
    height: 100%;
    object-fit:   cover;
   border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-description {
          display: flex;
    flex-direction: column;
}

.service-intro {
  font-size: 1.05rem;
    color: #1e293b;
   line-height: 1.8;
               margin-bottom: 1.5rem;
    font-weight: 500;
}

.service-description h4 {
    font-size  :   1.05rem;
   font-weight: 600;
                    color: #0f172a;
  margin-top: 1.5rem;
  margin-bottom: 0.7rem;
}

.service-list

{
  list-style: none;

      padding: 0;

   margin-bottom: 1rem;
}

.service-list li		{
	   padding: 0.5rem 0 0.5rem 1.8rem;
   color: #475569;
	font-size: 0.95rem;
    position: relative;
		 line-height: 1.6;
	
	}

.service-list li::before {
   font-weight: 700;
   color: #2563eb;
      left: 0;
  content: '→';
	position: absolute;
}

.service-description p {
   margin-bottom: 0.8rem;
   font-size: 0.95rem;
                    color: #64748b;
    line-height: 1.7;
}

.service-cta {
    margin-top: auto;
	padding-top: 1.5rem;
}

.cta-link {
  display :      inline-block;
    padding: 0.8rem 1.6rem;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
	color: #fff;
  border-radius: 6px;
	font-weight: 600;
    font-size:    0.95rem;
  transition:    all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);

}

.cta-link:hover {
     transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35); 

}

.cta-link-featured {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.25);
}

.cta-link-featured:hover {
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.35);
}

.comparison-section    {
  background: #f8fafc;
    padding     :     4rem 2rem;
     margin: 3rem 0;
}

.comparison-wrapper {
    margin: 0 auto;
   max-width: 1200px;
}

.comparison-section h2 {
   font-size: 2rem;
				 font-weight: 700;
   text-align: center;
   margin-bottom: 2rem;
  color: #0f172a;
}

.comparison-table {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.table-header 
 {
    display: grid;
   grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
          gap: 1rem;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 1.5rem;
    color: #fff;
    font-weight: 600;
}

.table-row {
	  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 1rem;
   padding: 1.5rem;
   border-bottom  :       1px solid #e2e8f0;}

.table-row:last-child


{
	border-bottom: none;
}

.table-cell {
	display    :     flex;
    align-items: center;
    font-size   :   0.95rem;
   color: #64748b;
}

.table-feature {
  font-weight: 600;
    color: #0f172a;
}

.why-choose-narrative {


    max-width: 1200px;
  margin: 3rem auto;
    padding: 0 2rem;


}

.why-choose-narrative h2 {
   font-size: 2rem;
  font-weight   :       700;
       text-align: center;
    margin-bottom: 2.5rem;
   color: #0f172a;
}

.benefits-container {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap:2rem;

}

.benefit-item {
  background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
  padding: 2rem;
   border-radius: 10px;
   border-left: 4px solid #2563eb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
 transition: all 0.3s ease;
}

.benefit-item:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.benefit-item h3 {
    font-size: 1.15rem; 
    font-weight: 600; 
    color: #0f172a; 
  margin-bottom    :   0.8rem;
}

.benefit-item p
{
    font-size: 0.95rem;
  color   :     #64748b;
  line-height: 1.7;
}

.faq-section {
  background: linear-gradient(135deg, #f0f4ff 0%, #f8fafc 100%);

	   padding: 4rem 2rem;

		margin: 3rem 0;
}  

.faq-wrapper	{

	  max-width:    900px;
	 margin: 0 auto;}

.faq-section h2 {
  font-size: 2rem;
    font-weight: 700;
        text-align: center;
       margin-bottom: 2.5rem;
  color: #0f172a;
}

.faq-items {
    gap: 1rem; 
          display: grid;
}

.faq-item {
    background:#fff;
	border-radius: 8px;
   overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
   transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding     :     1.5rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
   font-weight: 600;
  color: #0f172a;
   cursor: pointer;
   user-select   : none;
   transition  :     all 0.3s ease;
    display: flex;
   justify-content: space-between;
   align-items : center;
}

.faq-question::after {
  content: '▼';
  font-size: 0.75rem;
  color: #2563eb;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after	{
  transform: rotate(180deg);
}

.faq-answer {
   padding: 0;
   transition: all 0.3s ease;
  color: #64748b;
    overflow: hidden;
  max-height  :    0;
}

.faq-item.active .faq-answer {
  padding  :  1.5rem;
   max-height: 500px;


}

.next-steps

{
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
	 color: #fff;
   padding:4rem 2rem;
  text-align:    center;
       margin: 3rem 0;
  border-radius: 12px;
  max-width: 1200px;
   margin-left: auto;
    margin-right: auto;
}

.next-steps-content h2
	{
   margin-bottom: 1rem;
   font-size: 2rem;
  font-weight   :       700;
}

.next-steps-content p{
  font-size :     1.1rem;
		 margin-bottom:       2rem;
    opacity: 0.95;
}

.thank-you-container {
     min-height: calc(100vh - 60px - 300px);
	display  :      flex;
  align-items: center;
    justify-content: center;
          padding: 3rem 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);}

.thank-you-content {


   max-width: 700px;
    background: #fff;
   padding: 3rem;
    border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
   text-align   :   center;
	


}

.thank-you-icon {
  display: flex;
    justify-content: center;
  margin-bottom     :        2rem;
}

.success-checkmark {
	width: 80px;
   height: 80px;
   border   :   3px solid #2563eb;
  border-radius    :        50%;
   display: flex;
  align-items: center;
    justify-content:    center;
   position:        relative;
  animation  : scaleIn 0.5s ease-out;
}

.success-checkmark::after {
     content: '✓';
   font-size     :     2.5rem;
	color: #2563eb;
  font-weight: 700;
}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thank-you-content h1 {
   font-size: 2rem;
   font-weight: 700;
   color: #0f172a;
   margin-bottom: 0.8rem;
}

.thank-you-subtitle {
   font-size: 1.1rem;
	color: #475569;
  margin-bottom: 2rem;
}

.thank-you-text {
   text-align: left;
 margin-bottom: 2rem;
     background: #f8fafc;
	padding: 1.5rem;
  border-radius: 8px;
         border-left: 4px solid #2563eb;
}

.thank-you-text p  
  {
   font-size: 0.95rem;
    color: #64748b;
   line-height: 1.8;
    margin-bottom:     1rem;
}

.thank-you-text p:last-child {
    margin-bottom: 0;
}

.next-actions {


       list-style: none;
  padding: 0;
        margin-top: 1rem;


}

.next-actions li {
    padding: 0.6rem 0;
   font-size: 0.95rem;
    color: #475569;
	}

.next-actions li::before {
  content: '✓ ';
  color: #2563eb;
	 font-weight: 700;
    margin-right  :0.5rem;
}

.next-actions a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
 transition: color 0.3s ease;
}

.next-actions a:hover     {
    color: #1d4ed8;
}

.confirmation-details {
  margin: 2rem 0;
  text-align: left;
}

.confirmation-details h2 {
	font-weight: 700;
       margin-bottom: 1.5rem;
  color: #0f172a;
    font-size: 1.3rem;
          text-align: center;
}

.detail-blocks  {
        display    :  grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap   : 1.5rem;
   margin-bottom: 2rem;
}

.detail-block {
  background: linear-gradient(135deg, #f0f4ff 0%, #f8fafc 100%);
   padding: 1.5rem;
    border-radius: 8px;
  text-align: center;
   border: 1px solid #e0e7ff;
}

.step-number {
   width: 40px;
    height: 40px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
   color: #fff;
	border-radius: 50%;
    display: flex;
   align-items: center;
   justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
   margin: 0 auto 0.8rem;
}  

.detail-block h3

{
   font-size: 1rem; 
	   font-weight   :      600; 
	   color: #0f172a; 
	  margin-bottom:    0.5rem;
}

.detail-block p

{
	font-size: 0.85rem;
                    color: #64748b;
    line-height: 1.6;
}

.contact-info-box {
               background: #f0f4ff;
    padding: 1.5rem;
        border-radius: 8px;
   border: 2px solid #2563eb;
    margin-bottom: 2rem;
  text-align: left;
}

.contact-info-box h2 {
		font-size: 1.2rem;
   font-weight: 700;
   color: #0f172a;
	margin-bottom: 1rem;

}


.contact-info-box p  {

	 font-size: 0.95rem;
    color: #475569;
   margin-bottom: 0.8rem;
}

.contact-phone,
.contact-address {
               background :    #fff;
    padding: 0.8rem;
  border-radius: 4px;
    border-left   :    3px solid #2563eb;
}

.thank-you-cta {
	  display: flex;
      gap: 1rem;
   		justify-content   :        center;
      flex-wrap: wrap;
}

.btn-return,
.btn-services {


 display: inline-block;
  padding: 0.9rem 1.8rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
	transition: all 0.3s ease;
}

.btn-return {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #fff;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.btn-return:hover {
     transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
}

.btn-services	{
	border: 2px solid #2563eb;
  color: #2563eb;
    background: #f8fafc;
}

.btn-services:hover {


  background: #f0f4ff;
  transform: translateY(-2px);
}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 1.8rem;
    }

    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .service-content {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .service-image {
        order: -1;
    }

    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .detail-blocks {
        grid-template-columns: 1fr 1fr;
    }

    .thank-you-content {
        padding: 2rem;
    }

    .thank-you-content h1 {
        font-size: 1.5rem;
    }

    .thank-you-cta {
        flex-direction: column;
    }

    .btn-return,
    .btn-services {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 2rem 1rem;
    }

    .services-hero-content h1 {
        font-size: 1.5rem;
    }

    .service-content {
        padding: 1rem;
    }

    .service-header h3 {
        font-size: 1.2rem;
    }

    .detail-blocks {
        grid-template-columns: 1fr;
    }

    .thank-you-content {
        padding: 1.5rem;
        margin: 1rem;
    }

    .confirmation-details h2 {
        font-size: 1.1rem;
    }

    .contact-info-box {
        padding: 1rem;
    }
}