* {

  margin: 0;
  padding     :  0;
   box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  line-height: 1.6;
    color: #2c3e50;
   background: #ffffff;
}

.primary-navigation {
    background  :     #1a2332;
    padding: 1.2rem 0;
    position: sticky;
    top :    0;
       z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
   max-width  :  1200px;
  margin: 0 auto;
  padding: 0 20px;
    display: flex;
        justify-content: space-between;
  align-items: center;
}

.brand-section .site-logo {

       height  :     45px;
   width     :        auto;
  filter: brightness(0) invert(1);
	
     }

.nav-toggle {
    display: none;
   background: none;
    border: none;
   cursor: pointer;
}

.menu-icon {
    width: 28px;
  height: 28px;
    stroke: #ffffff;
   fill: none;
}

.nav-links {

	  display: flex;
   gap :2.5rem;

	}

.nav-links a {
	color: #ecf0f1;

	 text-decoration  :   none;

   font-weight    :  500;

   transition     :  color 0.3s;

    font-size: 16px;
}

.nav-links a:hover {
                    color: #3498db;
}

.hero-section {
  display  :   grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
   max-width :1200px;
  margin    :   4rem auto;
	padding: 0 20px;
  align-items: center;
}

.hero-content h1 {
  color: #1a2332;
  font-size: 2.8rem;
  line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
   font-size: 1.2rem;
   color: #555;
   margin-bottom: 2rem;
}


.hero-actions {
    display: flex;
   gap: 1.5rem; 
	
}

.primary-button, .secondary-button {
   padding: 14px 32px; 
	  text-decoration: none; 
	    border-radius: 6px; 
	    font-weight: 600; 
	   transition: all 0.3s; 
	  display: inline-block;
}

.primary-button {
  background: #3498db;
    color    :       white;
	
}

.primary-button:hover {
  background: #2980b9;
  transform: translateY(-2px);
}

.secondary-button {
    background: transparent;
	 color   :    #3498db;
    border: 2px solid #3498db;
}

.secondary-button:hover {
    background: #3498db;
   color: white;
}

