* {
   margin: 0;
   padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e3a8a;
    --secondary-color: #0f766e;
    --accent-color: #dc2626;
    --light-bg: #f8fafc;
    --dark-text: #0f172a;
    --border-color: #cbd5e1;
    --success-color: #16a34a;
}

html		{
        scroll-behavior: smooth;
} 

body{
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--dark-text);
   background-color: #ffffff;
    line-height: 1.6;
}

a {
  text-decoration: none;
   color :inherit;
}

ul {
   list-style: none;
}



.navbar {
	 position: sticky;
   top: 0;
    z-index: 1000;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
  margin :  0 auto;
	 display    :       flex;
   justify-content: space-between;
  align-items: center;
   padding: 0 2rem;
}  

.nav-logo img {
   height: 45px;
  filter: brightness(0) invert(1);
}

.nav-menu {
	display: flex;

	  gap: 2.5rem;
}

.nav-link {
  color   : white;
	font-weight: 500;
   padding: 0.5rem 1rem;
   transition: all 0.3s ease;
   position  :  relative;


}

.nav-link::after {
  content: '';
	 position: absolute;
    bottom: 0;
    left     :   50%;
  width: 0;
    height: 2px;
  background-color: var(--accent-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
   width: 80%;
}



.burger-menu		{
   display: none;
   flex-direction: column;
  cursor  :    pointer;
    gap    :      5px;
}

.burger-menu span {
	width: 25px;
    height: 3px;
	 background-color  :   white;
    border-radius: 3px;
   transition: all 0.3s ease;
}

.hero-section {
  display: grid;
   grid-template-columns: 1fr 1fr;
	gap: 3rem;
  align-items: center;
  padding: 6rem 2rem;
   max-width: 1200px;
   margin: 0 auto;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(15, 118, 110, 0.05) 100%);
}

.hero-content h1 {
   font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
  color: var(--primary-color);
    line-height: 1.2;
}

.hero-content p {
  font-size :     1.1rem;
  color: #475569;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.btn-primary	{

	  display: inline-block;
   padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
   color:   white;
	 border-radius: 8px;
    font-weight: 600;
   transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);


}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}

.hero-img {
	width: 100%;
    border-radius   :       12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.intro-section {
    padding: 6rem 2rem;
  background-color: var(--light-bg); 

}

.intro-wrapper {
  max-width    :      1200px;
  margin: 0 auto;
}


.intro-section h2 {
   font-size: 2.5rem;
  margin-bottom: 3.5rem;
  text-align: center;
  color: var(--primary-color);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: 2.5rem;
}

.intro-card {
    background: white;
    padding     :   2rem;
   border-radius: 12px;
  border-left: 4px solid var(--accent-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
     }

.intro-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.intro-card h3 {
   font-size: 1.3rem;
	    margin-bottom: 1rem;
	  color: var(--dark-text);
}

.intro-card p {
       color: #64748b;
    line-height: 1.7;
}

.services-preview {
     padding     : 6rem 2rem;
  max-width: 1200px;
   margin: 0 auto;}

.services-preview h2 {
  font-size: 2.5rem;
         margin-bottom: 3.5rem;
  text-align: center;
  color: var(--primary-color);
} 

.services-container {
      display    :     grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap  :  2rem;


}

.service-item {
  background: white;
    border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease; 

}

.service-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-img {
    width     :        100%;
  height: 220px;
    object-fit: cover;
}

.service-item h3 {
  font-size    :  1.2rem;
  padding: 1.5rem 1.5rem 0.5rem;
  color: var(--primary-color);
}

.service-item p {
                    padding: 0.5rem 1.5rem 1.5rem;
   color: #64748b;
         font-size  :     0.95rem;
}

.cta-section     {

	   padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
   text-align: center;
   margin   :      4rem 0;}

.cta-content h2 {
  font-size: 2.2rem;
  color    :      white;
          margin-bottom: 1rem;
}

.cta-content p {
   font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
 max-width: 600px;
    margin-left: auto;
  margin-right: auto;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
  color: var(--primary-color);
   border-radius: 8px;
	font-weight  :       600;
	transition: all 0.3s ease;
}

.btn-secondary:hover  
  {
	  transform: translateY(-3px);
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);}

.features-section {

	    padding: 6rem 2rem;
  background-color: var(--light-bg);
     }

.features-section h2 {
  font-size: 2.5rem;
          margin-bottom :3.5rem;
  text-align: center;
  color: var(--primary-color);
}

.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2.5rem;
    max-width: 1200px;
	margin  : 0 auto;
}

