* {
  margin: 0;
        padding: 0;
	 box-sizing: border-box;
}

html {
   scroll-behavior: smooth;
}

body    {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height  :        1.6;
  color: #2c3e50;
  background-color: #f8f9fa;
}

.header-main {
    background    :    white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
 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;
}

.nav-logo-section {
   display: flex;
    align-items: center;
}

.nav-logo {
    height: 45px;
      width: auto;
     filter: brightness(0) invert(1);
}

.burger-toggle {
     display: none;
	 background: none;
   border: none;
  cursor: pointer;
  padding: 0.5rem;
     }


.burger-toggle img {
	 width: 28px;
  height    :     28px;
   stroke: #2c3e50;
}

.nav-menu {
   display: flex;
  list-style :    none;
    gap :    2rem;
   align-items     :     center;
}

.nav-menu a {
  -o-transition: color 0.3s ease;
	text-decoration: none;
  color: #2c3e50;
   -webkit-transition   :  color 0.3s ease;
  font-weight: 500;
    transition: color 0.3s ease;
   -moz-transition: color 0.3s ease;
  font-size   :1rem;
}

.nav-menu a:hover
{
  color: #3498db; 
	
}

.cta-link {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white !important;
   padding: 0.6rem 1.5rem;
  border-radius: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.hero-block {
    max-width: 1200px;
   margin: 0 auto;
         padding   :  4rem 2rem;
    display: grid;
	grid-template-columns: 1fr 1fr;
   gap: 3rem;
   align-items     :    center;
}

.hero-content h1 
 {
  font-size: 3.5rem; 
	  line-height: 1.2; 
	      margin-bottom: 1rem; 
	   color: #1a252f; 
	   font-weight: 700; 
	
}

.hero-subtitle {
   font-size: 1.3rem;
   color: #555;
  line-height: 1.8;
   margin-bottom: 2rem;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

  color: white;

  border    : none;

   padding   :0.9rem 2.5rem;

  border-radius: 8px;

                    font-size: 1rem;

   font-weight: 600;

	cursor: pointer;

  transition: all 0.3s ease;

  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.hero-image {
   position: relative;
   overflow: hidden;
  border-radius: 12px;
}

.hero-image img  {
      width: 100%;
	 height: 100%;
  object-fit: cover;
    border-radius     : 12px;
}

.services-preview {
    background: white;
  padding     :   4rem 2rem;
   margin: 3rem 0;
}

.services-preview h2 {
  max-width: 1200px;
	margin: 0 auto 3rem;
    font-size: 2.5rem;
  color: #1a252f;
}

.services-grid {
   max-width: 1200px;
  margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
}

.service-card 
 {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding     :        2rem;
	border-radius   :       10px;
    transition     :   all 0.3s ease;
    border-left: 4px solid #667eea;
}

.service-card:hover {
  transform: translateY(-5px);
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
     }

.service-icon  
  {
      margin-bottom: 1rem;
    width: 60px;
   height :      60px;
   justify-content :       center;
    display :      flex;
   align-items: center;}

.icon-svg {
  width: 100%;
   height: 100%;
  stroke: #667eea;
	 fill: none;
      stroke-width: 1.5;
   stroke-linecap: round;
	stroke-linejoin: round;
}

.service-card h3   {


  font-size: 1.3rem;
   margin-bottom: 0.8rem;
   color: #2c3e50;
	}

.service-card p {
  color: #555;
		font-size    :        0.95rem;
	  line-height: 1.6;
}

.workplace-showcase {
   max-width: 1200px;
	 margin     :   3rem auto;
	padding     :      0 2rem;
	
}

.workplace-showcase h2 {
    font-size :        2.5rem;
   margin-bottom: 2rem;
	text-align: center;
	color: #1a252f;
}

.showcase-grid


{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap     :        1.5rem;
}


.showcase-grid img {
    width: 100%;
    height: 280px;
  object-fit: cover;
          border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
}

.showcase-grid img:hover {
     transform: scale(1.03);
	}


.expertise-section 
 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
	    color: white; 
	   padding: 4rem 2rem; 
		margin: 3rem 0; 
	                    display: grid; 
	         grid-template-columns: 1fr 1fr; 
	  gap    :3rem; 
	  align-items   :    center;
}

.expertise-content h2 {
   font-size: 2.5rem;
   margin-bottom: 2rem;
}

.expertise-list {
  list-style: none; 
	
}

.expertise-list li {
   padding: 0.8rem 0;
    padding-left: 2rem;
  position     :relative;
  font-size :        1.1rem;
    line-height: 1.8;
}

.expertise-list li::before {
  content: "✓";
    position:     absolute;
   left: 0;
   color: #fff;
	font-weight   : bold;
   font-size: 1.3rem;
}

.expertise-img    {
    width    :100%;
    border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-block {
  border-bottom: 2px solid #e0e0e0;
 background: white;
  padding: 4rem 2rem;
    border-top: 2px solid #e0e0e0;
   text-align: center;
}

.cta-block h2 {
      font-size     : 2.3rem;
	margin-bottom: 1rem;
   color: #1a252f;


}

.cta-block p {

    font-size: 1.1rem;
  color: #555;
    margin-bottom: 2rem;
  max-width: 700px;
    margin-left: auto;
   margin-right: auto;

} 

.btn-large {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

		color: white;

	         border: none;

	  padding: 1rem 3rem;

	    border-radius    :   8px;

	     font-size: 1.1rem;

	    font-weight: 600;

		cursor: pointer;

	  transition: all 0.3s ease;

	  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-large:hover {

	  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);

}

.contact-section {
  max-width: 800px;
    margin: 4rem auto;
   padding: 0 2rem;
}

.contact-section h2		{
       font-size    :2.5rem;
    text-align: center;
   margin-bottom    : 3rem;
    color: #1a252f;


}

.contact-form {
   background  :     white;

	padding: 2.5rem;

  border-radius: 12px;

  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group.full-width {
   grid-column    :     1 / -1;
}

.form-group label {
   display: block;
  margin-bottom    :  0.5rem;
     font-weight: 600;
	 color: #2c3e50;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
                    font-size:    1rem;
    padding: 0.8rem 1rem;
  border-radius: 6px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #e0e0e0;
 font-family: inherit;
   width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
   border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1); 

}

.btn-submit {
    width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
   border    :    none;
    padding :   1rem;
   border-radius     :       6px;
   font-size: 1.05rem;
    font-weight: 600;
   cursor     :  pointer;
  transition  :  all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3); 
	
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.footer-main {
   background: #1a252f; 
  color: white; 
  padding    :   3rem 2rem; 
    margin-top: 3rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
	font-size: 1.1rem;
  margin-bottom   : 1rem;
   color: #fff;
}

.footer-logo {
	height: 50px;
               width: auto;
  filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}

.footer-links {
   list-style    :       none;
}

.footer-links li {
       margin-bottom: 0.7rem;
     }

.footer-links a    {
    text-decoration  :      none;
	font-size     :    0.95rem;
   transition: color 0.3s ease;
    color: #bbb;
}

.footer-links a:hover {
               color: #667eea;
	
}

.contact-info {
  font-size: 0.95rem;
       color: #bbb;
   margin-bottom: 0.5rem;
  line-height: 1.6;
}

.footer-bottom {
   border-top:        1px solid #333;
                    padding-top    :2rem;
    text-align: center;
  color     :       #999;
	font-size: 0.9rem;
}
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        background: white;
        padding: 1rem;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        border-bottom: 1px solid #e0e0e0;
    }

    .nav-menu.active {
        display: flex;
    }

    .burger-toggle {
        display: block;
    }

    .hero-block {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .expertise-section {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .expertise-content h2 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .showcase-grid img {
        height: 200px;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}@media (max-width: 480px) {
    body {
        font-size: 0.95rem;
    }

    .nav-container {
        padding: 1rem;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .services-preview h2 {
        font-size: 1.8rem;
    }

    .cta-block h2 {
        font-size: 1.8rem;
    }

    .contact-section h2 {
        font-size: 1.8rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
   padding: 3rem 2rem;
   text-align: center; 
	
}

.services-hero-content{
	margin: 0 auto;
   max-width: 1200px;
}

.services-hero h1 {
  font-size:   3rem;
    margin-bottom: 1rem;
  font-weight: 700;
} 

.services-hero p
	{
    font-size: 1.2rem;
    opacity    :    0.95;
  line-height: 1.8;
}

.services-detailed {

   max-width: 1200px;
    margin: 0 auto;
	padding :3rem 2rem;
	


}

.service-detail-block	{
   	display: grid;
		 grid-template-columns: 1fr 1fr;
	    gap:     3rem;
			align-items: center;
	   margin-bottom  :        4rem;
	  padding: 2rem;
	  background: white;
	         border-radius: 12px;
	  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); 
	}

.service-detail-1 {
   grid-template-columns: 1fr 1fr;
	
}

.service-detail-2
{

   grid-template-columns: 1fr 1fr;
	
     }

.service-detail-2 {
  direction: rtl;
}

.service-detail-2 > * {
  direction: ltr;

}

.service-detail-image {
	overflow: hidden;
               border-radius    :  10px;
}

.service-detail-image img {
      width: 100%;
    height: 100%;
   object-fit: cover;
   border-radius: 10px;
   transition     :  transform 0.3s ease;
}

.service-detail-image:hover img {
  transform: scale(1.05);
}

.service-detail-content h2

{
   font-size: 2rem;
    color: #1a252f;
  margin-bottom: 1rem;
   font-weight     :  700;
}

.service-detail-content p {
  color: #555;
    font-size: 1.05rem;
  margin-bottom: 1.5rem;
		 line-height :        1.8;
}

.service-features {
                    list-style: none;
					margin-bottom   :       1.5rem;
}

.service-features li {
   padding: 0.6rem 0;
    padding-left: 1.8rem;
  position: relative;
   color: #2c3e50;
  font-size: 0.95rem;
  line-height:   1.6;
}



.service-features li::before {
     content: "•";
      position: absolute;
     left: 0;
      color: #667eea;
       font-weight   :       bold;
      font-size: 1.2rem;
     }



.service-pricing {
    background: #f8f9fa;
	padding: 1rem;
	border-radius: 6px;
    display: flex;
   justify-content: space-between;
   align-items: center;
}

.price-label {
    font-weight     :600;
    color: #2c3e50;
	
}

.price-value {
   font-size: 1.4rem;
  font-weight  :     700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   background-clip: text; 
	
}

.services-comparison {
  background: white; 
   padding: 4rem 2rem; 
  margin: 3rem 0;
}

.services-comparison h2 {
  font-size: 2.5rem;
   text-align:      center;
   margin-bottom: 3rem;
    color: #1a252f;
}

.packages-grid {
   max-width: 1200px;
    margin    :       0 auto;
	display :    grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                    gap: 2rem;
}

.package-card {

	    -moz-border-radius    : 10px;
     background   :     white;
      border  : 2px solid #e0e0e0;
     -webkit-border-radius  :  10px;
       border-radius: 10px;
     padding: 2rem;
     transition: all 0.3s ease;
   	 position   :    relative;
       display: flex;
       flex-direction: column;
     }

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.package-card.featured {
  border   :  2px solid #667eea;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  transform: scale(1.05);
} 

.package-badge {
  position: absolute;
    top: -12px;
   left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
   padding: 0.4rem 1rem;
    border-radius: 20px;
   font-size: 0.75rem;
  font-weight: 700;
   letter-spacing: 1px;
}

.package-header {

	   margin-bottom: 1.5rem;
	}

.package-header h3 {
   font-size: 1.5rem;
  color: #2c3e50;
				 margin-bottom   :      0.5rem;
}

.package-price {
  font-size: 2rem;
 font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-clip: text;
}

.package-subtitle {
  color: #999;
   margin-top: 0.2rem;
  font-size: 0.9rem;
}

.package-features {
	    list-style    :        none;
	flex-grow: 1;
 margin-bottom: 1.5rem;
} 

.package-features li {
   padding :  0.5rem 0;
  padding-left: 1.5rem;
   position: relative;
    color: #555;
   font-size: 0.9rem;
  line-height:       1.5;
}

.package-features li::before {
  content: "✓";
    position: absolute;
    left: 0;
  color: #2ecc71;
   font-weight: bold;
   font-size: 1rem;
}

.btn-package {
    background: #f0f0f0;
    color: #2c3e50;
          border: none;
    padding: 0.8rem 1.5rem;
   border-radius    :      6px;
    font-weight    :       600;
   cursor: pointer;
    transition: all 0.3s ease;
   font-size :      0.95rem;
}

.btn-package:hover {
		 background: #e0e0e0;
  transform: translateY(-2px);
}

.btn-featured {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
       color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-featured:hover {

  background: linear-gradient(135deg, #5568d3 0%, #6b3f91 100%);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);

}

.services-why   {
	background :#f8f9fa;

   padding: 4rem 2rem;
}

.services-why h2 {
  max-width: 1200px;
    margin: 0 auto 3rem;
  font-size: 2.5rem;
  color: #1a252f;
	text-align: center;
}

.why-grid {
   max-width: 1200px;
	margin: 0 auto;
	 display :       grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.why-item {
  background: white;
    padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.why-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.1);
}

.why-number {
   font-weight: 700;
   color: #667eea;
   opacity: 0.7;
    margin-bottom: 0.5rem;
  font-size: 2.5rem;
}

.why-item h3 {
    font-size: 1.2rem;
  color: #2c3e50;
    margin-bottom: 1rem;
  font-weight     :   700;


}

.why-item p   {

  color: #555;
   font-size: 0.95rem;
    line-height: 1.6;

}

.services-cta  
  {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
          padding: 4rem 2rem;
    text-align :        center;
	
}

.services-cta h2	{
   font-size   :     2.5rem;
	margin-bottom: 1rem;
	}

.services-cta p {
  font-size: 1.1rem;
    margin-bottom: 2rem;
   opacity: 0.95;
}

.thankyou-hero {
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
   padding: 4rem 2rem;
  min-height: 80vh;
  display: flex;
  align-items   :        center;
     justify-content: center;
}

.thankyou-container {

	     max-width: 700px;
    text-align: center;
  background: rgba(255, 255, 255, 0.1);
   padding: 3rem;
    border-radius:        15px;
  backdrop-filter: blur(10px);


}

.thankyou-icon {


  width: 100px;
   height: 100px;
     margin  :    0 auto 1.5rem;
   display: flex;
   align-items: center;
   justify-content: center;
  background: rgba(255, 255, 255, 0.2);
   border-radius: 50%;
     }

.thankyou-icon img {
    width  :    60%;

	   height: 60%;

	  stroke: white;

	     fill: none;

	         stroke-width: 1.5;
}

.thankyou-hero h1 {
   font-size: 2.5rem;
    margin-bottom: 1rem;
  font-weight   :        700;
}

.thankyou-subtitle
	{


    font-size: 1.1rem;
    margin-bottom: 2rem;
   opacity: 0.95;
  line-height: 1.8;

}

.thankyou-content {
   text-align: left;
  background: rgba(255, 255, 255, 0.15);
	padding: 2rem;
   border-radius: 10px;
    margin: 2rem 0;
}

.thankyou-block {
   margin-bottom: 2rem;

}

.thankyou-block:last-child {
   margin-bottom: 0;
}

.thankyou-block h2 {
   font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.thankyou-steps


{
   list-style: decimal;
    padding-left: 1.5rem;
}

.thankyou-steps li {
  margin-bottom: 0.8rem;
   line-height: 1.6;
	font-size: 0.95rem;
}

.thankyou-recommendations {
    list-style: none;
    padding-left     :  0;
}

.thankyou-recommendations li {

   padding     :      0.5rem 0;
  padding-left   :  1.5rem;
  position: relative;
	font-size: 0.95rem;
  line-height:     1.6;
	}

.thankyou-recommendations li::before {
  content: "→";
  position: absolute;
   left: 0;
	 font-weight: bold;
}

.thankyou-recommendations a {

	    transition: opacity 0.3s ease;
    text-decoration: underline;
  color: white;
     }


.thankyou-recommendations a:hover {
      opacity: 0.8;

}

.thankyou-info {
  background: rgba(255, 255, 255, 0.15);
  padding: 1.5rem;
    border-radius: 8px;
   margin: 2rem 0;
}

.thankyou-info h3 {
  font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.thankyou-info p {
    font-size: 0.95rem;
   margin-bottom :      0.5rem;
}

.contact-phone {

	  font-size: 1.3rem;
   font-weight: 700;
	margin-top: 0.5rem;
	
	}

.btn-back {
	display: inline-block;
  background: white;
  color: #27ae60;
  padding: 0.9rem 2.5rem;
   border-radius    : 6px;
   text-decoration :    none;
  font-weight: 600;
    transition: all 0.3s ease;
    margin-top     :  1.5rem;
   border: none;
  cursor: pointer;
  font-size     :   1rem;
}

.btn-back:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.thankyou-features {
  background:      white;
    padding: 4rem 2rem;
}

.thankyou-features h2 {
    font-size: 2.5rem;
  text-align: center;
	 margin-bottom: 3rem;
  color: #1a252f;
}

.features-grid {
                    max-width: 1200px;
  margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item		{
	 background: #f8f9fa;
  -webkit-border-radius    :       10px;
               padding: 2rem;
  border-radius :       10px;
  -moz-border-radius: 10px;
   text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}



.feature-icon {
   width: 60px;
   height: 60px;
    margin: 0 auto 1rem;
    display : flex;
  align-items    :  center;
   justify-content   : center;
}

.feature-icon img     {
  width   :      100%;
    height: 100%;
    stroke: #2ecc71;
  fill: none;
   stroke-width: 1.5;
   stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-item h3 {
    font-size: 1.2rem;
 color: #2c3e50;
    margin-bottom: 0.8rem;
  font-weight: 700;


}

.feature-item p

{
   color: #555;
  font-size: 0.95rem;
   line-height: 1.6;
}

@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2rem;
    }

    .services-hero p {
        font-size: 1rem;
    }

    .service-detail-block {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .service-detail-2 {
        direction: ltr;
    }

    .service-detail-2 > * {
        direction: ltr;
    }

    .service-detail-content h2 {
        font-size: 1.5rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card.featured {
        transform: scale(1);
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .services-comparison h2,
    .services-why h2,
    .services-cta h2 {
        font-size: 2rem;
    }

    .thankyou-container {
        padding: 2rem 1.5rem;
    }

    .thankyou-hero h1 {
        font-size: 2rem;
    }

    .thankyou-subtitle {
        font-size: 1rem;
    }

    .thankyou-features h2 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-hero h1 {
        font-size: 1.6rem;
    }

    .service-detail-content h2 {
        font-size: 1.2rem;
    }

    .services-comparison h2,
    .services-why h2,
    .services-cta h2,
    .thankyou-features h2 {
        font-size: 1.5rem;
    }

    .thankyou-container {
        padding: 1.5rem 1rem;
    }

    .thankyou-hero h1 {
        font-size: 1.5rem;
    }

    .package-price {
        font-size: 1.5rem;
    }

    .why-number {
        font-size: 2rem;
    }
}.policySection {
  padding: 80px 2rem;
   background     :       #f8f9fa;
   min-height: 70vh;
}

.policyContainer {
    max-width: 800px;
  margin: 0 auto;
    text-align: left;
} 

.policyContainer h1 {
   font-size :3rem;
  color: #1a252f;
   margin-bottom: 2rem;
    font-weight: 700;
   line-height :       1.2;
}

.policyContainer h2
{
   font-size: 2.5rem;
  color :  #2c3e50;
	 margin-bottom: 1.5rem;
   margin-top: 2rem;
  font-weight: 700;
   padding-bottom: 0.5rem;
	 border-bottom: 2px solid #667eea;
}

.policyContainer h2:first-of-type {
   margin-top: 0;
}

.policyContainer p {
  color: #555;
  text-align-last: left;
  text-align: justify;
   line-height: 1.8;
   margin-bottom: 1.5rem;
   font-size: 1.05rem;
}

.policyContainer p:last-child	{
  margin-bottom: 0;
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1.5rem;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.8rem;
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }

    .policyContainer p {
        font-size: 1rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
    }

    .policyContainer h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .policyContainer h2 {
        font-size: 1.3rem;
        margin-top: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
}