.hero-visual img {
   width:  100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.intro-segment {
          background   : #f8f9fa;
         padding: 4rem 20px;
  text-align: center;
}

.content-wrapper {
   max-width: 800px;

	   margin     :   0 auto;
}

.intro-segment h2 {
  font-size: 2.2rem;
         color: #1a2332;
  margin-bottom: 1.5rem;
}

.intro-segment p {
  font-size: 1.1rem;
  color    :    #555;
	line-height: 1.8;
}

.services-preview {
    padding: 5rem 20px;
	  max-width: 1200px;
	        margin   :       0 auto; 

} 

.content-grid {

   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;}

.service-card {

	  background: white;
        padding: 2.5rem;
    border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s;
	text-align: center;
	}

.service-card:hover {
  transform: translateY(-8px);
}

.card-icon {

  margin-bottom : 1.5rem;


}

.card-icon img   {
   width: 60px;
	height: 60px;
  stroke: #3498db;
       fill: none;
  stroke-width: 2;
}

.service-card h3 {
    margin-bottom: 1rem; 
	    font-size: 1.5rem; 
	    color   :     #1a2332;
}

.service-card p {
    color: #666;
  line-height: 1.7; 

}

.approach-section {
   background    :   #ecf0f1;
  padding: 5rem 20px;
}

.split-layout {
   max-width: 1200px;
  display: grid;
    margin: 0 auto;
               grid-template-columns: 1fr 1fr;
    align-items: center;
   gap: 4rem;
}

.text-content h2 {
    font-size: 2.2rem;
	color: #1a2332;
  margin-bottom:  1.5rem;
}

.text-content p {
       color :#555;
   font-size: 1.1rem;
	margin-bottom:2rem;
  line-height: 1.8;
}

.benefit-list {
    list-style: none;
}

.benefit-list li		{

	    padding: 0.8rem 0;
       padding-left: 2rem;
           position: relative;
       color: #444;
     font-size   :      1.05rem;


}

.benefit-list li:before {
	  content: "→";
	    position: absolute;
	   left    :    0;
	  color: #3498db;
	 font-weight: bold;


}

.visual-content img {
    width    :   100%;
   border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.values-section {
    padding: 5rem 20px;
	 max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.values-section h2 {
    font-size: 2.2rem;
  color: #1a2332;
   margin-bottom: 3rem;
}

.values-grid	{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2.5rem;

}

.value-item {
    padding: 2rem;
}

.value-icon {
    margin-bottom: 1.5rem;
}

.value-icon img

{
    width: 55px;
    height: 55px;
     stroke: #27ae60;
	 fill: none;
  stroke-width   :       2;
}

.value-item h3 {

  margin-bottom: 1rem;
	  color: #1a2332;
	   font-size: 1.4rem;}

.value-item p {
  color: #666;
    line-height     :       1.7;


}

.testimonial-area {
   				 background: #2c3e50;
    padding: 5rem 20px;
   color: white;
     }

.testimonial-area h2 {
   margin-bottom: 3rem;
    text-align: center;
   font-size    :      2.2rem;
}

.testimonial-grid {
   max-width:   1000px;
       margin: 0 auto;
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.testimonial-box {
  background: rgba(255,255,255,0.1);

	  padding: 2.5rem;

	    border-radius: 10px;

	    border-left: 4px solid #3498db;
}

.testimonial-box p {
  font-style: italic;
   margin-bottom: 1.5rem;
        line-height: 1.7;
	 font-size: 1.05rem;
}

.client-name {
    display: block;
     font-weight: 600;
    color   :#3498db;
}

.cta-section {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 5rem 20px;
       text-align: center;
          color: white;
     }

.cta-content  {
   max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
  font-size:      2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
   font-size: 1.2rem;
    margin-bottom: 2.5rem;
  opacity: 0.95;
}

.cta-button {
	  background: white;
  color: #667eea;
    padding: 16px 40px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 700;
	display: inline-block;
   transition: transform 0.3s;
	
     }

.cta-button:hover {
  transform: scale(1.05); 

}

.additional-info {
    padding: 5rem 20px;
  background    :  #f8f9fa;
}

.info-blocks {
   max-width: 1200px;
  margin    :        0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.info-block {
   background: white;
    border-radius: 10px;
    overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.info-block img {
	width    :100%;
  height: 220px;
    object-fit: cover;
}

.info-block h3

{
    padding: 1.5rem 2rem 0.5rem 2rem;
  font-size: 1.5rem;
	 color: #1a2332;
}

.info-block p {
  color: #666;
       line-height: 1.7;
  padding: 0 2rem 2rem 2rem;
}

.contact-section


{
   padding: 5rem 20px;
    max-width: 1200px;
        margin: 0 auto;

}



.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

.contact-info h2 {
               font-size: 2.2rem;
	color: #1a2332;
  margin-bottom :  1.5rem;
}

.contact-info p {
         color: #555;
   margin-bottom: 2rem;
   line-height: 1.7;
	font-size     :  1.05rem;
}

.contact-details {
   display: flex;
    flex-direction   :column;
   gap: 1.5rem;
}

.detail-item {
    align-items: center;
    display: flex;
   gap: 1rem;

}

.detail-item img {
	  width: 30px;
    height: 30px;
    stroke: #3498db;
   fill: none;
	 stroke-width: 2;
}

.detail-item span {
  color: #444;
    font-size: 1.05rem;
}

.contact-form {
    background: #f8f9fa;
    padding: 2.5rem;
  border-radius: 10px;
}

.form-group		{
    margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
               margin-bottom: 0.5rem;
    color: #1a2332;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
   width: 100%;
  padding:   12px;
    border   : 2px solid #ddd;
   border-radius   :6px;
    font-size: 16px;
  font-family    :inherit;
					transition: border-color 0.3s;
	
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
                    outline: none;
   border-color: #3498db;
}

.submit-button {
  border-radius: 6px;
        font-weight: 600;
  color: white;
    background: #3498db;
    border    :       none;
       padding    :    14px 40px;
    transition: all 0.3s;
   font-size: 16px;
   cursor    :   pointer;
}

.submit-button:hover {
    background: #2980b9;
  transform: translateY(-2px);
}

.site-footer {
    padding: 3rem 20px 1.5rem 20px;
    color: #ecf0f1;
    background: #1a2332;
}

.footer-content {
    max-width: 1200px;
          margin :0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
               margin-bottom: 2rem;
}

.footer-logo   {
   height  :   40px;
  width: auto;
  filter: brightness(0) invert(1);
     margin-bottom: 1rem;
}

.footer-section h4
	{

	 margin-bottom: 1rem;
	 color: #3498db;
   font-size: 1.1rem;}

.footer-section ul {
     list-style: none;
}

.footer-section li {
   margin-bottom: 0.7rem;
}

.footer-section a {
        color   :     #ecf0f1; 
    text-decoration :none; 
   transition: color 0.3s;

}

.footer-section a:hover {
    color: #3498db;
}

.footer-section p {
   line-height: 1.7;
   color: #bdc3c7;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
                    padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}


.footer-bottom p {
    color: #95a5a6;

}@media (max-width: 968px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a2332;
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .hero-section {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .split-layout {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
    }

    .primary-button, .secondary-button {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .intro-segment h2,
    .values-section h2,
    .contact-info h2 {
        font-size: 1.8rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .content-grid,
    .values-grid,
    .info-blocks {
        grid-template-columns: 1fr;
    }
}.policySection {
    padding: 80px 2rem;
   background :        #f8f9fa; 

}



.policyContainer {
               max-width     :   800px;
     margin: 0 auto;
   text-align: left;
} 

.policyContainer h2 {
    font-size :  2.5rem;
	color    :        #2c3e50;
   margin-bottom: 1.5rem;
    font-weight: 700;
}  

.policyContainer p {
   color: #7f8c8d;
   margin-bottom   :  1.5rem;
  line-height   :    1.7;
  font-size: 1.1rem;
}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }
    .policyContainer p {
        font-size: 1rem;
    }
    .policySection {
        padding: 60px 1rem;
    }
}.page-header {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  padding: 5rem 20px;
  text-align: center;
  color: white;
}

.header-content h1 {
   font-size: 3rem;
  margin-bottom: 1rem;
}

.header-content p {
  opacity: 0.9;
		max-width: 700px;
	 font-size: 1.3rem;
    margin: 0 auto;
}

.services-intro {
   padding   :    4rem 20px;
    background: #f8f9fa;
}

.intro-container {
   max-width: 900px;
  margin: 0 auto;
  text-align: center;
	}

.services-intro h2
	{
  font-size: 2.3rem;
  color: #1a2332;
   margin-bottom: 1.5rem;
}

.services-intro p		{
    font-size: 1.15rem;
   color : #555;
	 line-height: 1.8;
}

.detailed-services {
    padding: 5rem 20px;
}

.services-container {
    max-width: 1200px; 
     margin: 0 auto;
}

.service-detailed {
   align-items: center;
    margin-bottom: 5rem;
    gap  :     4rem;
    grid-template-columns: 1fr 1fr;
   display: grid;
}

.service-detailed.reverse		{
  direction: rtl;
     }

.service-detailed.reverse > *   {
    direction: ltr;
}

.service-image img {
    width: 100%;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12); 
	
}

.service-content
	{
    padding: 1rem;
} 

.service-icon-wrapper {
  margin-bottom :   1.5rem;
}

.service-icon {
  width: 55px;
   height: 55px;
   stroke: #3498db;
  fill: none;
    stroke-width :   2;
     }

.service-content h3 {
	font-size: 2rem;

	    color: #1a2332;

	    margin-bottom: 1rem;
}

.service-content > p {
   font-size: 1.1rem;
	color: #555;
  line-height: 1.8;
   margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
      margin-bottom: 2rem;
}

.service-features li {


  padding: 0.7rem 0;
	padding-left    :    2rem;
  position: relative;
   color :#444;
	}



.service-features li:before {
  content: "✓";
    position :    absolute;
    left: 0;
   color: #27ae60;
  font-weight: bold;
   font-size: 1.2rem;

}

.service-button {
	display  :  inline-block;
   background:  #3498db;
   color: white;
   padding: 12px 30px;
  text-decoration: none;
  border-radius: 6px;
        font-weight  :  600;
    transition: all 0.3s;
}

.service-button:hover {
  transform: translateY(-2px);
  background: #2980b9;
}  

.process-section {
   background: #ecf0f1;
  padding: 5rem 20px; 

}

.process-container {
   max-width: 1200px;
   margin: 0 auto;
}

.process-container h2 {
    margin-bottom: 3rem;
    text-align: center;
   font-size: 2.3rem;
    color: #1a2332;


}

.process-steps {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
}

.process-step {
    background: white;
  padding: 2.5rem;
   border-radius: 10px;
   text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);}

.step-number {
  font-size: 2.5rem;
      font-weight  :        700;
       color: #3498db;
      margin-bottom: 1rem;
}

.process-step h4 {
		 font-size: 1.4rem; 
	    color: #1a2332; 
		margin-bottom   :        1rem;
     }  

.process-step p {
  color  :      #666;
   line-height: 1.7;
}

.benefits-section {
	   padding: 5rem 20px;
}

.benefits-wrapper {
   max-width: 1200px;
   margin: 0 auto;
}

.benefits-wrapper h2 {
   text-align     :       center;
    font-size: 2.3rem;
   color: #1a2332;
    margin-bottom: 3rem;
}

.benefits-grid {
       display     :     grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
   gap: 2.5rem;
}

.benefit-card {
  text-align :   center;
	 padding: 2rem;
}

.benefit-icon {
   width     :       50px;
   height: 50px;
    margin-bottom: 1.5rem;
    stroke: #9b59b6;
  fill: none;
   stroke-width :2;
}

.benefit-card h4 {
   font-size: 1.4rem;
  color: #1a2332;
  margin-bottom :  1rem;

}

.benefit-card p	{
  color: #666;
	line-height    :      1.7;
	
}

.pricing-info {
    background: #f8f9fa;
  padding: 5rem 20px;
}

.pricing-container {
   max-width: 1000px;
  margin: 0 auto;
    text-align: center;
}

.pricing-container h2 {
    font-size:  2.3rem;
    color    :       #1a2332;
   margin-bottom: 1.5rem;
}

.pricing-intro {
   font-size: 1.1rem;
    color: #555;
   margin-bottom: 3rem;
	line-height: 1.8; 
	
}

.pricing-cards {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
}

.price-card {
  background: white;
    padding: 2.5rem;
   border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.price-card.featured {
       border: 3px solid #3498db;
  transform: scale(1.05);
}

.price-card h4 {

  font-size  :1.6rem;
    color: #1a2332;
    margin-bottom: 1rem;
     }

.price-desc {
   font-size: 1.05rem;
	color: #666;
   margin-bottom: 2rem; 
	
}

.price-link {
     display: inline-block;
    color :  #3498db;
  text-decoration: none;
       font-weight: 600;
  padding: 10px 25px;
  border: 2px solid #3498db;
  border-radius :        6px;
  transition: all 0.3s;
}

.price-link:hover {


    background: #3498db;
   color: white;


}

.cta-contact {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 5rem 20px;
  color: white;
}

.cta-wrapper {
    max-width: 800px;
   margin :        0 auto;
    text-align: center;
}

.cta-wrapper h2    {
  font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-wrapper > p {
    font-size: 1.2rem;
   margin-bottom: 2.5rem;
   opacity: 0.95;
}

.cta-actions {
  display     : flex;
    justify-content: center;
	align-items: center;
    gap: 2rem;
      flex-wrap: wrap;
}

.primary-cta   {
   background: white;
     color: #667eea;
    padding    :   16px 40px;
   text-decoration: none;
  border-radius: 6px;
  font-weight: 700;
  transition: transform 0.3s;
}

.primary-cta:hover

{
  transform: scale(1.05); 

}

.contact-info-quick {
    display: flex;
  align-items: center;
    gap: 0.8rem;
  background: rgba(255,255,255,0.2);
	padding: 12px 24px;
    border-radius: 6px;
} 

.quick-icon {
   width: 24px;
   height: 24px;
    stroke: white;
  fill: none;
    stroke-width: 2;

}

.contact-info-quick span {
  font-weight:     600;
   font-size :    1.1rem;
}

.faq-section {
    padding: 5rem 20px;
}

.faq-container {
	 max-width: 900px;
    margin: 0 auto;
}

.faq-container h2 {
			text-align: center;
  font-size:      2.3rem;
     color: #1a2332;
  margin-bottom:        3rem;
}

.faq-list {
   flex-direction :  column;
  gap: 1.5rem;
    display: flex;
	
}

.faq-item {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  overflow:   hidden;
}

.faq-question {
   padding: 1.5rem 2rem;
         cursor: pointer;
	 display: flex;
  justify-content: space-between;
   align-items: center;
    transition   : background 0.3s;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h4 {
	font-size: 1.2rem;
	 color  :       #1a2332;
   margin :       0;
}

.faq-toggle {
  width: 20px;
    height: 20px;
   stroke: #3498db;
         fill     :        none;
   stroke-width: 2;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg); 

}

.faq-answer {
    max-height: 0;
  overflow: hidden;
 transition: max-height 0.3s ease-out;
	
}

.faq-item.active .faq-answer

{
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem 2rem;
     color: #555;
   line-height: 1.8;
}

.thankyou-section
{
     padding: 5rem 20px;
  min-height   :    70vh;
}

.thankyou-container {
   text-align: center;
  margin: 0 auto;
  max-width: 900px;

}

.success-icon-wrapper {
   margin-bottom: 2rem;
}

.success-icon {
       width: 80px;
       height: 80px;
      stroke: #27ae60;
  fill  :        none;
 stroke-width: 2;
   animation: scaleIn 0.5s ease-out;
	}@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}.thankyou-container h1 {
    font-size: 2.8rem;
  color: #1a2332;
   margin-bottom: 1.5rem;
}

.thankyou-message {
	font-size: 1.2rem;
	 color     :   #555;
          margin-bottom: 3rem;
    line-height: 1.8;
}



.next-steps {
         background: #f8f9fa;
  padding  :      3rem 2rem;
     border-radius: 12px;
   margin-bottom: 3rem;
}

.next-steps h3 {
  font-size :   2rem;
				 color: #1a2332;
   margin-bottom: 2.5rem;
}

.steps-grid{
  display:    grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
   gap: 2.5rem;
}

.step-item {
   text-align: center;
}

.step-icon {


    margin-bottom: 1.5rem; 


}

.step-icon img  {


   width :      50px;
  height: 50px;
  stroke    :     #3498db;
	 fill   :      none;
  stroke-width    :  2;

}

.step-item h4 {
  font-size:   1.4rem;
    color :    #1a2332;
      margin-bottom: 1rem;
}  

.step-item p {
  line-height: 1.7;
   color: #666;
}

.thankyou-actions {
  display: flex;
 justify-content: center;
   gap: 1.5rem;
   margin-bottom: 4rem;
	flex-wrap :       wrap;
}

.additional-resources {
    background: #ecf0f1;
	 padding: 3rem 2rem;
   border-radius: 12px;
  margin-bottom: 3rem;
}


.additional-resources h3 
 {
   font-size: 1.8rem;
   color  :        #1a2332;
      margin-bottom: 1rem;
}

.additional-resources > p {
    color:   #555;
    margin-bottom     :     2rem;
	line-height  :        1.7;
}

.resources-links {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
	
}

.resource-card {
   background: white;
    border-radius: 10px;
    overflow    :    hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
	}

.resource-card img {
	width: 100%;
    height : 200px;
	object-fit   :    cover;
}

.resource-card h4 {
   padding: 1.5rem 1.5rem 0.5rem 1.5rem;
     font-size :   1.4rem;
	color:   #1a2332;
}

.resource-card p {
	padding: 0 1.5rem 1.5rem 1.5rem;
   color: #666;
     line-height: 1.7;
}

.contact-reminder {
    border-radius   :   10px;
    background: white;
	padding  : 2.5rem;
  border: 2px solid #3498db;
}

.contact-reminder h4 {
  font-size: 1.6rem;
    color: #1a2332;
   margin-bottom: 1rem;
}


.contact-reminder > p {
   color: #555;
    margin-bottom: 1.5rem;
}

.phone-display {
   gap: 1rem;
  margin-bottom: 1.5rem;
   justify-content: center;
    display: flex;
    align-items: center;
}

.phone-icon
	{
     fill: none;
    height: 30px;
    stroke-width: 2;
    width: 30px;
    stroke: #3498db;
     }

.phone-number {
  font-size: 1.5rem;
   font-weight     : 700;
                    color: #3498db;
}

.office-address {
    color: #666;
    font-size: 1.05rem;
}@media (max-width: 968px) {
    .header-content h1 {
        font-size: 2.2rem;
    }

    .header-content p {
        font-size: 1.1rem;
    }

    .service-detailed,
    .service-detailed.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .cta-actions {
        flex-direction: column;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .price-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 600px) {
    .thankyou-container h1 {
        font-size: 2rem;
    }

    .thankyou-message {
        font-size: 1.05rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .resources-links {
        grid-template-columns: 1fr;
    }
}