.feature {
    background: white;
   padding: 2rem;
    border-radius: 12px;
  border-top: 4px solid var(--secondary-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature h4 {
	font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--dark-text);
}

.feature p {
 color: #64748b;
                    line-height: 1.7;
} 

.contact-section {
      padding  : 6rem 2rem;
   max-width: 900px;
    margin: 0 auto;
}

.contact-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
   text-align: center;
  color: var(--primary-color);
}

.contact-section > p {
	text-align: center;
  color: #64748b;
    margin-bottom: 3rem;
   font-size: 1.1rem;
}

.contact-form {
    display: grid;
   gap: 1.5rem;
  background: var(--light-bg);
	 padding: 2.5rem;
  border-radius: 12px;
  border: 2px solid var(--border-color);

}

.contact-form input,
.contact-form select,
.contact-form textarea {

  padding : 1rem;
  border: 1px solid var(--border-color);
        border-radius: 8px;
   font-family     :  inherit;
  font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
   outline: none; 
	  border-color: var(--secondary-color); 
	  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
}

.btn-submit {
   padding   :     1rem 2rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
    border: none;
  border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
}

.footer
	{
  background: var(--dark-text);
         color: white;
  padding: 3rem 2rem 1.5rem;
}

.footer-content {
    display: grid;
   grid-template-columns: auto 1fr;
  gap: 3rem;
	max-width: 1200px;
    margin: 0 auto 2rem;
  align-items: start;
}

.footer-logo-img {
     height: 50px;
  filter: brightness(0) invert(1);
}

.footer-info {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap    :   2rem;
}

.info-block h4 {
  font-size  :        1.1rem;
    margin-bottom   :        1rem;
  color: var(--accent-color);
}

.info-block p {

	  color: rgba(255, 255, 255, 0.8);
   margin-bottom :0.5rem;
    line-height:      1.8;
}

.footer-links {
		gap: 0.8rem;
  flex-direction: column;
  display: flex;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
 transition: all 0.3s ease; 

}

.footer-links a:hover {
  color: var(--accent-color);
   padding-left: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);

	 padding-top: 1.5rem;

	    text-align     : center;

	  color: rgba(255, 255, 255, 0.6);

	    font-size   : 0.95rem;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--primary-color);
        flex-direction: column;
        gap: 0;
        padding: 1.5rem;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(10px, 10px);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .nav-link {
        padding: 1rem;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .intro-section h2,
    .services-preview h2,
    .features-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .btn-primary,
    .btn-secondary,
    .btn-submit {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }

    .intro-grid,
    .services-container,
    .features-list {
        grid-template-columns: 1fr;
    }

    .nav-container {
        padding: 0 1rem;
    }
}.services-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
   color: white;
   padding: 6rem 2rem;
    text-align: center;
	margin-top: 70px;
}


.services-hero-content h1 {
    font-size     :3rem;
  margin-bottom: 1rem;
    font-weight: 800;
}

.services-hero-content p    {
	 font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}  

.services-detailed	{

	  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
	}

.services-detailed h2 {
        font-size: 2.5rem;
   margin-bottom  : 3.5rem;
   text-align: center;
  color: var(--primary-color);
}

