* {


   margin: 0;
  padding: 0;
   box-sizing: border-box;
     }  

html {
   scroll-behavior:       smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
   color     :  #2c3e50;
   background-color: #fafbfc;
  line-height: 1.6;
}


.main-header {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
	position: sticky;
    top: 0;
   z-index: 1000;
}



.navbar {
  max-width   : 1400px;
   padding: 0 20px;
    margin: 0 auto;
}

.nav-container {


    display: flex;
  justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-section {
    flex-shrink: 0;
}

.logo-img {
	 height: 45px;
      width: auto;
}

.burger-btn {

  display: none;
  background: none;
   border: none;
 cursor: pointer;
    padding: 8px;
  border-radius: 8px;
                    transition: background 0.3s ease;
     }

.burger-btn:hover {
  background: rgba(102, 126, 234, 0.1);
}

.burger-icon {
   width: 24px;
   height     :       24px;
   stroke: #2c3e50;
}

.nav-links {
   display: flex;
  list-style: none;
 gap: 40px;
  align-items: center;
}

.nav-link {
     text-decoration: none;
   color :  #2c3e50;
    font-weight: 500;
  font-size: 15px;
		transition: color 0.3s ease;
    position: relative;
} 

.nav-link::after		{
  content: '';
    position :       absolute;
  bottom: -5px;
   left: 0;
   width: 0;
  height: 2px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
          transition: width 0.3s ease;
}

.nav-link:hover {
      color: #667eea;}

.nav-link:hover::after {
	  width: 100%;

}

.hero-section {
    min-height: 600px;
       display: flex;
  align-items: center;
   justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  position  :        relative;
   overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
	top: 0;
       right: -100px;
	width: 400px;
  height    :      400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
   animation: float 6s ease-in-out infinite;
}@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-30px); }
}.hero-content {

   text-align: center;
                    color: white;
  position: relative;
               z-index: 2;
    max-width: 700px;
	padding: 40px;
}

.hero-title {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.2;
       font-weight: 700;
}

.hero-subtitle {
   font-size    :     20px;
   margin-bottom: 35px;
	opacity: 0.95;
    font-weight: 300;
}

.cta-button     {
          display: inline-block;
    background: white;
 color: #667eea;
   padding :       15px 35px;
   border-radius :     50px;
  text-decoration: none;
		font-weight: 600;
    transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); 
	
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.main-content {
    max-width: 1400px;
   margin: 0 auto;
   padding: 0 20px;
}

.features-section {
    padding: 80px 0;
}

.section-title {
       font-size: 36px;
    font-weight: 700;
        text-align   :  center;
  margin-bottom     :50px;
    color    :        #2c3e50;
}

.features-grid  {
   	display  :       grid;

  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

  gap: 30px;

    margin-bottom: 40px; 
	
}

.feature-card {


  background: white;
    padding: 35px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
   text-align: center;}

.feature-card:hover
	{
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.15);
}

.feature-icon {
  width   :       60px;
  height  :     60px;
  margin: 0 auto 20px;
  display: flex;
               align-items: center;
   justify-content: center;
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    border-radius: 12px;
}

.feature-svg  
  {
   width :        32px; 
	height: 32px; 
   stroke: #667eea; 
    fill : none; 
	stroke-width: 2; 
    stroke-linecap: round; 
  stroke-linejoin: round;
}

.feature-card h3 {
         font-size: 20px;
   margin-bottom: 15px;
   color: #2c3e50;
}

.feature-card p {
  font-size: 14px;
   color: #7f8c8d;
  line-height :  1.7;
}

.services-showcase {
  padding: 80px 0;}

.services-wrapper {

  display: grid;
      gap: 40px;

}

.service-item {
  display  :       grid; 
         grid-template-columns: 1fr 1fr; 
	gap: 40px; 
	 align-items: center; 
   padding: 40px; 
     background: white; 
   border-radius :      12px; 
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06); 
      transition: all 0.3s ease;
}

.service-item:hover {
  box-shadow: 0 8px 35px rgba(102, 126, 234, 0.12);
}

.service-item:nth-child(even) {
    grid-template-columns: 1fr 1fr;

		direction: rtl;
}

.service-item:nth-child(even) .service-content {
   direction: ltr; 
	
}

.service-image {
    width: 100%;
	height   :  320px;
    object-fit: cover;
	 border-radius: 8px;
}

.service-content h3 {
   font-size: 24px;
  margin-bottom   :    15px;
  color: #2c3e50;
}