.services-grid {
    display   :      grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
               gap   :  2.5rem;
    margin-bottom: 4rem;
}

.service-card {
	background: white;
   border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
        display: flex;
    flex-direction: column;
  height: 100%;
}

.service-card:hover  
  {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
	
}

.service-header {
    position: relative;
  overflow: hidden;
}

.service-card-img		{
   width: 100%;

	        height: 250px;

	   object-fit: cover;

		 transition: transform 0.3s ease;
}

.service-card:hover .service-card-img {
  transform: scale(1.05);
}

.service-header h3 {

    position: absolute;
  bottom: 0;
   left: 0;
   right:0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
   color :        white;
       padding: 2rem 1.5rem 1.5rem;
		 font-size: 1.3rem;
    margin:0;
}

.service-body {
  padding: 2rem;
    flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-body p {
    color: #64748b;
    line-height   :       1.7;
  margin-bottom: 1.5rem;
 flex-grow: 1;
}

.service-features {
   list-style: none;
  margin: 1.5rem 0;
                    padding: 0;
}

.service-features li {
		color: #475569;
   padding: 0.6rem 0;
    padding-left: 1.5rem;
    position   :       relative;
  font-size: 0.95rem;

}



.service-features li:before {
  content: '✓';
   position: absolute;
    left: 0;
  color: var(--success-color);
    font-weight: bold;

}

.service-price  
  {
   font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 1.5rem 0;
}

.btn-service	{
   display   :        inline-block;
    padding    :0.8rem 1.5rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 8px;
    font-weight: 600;
  transition: all 0.3s ease;
    text-align: center;
   align-self  :        flex-start;
}

.btn-service:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.pricing-comparison {
  background-color: var(--light-bg);
  padding: 6rem 2rem;
}

.pricing-comparison h2 {


   font-size: 2.5rem;
   margin-bottom: 3.5rem;
               text-align    :       center;
  color: var(--primary-color); 

}

.comparison-table {
  max-width: 1000px;
               margin :   0 auto;
  background: white;
  border-radius: 12px;
   overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.table-header,
.table-row {
   display     :grid;
                    grid-template-columns   :    2fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border-color);

}

.table-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
	font-weight: 600;
  text-align: center;
}

.table-label		{
   padding:       1.5rem;
     text-align: left;
  font-weight: 500;
  color: var(--dark-text);
  background-color: var(--light-bg);
}

.table-cell    {

   padding    :        1.5rem;
  text-align   :      center;
   color: #64748b;


}

.table-row:last-child {
  border-bottom: none;
}

.table-row:nth-child(odd) .table-label {
       background-color: white; 
	

}

.table-cell.basic {
  background-color: rgba(30, 58, 138, 0.03);


}

.table-cell.standard {
  background-color: rgba(15, 118, 110, 0.03);
}

.table-cell.premium {
  background-color: rgba(220, 38, 38, 0.03);
}

.faq-section   {
  padding: 6rem 2rem;
  max-width:1000px;
   margin: 0 auto;

}

.faq-section h2   {
   font-size: 2.5rem;
    margin-bottom: 3.5rem;
   text-align: center;
  color: var(--primary-color); 
	
}

.faq-container {
  display: grid;
  gap: 1.5rem;
}

.faq-item    {
  background: white;
  border-left: 4px solid var(--secondary-color);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover	{
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
     transform: translateX(5px);
}

.faq-item h4 {
    font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--dark-text);
}

.faq-item p {
   color: #64748b;
	 line-height: 1.7;


}

.cta-services {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
    text-align: center;
     padding: 5rem 2rem;
}

.cta-services h2 {
  font-size  :       2.2rem;
     margin-bottom :  1rem;
}

.cta-services p {
  font-size: 1.1rem; 
	  color: rgba(255, 255, 255, 0.9); 
	  margin-bottom: 2.5rem; 
	  max-width: 600px; 
	      margin-left: auto; 
	                    margin-right: auto;
}