.service-content p {
  font-size: 15px; 
	   color: #7f8c8d; 
		line-height: 1.8; 
	    margin-bottom: 20px;
}

.service-badge {
	display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color   :   white;
   padding: 6px 14px;
  border-radius:20px;
    font-size: 12px;
   font-weight: 600; 
	
}

.cta-section   {
  background: linear-gradient(135deg, #764ba2 0%, #f093fb 100%);
  padding: 80px 40px;
	 margin: 60px 0;
   border-radius :16px;
  text-align: center;
  color: white;
}

.cta-wrapper {
                    max-width: 600px;
  margin    :        0 auto;
}

.cta-title {
      font-size: 36px;
	font-weight: 700;
    margin-bottom   :       20px;
	}

.cta-text {


          margin-bottom: 30px;
  line-height: 1.8;
   font-size :      16px;
    opacity :       0.95;
	} 

.cta-button-large {
  display: inline-block;
  background: white;
    color: #764ba2;
   padding: 16px 40px;
    border-radius    :        50px;
   text-decoration: none;
  font-weight: 600;
    transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cta-button-large:hover {

	  transform: translateY(-3px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);

}


.contact-section {
    padding: 80px 0;
      margin-bottom: 40px;
}

.contact-container {
        display:      grid;
         grid-template-columns: 1fr 1fr;
  gap: 50px;
    margin-top: 40px;
}

.contact-form {
  background: white;
		padding: 40px;
         border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 25px;
}

.form-label {
   display    :    block;
  font-weight  :        600;
  color: #2c3e50;
	margin-bottom: 8px;
  font-size: 14px;
}

.form-input,
.form-textarea {
   width: 100%;
    padding: 12px 16px;
    border   :2px solid #ecf0f1;
    border-radius: 8px;
   font-family: inherit;
    font-size: 14px;
  color: #2c3e50;
  transition: all 0.3s ease;


}

.form-input:focus,
.form-textarea:focus {
        outline: none;
 border-color: #667eea;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
	} 

.form-textarea {
  resize: vertical;
}

.form-submit {
	    width: 100%; 
   padding: 14px 24px; 
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
        color: white; 
    border   :       none; 
    border-radius: 8px; 
	font-weight: 600; 
  font-size  :       15px; 
    cursor: pointer; 
  transition: all 0.3s ease; 
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4); 

}

.contact-info {
   display     :       flex;
   flex-direction: column;
  justify-content: center;
}

.info-block {
   margin-bottom: 40px;
}

.info-block h3 {
   font-size: 18px;
	         font-weight: 700;
	   color: #2c3e50;
	  margin-bottom: 10px;
}  

.info-block p {
  font-size: 15px;
      color: #7f8c8d;
  line-height: 1.8; 

}

.main-footer {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
   color: white;
        padding: 60px 20px 20px;
}

.footer-content {
      max-width: 1400px;
    margin     :   0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
    margin-bottom: 40px; 
	}


.footer-logo-block {
   display: flex;
   align-items: center;
   justify-content  :    center;

}

.footer-logo {
   height   :     50px;
    width  :    auto;
  filter: brightness(0) invert(1);
}

.footer-column h4 {
    font-size: 16px;
	font-weight: 700;
    margin-bottom    :      20px;
}

.footer-links {
       list-style  :     none;
}

.footer-links li

{


    margin-bottom: 12px;


}



.footer-links a {
  color: #bdc3c7;
    text-decoration  :        none;
    font-size: 14px;
	transition: color 0.3s ease;
}

.footer-links a:hover

{
	color: #667eea;
}

.footer-address {
  font-size: 14px;
  color: #bdc3c7;
  line-height     :1.8;
    margin-bottom :   15px;
}

.footer-phone {
	  font-size: 14px; 
 color: #bdc3c7;


}

.footer-bottom {
  max-width :      1400px;
   margin: 0 auto;
    padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
    font-size:  13px;
  color: #95a5a6;
}  @media (max-width: 768px) {
    .burger-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        padding: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid #ecf0f1;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-content {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 25px;
    }

    .service-item {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 25px;
    }

    .service-item:nth-child(even) {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .service-item:nth-child(even) .service-content {
        direction: ltr;
    }

    .service-image {
        height: 250px;
    }

    .service-content h3 {
        font-size: 20px;
    }

    .cta-section {
        padding: 50px 20px;
        margin: 40px 0;
    }

    .cta-title {
        font-size: 24px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form {
        padding: 30px;
    }

    .contact-info {
        justify-content: flex-start;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-logo-block {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .section-title {
        font-size: 22px;
    }

    .service-content h3 {
        font-size: 18px;
    }

    .feature-card h3 {
        font-size: 18px;
    }

    .cta-title {
        font-size: 20px;
    }

    .hero-section::before {
        width: 250px;
        height: 250px;
        right: -80px;
    }
}.services-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
	color: white;
   padding: 80px 40px;
   text-align:       center;
	margin-bottom   :        60px;
}

.services-title {
	 font-size: 44px;
    font-weight: 700;
   margin-bottom: 20px;
  line-height: 1.2;
}

.services-intro {
  font-size: 18px;
    opacity: 0.95;
    max-width: 600px;
   margin: 0 auto;
    font-weight: 300;
}

.services-detailed {
   display: grid;
   gap: 50px;
    margin-bottom: 60px;
}

.service-detail-card {
  background: white;
   border-radius: 12px;
   overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-detail-card:hover {
  box-shadow: 0 8px 40px rgba(102, 126, 234, 0.15);
  transform: translateY(-4px);
}

.service-detail-header {
   display:flex;

  justify-content: space-between;

  align-items: center;

   padding: 30px;

  background: linear-gradient(135deg, #f8fafc 0%, #f0f4ff 100%);

          border-bottom: 2px solid #e8eef7;
	
}

.service-detail-header h2 {
	 font-size: 26px;
  flex: 1;
    color: #2c3e50;
    margin  :      0;
	}

.service-duration     {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
       color: white;
    padding: 8px 16px;
    border-radius: 20px;
   font-size: 13px;
   font-weight: 600;
  white-space: nowrap;
   margin-left: 20px;
}

.service-detail-image {
  width: 100%;
     object-fit: cover;
       height :       350px;
}

.service-detail-body {
     padding: 40px;}

.service-detail-body h3 {
   margin-top: 0;
	 margin-bottom: 20px;
   font-size: 20px;
  color: #2c3e50;
}

.service-list {
    list-style: none;

	   margin-bottom: 30px; 
	
}

.service-list li {
      padding-left: 30px;
	color: #7f8c8d;
  position: relative;
   line-height: 1.6;
    padding: 12px 0;
   font-size: 15px;
}

.service-list li::before {
  content: '✓';
    position: absolute;
   left: 0;
    color: #667eea;
  font-weight: bold;
  font-size: 16px;
}

.service-description {
    font-size: 15px;
  color:   #7f8c8d;
    line-height: 1.8;
    margin-bottom: 25px;
   padding: 20px;
          background: #f8fafc;
   border-left: 4px solid #667eea;
	border-radius: 4px;
}

.service-meta {
  display: flex;
	flex-wrap: wrap;
               gap    :15px;
  padding-top: 20px;
  border-top: 1px solid #ecf0f1;
}

.meta-item {
  font-size: 13px;
  color:  #7f8c8d;
  display: flex;
    align-items: center;
   padding: 5px 12px;
   background: #f0f4ff;
   border-radius: 6px;
}

.comparison-section {
	padding: 60px 0;
   margin: 40px 0;
    background: #f8fafc;
	border-radius    :     12px;
  padding: 60px 40px;
}

.comparison-table-wrapper

{
    overflow-x: auto;
               border-radius: 8px;
}

.comparison-table {
  width: 100%;
   border-collapse: collapse;
	background: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.comparison-table thead {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white; 
	
}

.comparison-table th {
    text-align: left;
  font-size  :    14px;
  padding: 20px;
   font-weight: 600;
}

.comparison-table td
{
    padding: 18px 20px;
   		 border-bottom:       1px solid #ecf0f1;
       font-size: 14px;
      color: #7f8c8d;
}

.comparison-table tbody tr:hover {
	    background : #f8fafc;
	}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table td strong {
    color: #2c3e50;
   font-weight: 600; 

}

.faq-section {
    padding:      60px 0;
	      margin: 40px 0;
}

.faq-container{
  display: grid;
   gap    :20px;
}

.faq-item {
                    background: white;
   border-radius: 8px;
    overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;


}

.faq-item:hover {
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.1);
}

.faq-question {
	 border: none;
         background: white;
    padding: 20px;
  color    :   #2c3e50;
   cursor    :       pointer;
  font-weight: 600;
   transition: all 0.3s ease;
	font-size: 16px;
	width: 100%;
	 justify-content: space-between;
    display: flex;
    align-items: center;
}

.faq-question:hover {
   background: #f8fafc;
   color: #667eea;
}

.faq-icon {

    width: 20px;
    height: 20px;
    stroke: #667eea;
  fill   :     none;
	 stroke-width: 2;
    transition: transform 0.3s ease;
    stroke-linecap: round;
    stroke-linejoin: round;
     }

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
   max-height     :   0;
   overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
    padding: 0 20px 20px 20px;

	       color :       #7f8c8d;

	  line-height:   1.8;

	   font-size: 15px;
}

.cta-services {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
		padding: 80px 40px;
	  margin: 60px 0;
	    border-radius   :        16px;
	      text-align: center;
	  color: white; 

}

.cta-services-wrapper {
   max-width: 600px;
    margin: 0 auto;
}

.cta-services h2 {
      font-size: 36px;

    font-weight: 700;

         margin-bottom: 20px;}

.cta-services p {
   font-size   :  16px;
    margin-bottom: 30px;
        opacity: 0.95;
}

.thankyou-section {
 min-height: 60vh;
  display: flex;
        align-items: center;
    justify-content: center;
  padding:      60px 40px;
  background: linear-gradient(135deg, #f8fafc 0%, #f0f4ff 100%);
}



.thankyou-container {
  text-align: center;
   max-width: 700px;
    background: white;
    padding: 60px 40px;
   border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.thankyou-icon {
	   margin-bottom: 30px;}

.success-icon {
    width: 80px;
	height: 80px;
	stroke: #2ecc71;
   fill: #d5f4e6;
   stroke-width: 2;
	stroke-linecap:   round;
    stroke-linejoin: round;
}

.thankyou-title {
  font-size: 40px;
   font-weight: 700;
   color: #2c3e50;
   margin-bottom: 20px;
}

.thankyou-subtitle {
	font-size: 16px;
   color   :    #7f8c8d;
  line-height: 1.8;
          margin-bottom    :      40px;
}


.thankyou-info-box {
    display  :grid;
   grid-template-columns: 1fr 1fr;
  gap :       30px;
                    margin-bottom: 40px;
    text-align: left; 
	
}

.info-item h3 {
   font-size: 18px;
  color: #2c3e50;
   margin-bottom: 15px;
   margin-top: 0;
}

.thankyou-list {
    list-style  :      none;
		padding: 0;


}

.thankyou-list li {
  color: #7f8c8d;
   padding-left     : 25px;
   padding: 10px 0;
		position: relative;
   font-size: 14px;
}

.thankyou-list li::before {
    left     : 0;
   color: #667eea;
  font-weight: bold;
  position: absolute;
  content: '→';
}

.info-item p {
  font-size: 14px;
  color: #7f8c8d;
  line-height: 1.7;
    margin:    10px 0;
}

.info-item strong {
	color: #2c3e50;
}

.phone-hint {
	font-size: 12px;
   color: #95a5a6;
    font-style     :  italic;

     } 

.thankyou-actions {
    display  :        flex;
    gap: 15px;
    justify-content: center;
  margin-bottom: 30px;
   flex-wrap: wrap;
}

.action-button {
	display: inline-block;
   padding    :14px 28px;
  border-radius: 8px;
         text-decoration: none;
	 font-weight: 600;
	 font-size: 15px;
   transition: all 0.3s ease;


}

.action-button.primary  
  {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.action-button.primary:hover {


  transform: translateY(-2px);
	  box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);

}

.action-button.secondary {
    background  :#f0f4ff;
   color: #667eea;
   border  :2px solid #667eea;
}

.action-button.secondary:hover {
       background: #667eea;
    color: white;
}

.email-confirmation {

	padding: 20px;
	background: #d5f4e6;
	border-radius: 8px;
    border-left    :4px solid #2ecc71;
  color: #27ae60;
    font-size: 14px;

}

.cta-next-steps {
    padding: 60px 0;
  margin-bottom: 40px;
}

.next-steps-wrapper h2		{
   text-align    :       center;
	font-size: 32px;
   font-weight: 700;
   color :    #2c3e50;
   margin-bottom: 50px;
}

.next-steps-grid {

	   display:     grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
               gap     :       30px;
     }

.next-step-card {
  background: white;
    padding: 35px;
  border-radius  :   12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;

}

.next-step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.15);
}

.step-number {
   width: 60px;

	    height: 60px;

	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

	  color: white;

	  border-radius: 50%;

	    display: flex;

	  align-items: center;

	  justify-content: center;

		font-size: 28px;

	         font-weight: 700;

	  margin: 0 auto 20px; 

}

.next-step-card h3 {
  font-size: 18px;
   color: #2c3e50;
   margin-bottom: 15px;
}

.next-step-card p {
    font-size: 14px;
  color: #7f8c8d;
   line-height: 1.7;
   margin-bottom:      20px;
}

.step-link {

  display: inline-block;
    color: #667eea;
  text-decoration: none;
   font-weight: 600;
  transition: all 0.3s ease;
     }

.step-link:hover {
    color   :   #764ba2;
  transform: translateX(5px);
}@media (max-width: 768px) {
    .services-header {
        padding: 50px 20px;
    }

    .services-title {
        font-size: 32px;
    }

    .services-intro {
        font-size: 16px;
    }

    .service-detail-header {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .service-detail-header h2 {
        font-size: 20px;
    }

    .service-duration {
        margin-left: 0;
    }

    .service-detail-image {
        height: 250px;
    }

    .service-detail-body {
        padding: 25px;
    }

    .service-list li {
        padding-left: 25px;
    }

    .service-meta {
        flex-direction: column;
        gap: 10px;
    }

    .meta-item {
        justify-content: center;
    }

    .comparison-table {
        font-size: 12px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px;
    }

    .comparison-table thead {
        font-size: 11px;
    }

    .thankyou-info-box {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .thankyou-container {
        padding: 40px 25px;
    }

    .thankyou-title {
        font-size: 28px;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .action-button {
        width: 100%;
    }

    .next-steps-grid {
        grid-template-columns: 1fr;
    }

    .cta-services {
        padding: 50px 20px;
        margin: 40px 0;
    }
}

@media (max-width: 480px) {
    .services-title {
        font-size: 24px;
    }

    .services-intro {
        font-size: 14px;
    }

    .service-detail-header h2 {
        font-size: 18px;
    }

    .service-detail-body h3 {
        font-size: 16px;
    }

    .section-title {
        font-size: 22px;
    }

    .thankyou-title {
        font-size: 24px;
    }

    .comparison-section {
        padding: 40px 20px;
    }

    .faq-question {
        padding: 15px;
        font-size: 14px;
    }
}.policy-section {
   min-height: 70vh;
    padding: 80px 2rem;
   background: #f8f9fa;
}

/* Vendor-specific */

.policy-container {
   max-width    :  800px;
      margin: 0 auto;
    text-align: left;
   background: white;
   padding:      50px 40px;
    border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.policy-container h1 {

  font-size: 2.8rem;
    color: #2c3e50;
   margin-bottom: 40px;
   font-weight: 700;
    line-height: 1.2;
  padding-bottom: 25px;
  border-bottom: 3px solid linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     }


.policy-block {
  margin-bottom: 40px;
}

.policy-block:last-child {
   margin-bottom: 0;
}


.policy-container h2 {
  font-size: 1.8rem;
    color  :  #2c3e50;
   margin-bottom: 18px;
	font-weight     :      700;
    margin-top: 20px;
}
/* Browser compatibility */


/* Build system output */

.policy-container p {
   color: #7f8c8d;

	   margin-bottom: 18px;

	         line-height: 1.8;

	   font-size: 1rem;

	    text-align: justify;
}

.policy-block h2 {
    color: #667eea;
   margin-top: 35px;
		padding-top: 25px;
    border-top: 1px solid #ecf0f1;
}

.policy-block:first-child h2 {
   margin-top: 0;
  padding-top: 0;
  border-top: none;
}
@media (max-width: 768px) {
    .policy-section {
        padding: 60px 1rem;
    }

    .policy-container {
        padding: 35px 25px;
        border-radius: 8px;
    }

    .policy-container h1 {
        font-size: 2rem;
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

    .policy-container h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .policy-container p {
        font-size: 0.95rem;
        margin-bottom: 15px;
        line-height: 1.7;
    }

    .policy-block {
        margin-bottom: 30px;
    }

    .policy-block h2 {
        margin-top: 25px;
        padding-top: 20px;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 40px 1rem;
    }

    .policy-container {
        padding: 25px 18px;
    }

    .policy-container h1 {
        font-size: 1.6rem;
        margin-bottom: 25px;
        padding-bottom: 15px;
    }

    .policy-container h2 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .policy-container p {
        font-size: 0.9rem;
        margin-bottom: 12px;
        line-height: 1.6;
        text-align: left;
    }

    .policy-block {
        margin-bottom: 20px;
    }

    .policy-block h2 {
        margin-top: 18px;
        padding-top: 15px;
    }
}