.btn-primary-services {
   display: inline-block; 
	   padding: 1rem 2.5rem; 
		background: white; 
	  color: var(--primary-color); 
	  border-radius: 8px; 
	   font-weight: 600; 
	  transition: all 0.3s ease;
}

.btn-primary-services:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.thankyou-section {
  min-height: calc(100vh - 200px); 
	        display :    flex; 
	    align-items: center; 
	   justify-content: center; 
	    padding:  4rem 2rem; 
	  background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(15, 118, 110, 0.05) 100%); 
	               margin-top: 70px;
}

.thankyou-container {
   max-width: 800px;
	 width: 100%;
   text-align:    center;
}

.success-icon-wrapper {
   margin-bottom   :  2rem;
}

.success-circle {
   width: 120px;
	   height: 120px;
	 margin    : 0 auto;
	  animation: success-pop 0.6s ease-out;
}@keyframes success-pop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-section h1 {
	font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
	font-weight: 800;

}

.thankyou-subtitle {
    font-size: 1.2rem;
  color  :     #64748b;
   margin-bottom: 2rem;
}

.thankyou-message		{
       background: white;
   padding   : 2rem;
   border-radius: 12px;
    margin-bottom: 3rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
   line-height: 1.8;
   color: #475569;
}

.thankyou-message p {

    margin-bottom: 1rem;
}



.thankyou-message strong {
  color: var(--primary-color);
}

.next-steps {
   margin:     4rem 0;
}

.next-steps h2 {
   font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.steps-grid {
     display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 2rem;
  margin-bottom    :3rem;
	}

.step {
    background: white;
   padding  :     2rem;
        border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
}

.step-number


{
    display: inline-flex;
    align-items: center;
  justify-content: center;
   width: 50px;
     height: 50px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
                    border-radius: 50%;
  font-size :  1.5rem;
   font-weight: 700;
         margin-bottom: 1rem;
}

.step h3 {
      font-size: 1.1rem;
  color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.step p		{

	 color: #64748b;
   font-size: 0.95rem;


}

.tips-section {
  background: white;
  padding: 2.5rem;
   border-radius: 12px;
   margin: 3rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.tips-section h2 {
      font-size: 1.8rem;
  color: var(--primary-color);
	margin-bottom     :     1.5rem;
}

.tips-list {
   text-align: left;
  display: grid;
  gap: 1rem;
 list-style   :        none;


}

.tips-list li {
   padding-left: 2rem;
  position: relative;
    color: #475569;
   line-height: 1.7;
}

.tips-list li:before {
  content: '→';
    position: absolute;
  left: 0;
  color: var(--secondary-color);
         font-weight: bold;
	 font-size: 1.2rem;
}

.alternatives {
   margin: 3rem 0;
}

.alternatives h2 {
   font-size: 1.8rem;
  color: var(--primary-color);
    margin-bottom: 2rem;
}

.alternatives-grid {

	display   :   grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 2rem;
     }

.alt-link {
	background: white;
  padding: 2rem;
    border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition   :   all 0.3s ease;
   text-decoration: none;
  color: inherit;
   border: 2px solid transparent;
}

.alt-link:hover {
  border-color: var(--secondary-color);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
	}

.alt-title {
    font-weight  :       600;
     color: var(--primary-color);
     margin-bottom: 0.5rem;
       font-size: 1.1rem;
}

.alt-link p {
    color   :      #64748b;
    font-size: 0.95rem;
}

.contact-info-box {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 2.5rem;
  border-radius: 12px;
    margin-top: 3rem;
}

.contact-info-box h3

{
	  font-size: 1.3rem;
   margin-bottom: 1rem;
     }

.contact-info-box p {


  font-size    :    0.95rem;
   margin-bottom: 0.5rem;
}

.phone-number {
   font-size: 1.8rem;

	    font-weight: 700;

						color: white;

	       margin:  1rem 0 !important;
}

.hours {
    opacity: 0.9;
   font-size     :   0.9rem;
}

.social-proof {
  background-color: var(--light-bg);
     padding  :        5rem 2rem;
  text-align:center;
}

.social-proof h2 {
   font-size: 2rem;
  color: var(--primary-color);
   margin-bottom: 3rem;
}

.stats {
   display   :       grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
    max-width     :   1000px;
  margin: 0 auto;
}

.stat-item {
   background  : white;
  padding: 2rem;
    border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.stat-number {


    font-size: 2.5rem;
   font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;


}

.stat-item p {
   color: #64748b;
  font-size: 0.95rem;
}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .services-hero-content p {
        font-size: 1rem;
    }

    .services-detailed h2,
    .pricing-comparison h2,
    .faq-section h2,
    .cta-services h2,
    .thankyou-section h1,
    .social-proof h2 {
        font-size: 1.8rem;
    }

    .table-header,
    .table-row {
        grid-template-columns: 2fr 1fr;
    }

    .table-cell.standard,
    .table-cell.premium {
        display: none;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .success-circle {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .service-header h3 {
        padding: 1.5rem 1rem 1rem;
        font-size: 1.1rem;
    }

    .service-card-img {
        height: 180px;
    }

    .service-body {
        padding: 1.5rem;
    }

    .alternatives-grid {
        grid-template-columns: 1fr;
    }

    .phone-number {
        font-size: 1.4rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}.policySection {
  padding  :        5rem 2rem;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.03) 0%, rgba(15, 118, 110, 0.03) 100%);
               margin-top: 70px;
  min-height: calc(100vh - 300px);

}

.policyContainer {
    max-width: 900px;
         margin: 0 auto;
  text-align: left;
   background     :      white;
      padding: 3rem;
    border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.policyContainer h1

{
  font-size: 3rem;
  color: var(--primary-color);
   margin-bottom    :    2rem;
	font-weight: 800;
  border-bottom: 3px solid var(--secondary-color);
   padding-bottom: 1rem;
}

.policyContainer h2 {
   font-size: 1.8rem;
  color: var(--primary-color);
  margin  :       2.5rem 0 1.5rem 0;
  font-weight   :    700;
}

.policyContainer h2:first-of-type {

	  margin-top: 0;
	}

.policyContainer p {
                    color: #475569;
  margin-bottom: 1.5rem;
   line-height: 1.8;
   font-size: 1rem;
	 text-align     :   justify;
}  

.policyContainer p:last-child {

	    margin-bottom: 0; 
	

}@media (max-width: 1024px) {
    .policyContainer {
        padding: 2.5rem;
    }

    .policyContainer h1 {
        font-size: 2.5rem;
    }

    .policyContainer h2 {
        font-size: 1.6rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .policySection {
        padding: 3rem 1.5rem;
    }

    .policyContainer {
        padding: 2rem;
        border-radius: 8px;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin: 2rem 0 1rem 0;
    }

    .policyContainer p {
        font-size: 0.95rem;
        line-height: 1.7;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 2rem 1rem;
        min-height: auto;
    }

    .policyContainer {
        padding: 1.5rem;
        border-radius: 8px;
    }

    .policyContainer h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        border-bottom: 2px solid var(--secondary-color);
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin: 1.5rem 0 0.8rem 0;
    }

    .policyContainer p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }
}

@media print {
    .navbar,
    .footer {
        display: none;
    }

    .policySection {
        background: white;
        margin: 0;
        padding: 0;
    }

    .policyContainer {
        max-width: 100%;
        box-shadow: none;
        border: none;
        page-break-inside: avoid;
    }

    .policyContainer h1,
    .policyContainer h2 {
        page-break-after: avoid;
        color: black;
    }

    .policyContainer p {
        orphans: 3;
        widows: 3;
    }
}