* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fafbfc;
}

.header-section {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navigation-bar {
    padding: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
}

.logo-wrapper {
    flex-shrink: 0;
}

.site-logo {
    height: 45px;
    width: auto;
    display: block;
}

.burger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 6px;
}

.burger-menu span {
    width: 26px;
    height: 3px;
    background-color: #2c3e50;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.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(7px, -7px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.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: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #3498db;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hero-banner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #1a2f4f;
}

.hero-subtitle {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    width: fit-content;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.services-preview {
    background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
    padding: 80px 24px;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.service-card {
    background: white;
    padding: 32px 28px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 32px;
    height: 32px;
    stroke: #667eea;
    fill: none;
    stroke-width: 2;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a2f4f;
}

.service-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.advantages-section {
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-heading {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a2f4f;
}

.advantages-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.advantages-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.advantage-item {
    display: flex;
    gap: 20px;
}

.advantage-number {
    font-size: 32px;
    font-weight: 700;
    color: #667eea;
    flex-shrink: 0;
    min-width: 60px;
}

.advantage-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a2f4f;
    margin-bottom: 8px;
}

.advantage-text {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

.advantages-image {
    display: flex;
    justify-content: center;
}

.adv-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.consultation-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 24px;
    text-align: center;
}

.cta-inner {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cta-heading {
    font-size: 32px;
    font-weight: 700;
    color: white;
}

.cta-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.cta-button-large {
    display: inline-block;
    padding: 16px 40px;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    width: fit-content;
    margin: 0 auto;
    border: none;
    cursor: pointer;
}

.cta-button-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.showcase-section {
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
}

.showcase-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.showcase-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.showcase-title {
    font-size: 22px;
    font-weight: 600;
    color: #1a2f4f;
}

.showcase-description {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.contact-section {
    background: #f8f9fc;
    padding: 80px 24px;
}

.contact-heading {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: #1a2f4f;
    margin-bottom: 12px;
}

.contact-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 48px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-input,
.form-select,
.form-textarea {
    padding: 14px 16px;
    border: 2px solid #e0e4e8;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    color: #2c3e50;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #999;
}

.form-textarea {
    min-height: 140px;
    resize: vertical;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23667eea' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
    cursor: pointer;
}

.submit-button {
    padding: 16px 32px;
    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;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.footer-main {
    background: #1a2f4f;
    color: #ecf0f1;
    padding: 60px 24px 24px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo-section {
    display: flex;
    align-items: flex-start;
}

.footer-logo {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #667eea;
}

.footer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #667eea;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
}

.footer-copyright {
    font-size: 13px;
    color: #7f8c8d;
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: white;
        padding: 20px 24px;
        gap: 16px;
        border-bottom: 1px solid #e0e4e8;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 500px;
    }

    .hero-banner {
        grid-template-columns: 1fr;
        padding: 60px 24px;
        gap: 40px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .advantages-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-heading {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .cta-heading {
        font-size: 24px;
    }

    .consultation-cta {
        padding: 48px 24px;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .section-heading {
        font-size: 24px;
    }

    .cta-heading {
        font-size: 20px;
    }

    .advantage-number {
        font-size: 24px;
    }
}.icon-wrapper {
    display: inline-flex;
    align-items: center;
}

.icon-wrapper svg {
   stroke: #667eea;
    fill: none;
  stroke-width: 2;
  stroke-linecap:  round;
    stroke-linejoin: round;
  transition: all 0.3s ease;
}


.services-hero {


  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 80px 24px;
        text-align: center;
    color: white;
	}

.services-hero-content   {
   max-width: 900px;
    margin     :   0 auto;
   display:      flex;
  flex-direction     :      column;
    gap: 20px;
}

.services-hero-title{
	 font-size: 48px;
   font-weight: 700;
    line-height: 1.2;
}

.services-hero-subtitle {
   font-size: 18px;
       line-height  :   1.7;
     color: rgba(255, 255, 255, 0.9);
}

.services-detailed {
    padding: 80px 24px;
    background  :     #fafbfc;
}

.services-container {
  max-width: 1200px;
   margin: 0 auto;
        display    :       flex;
   flex-direction     :      column;
  gap: 80px;
	
}

.service-detailed-card {
	    background: white;
               border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
   display: grid;
                    grid-template-columns    :   1fr 1fr;
				 align-items: center;
     }

.service-reversed {
    grid-template-columns: 1fr 1fr; 

}

.service-reversed .service-detailed-image 
 {

    order: 2;


}

.service-reversed .service-detailed-content {

    order: 1;


}

.service-detailed-image {
   width: 100%;
	height: 100%;
  min-height: 400px;
}

.detailed-img {
   width: 100%;

	          height: 100%;

	   object-fit   :      cover;
}

.service-detailed-content {
	padding: 48px 40px;
	 display: flex;
  flex-direction: column;
	gap: 24px;
}

.service-detailed-title {
    font-size: 32px;
   font-weight: 700;
	 color  :      #1a2f4f;
}

.service-detailed-description  
  {
  font-size: 16px;
  color :        #555;
    line-height: 1.8;
}

.service-features {
   list-style: none;

	               display: flex;

	   flex-direction: column;

	   gap: 12px;
}

.service-features li {
	font-size: 15px;
    color: #2c3e50;
  padding-left: 28px;
    position   :    relative;
	line-height: 1.6;
}

.service-features li::before {
    font-weight  :      700;
  left: 0;
  content: '→';
   color: #667eea;
	position: absolute;
}

.service-price {
  display    :flex;
   align-items: baseline;
   gap: 8px;
	 margin-top: 12px;
	font-weight: 600;
}

.price-label   {
	font-size: 14px;
	color: #999;
}

.price-value {
   font-size: 28px;
  color   :      #667eea;
}

.price-period {
  font-size: 14px;
    color: #999;
}

.services-comparison {
    background: white;
   padding   :      80px 24px;
}

.comparison-title {
   font-size :     36px;
    font-weight: 700;
         text-align :      center;
    margin-bottom: 60px;
   color: #1a2f4f;
}

.comparison-table-wrapper {
   max-width: 1200px;
	   margin: 0 auto;
	  overflow-x   :      auto;
}

.comparison-table {
   width: 100%;
   border-collapse: collapse;
    background    :white;
}

.comparison-table thead {
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
	}

.comparison-table th {
  padding: 20px 16px;
   text-align: left;
    font-weight: 600;
  color: #2c3e50;
    font-size: 14px;
  border-bottom:    2px solid #e0e4e8;
}

.comparison-table td {
   padding: 18px 16px;
  border-bottom: 1px solid #e0e4e8;
  font-size: 14px;
    color: #555;
}

.comparison-table tbody tr:hover    {
   background: #f8f9fc;
}

.comparison-table .check {
    color: #2ecc71;
	 font-weight: 700;
   font-size: 18px;
  text-align: center;
}

.services-faq     {
  padding: 80px 24px;
  background :     #f8f9fc;
}

.faq-title {
						font-size  : 36px;
  font-weight: 700;
   text-align: center;
   margin-bottom: 60px;
 color: #1a2f4f;
	}

.faq-container {
		 max-width  :900px;
   margin: 0 auto;
  display: flex;
	flex-direction: column;
	 gap: 24px;


}

.faq-item {
   background: white;
  padding: 32px;
  border-radius    :       12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
     border-left    :4px solid #667eea;
	transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.faq-question {
     font-size: 18px;
	font-weight: 600;
  color: #1a2f4f;
   margin-bottom: 12px;
   cursor: pointer;

}

.faq-answer {
   font-size: 15px;
    color: #555;
  line-height: 1.7;
}

.services-cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 24px;
  text-align  :    center;
}

.cta-services-heading {


   font-size: 36px;
      font-weight: 700;
  color: white;
		 margin-bottom: 16px;
	}



.cta-services-text {
   font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

.thankyou-section
	{


  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 24px;
  min-height: calc(100vh - 70px);
  display: flex;
	 align-items: center;
   justify-content: center;
	}

.thankyou-container {
   background: white;
      border-radius: 16px;
       padding: 60px 40px;
   max-width: 700px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.thankyou-icon {
          margin-bottom: 24px;
        display: flex;
  justify-content: center;
}

.success-icon {

    width: 80px;
    height: 80px;
   stroke: #2ecc71;
  fill: none;
                    stroke-width: 2;

}

.thankyou-title {
   font-size   :    36px;
    font-weight: 700;
   color: #1a2f4f;
    margin-bottom :        12px; 
	
}

.thankyou-subtitle {
	font-size: 18px;
  color: #666;
  line-height: 1.7;
          margin-bottom: 40px;
}

.thankyou-content {
    margin-bottom: 48px;
   text-align: left;
}

.thankyou-info-block   {
  background: #f8f9fc;
    -moz-border-radius: 12px;
    padding: 32px;
  border-radius: 12px;
   -webkit-border-radius     :    12px;
                    margin-bottom: 32px;
}

.info-block-title {
    font-weight: 600;

	   color: #1a2f4f;

	    margin-bottom    :  24px;

	   font-size   : 20px;
} 

.info-steps {
   list-style: none;
    display     :       flex;
    flex-direction :  column;
  gap: 20px;
}

.info-step {
   display: flex;
        gap: 16px;
	align-items: flex-start;
}

.step-number {
   display: flex;
	 align-items: center;
  justify-content: center;
    width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color     :        white;
     border-radius     :  50%;
   font-weight: 700;
   flex-shrink: 0;
}

.step-content {
   text-align:     left;
}

.step-title {

	  font-weight: 600;
  font-size: 15px;
    margin-bottom: 4px;
    color: #2c3e50;
	
     }

.step-description {
    font-size: 14px;
  color   :        #666;
   line-height: 1.6;


}

.thankyou-highlight {

	  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
  border: 2px solid #667eea;
    border-radius :        12px;
    padding   :     24px;
  margin-bottom: 32px;
	}

.highlight-label {
    margin-bottom: 8px;
  font-size  :      14px;
    color: #999;
}

.highlight-number {
    font-size: 24px;
	font-weight: 700;
  color: #667eea;
 margin-bottom: 8px;
  font-family: 'Courier New', monospace;


}

.highlight-text {
    color: #666;
  font-size:     13px;
}

.thankyou-actions {
    display: flex;
   gap: 16px;
               margin-bottom: 40px;
  justify-content   :  center;
}

.button-primary  {
   display: inline-block;
	padding: 14px 32px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
        text-decoration: none;
	 border-radius: 8px;
  font-weight: 600;
   font-size: 15px;
    transition: all 0.3s ease;
    border: none;
   cursor: pointer;

}

.button-primary:hover {

  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);


}

.button-secondary{
    display: inline-block;
   padding: 14px 32px;
    background: transparent;
    color: #667eea;
   text-decoration: none;
   border: 2px solid #667eea;
  border-radius: 8px;
	 font-weight: 600;
  font-size: 15px;
    transition: all 0.3s ease;
  cursor: pointer;
}  

.button-secondary:hover {
	background: #667eea;
  color: white; 

}

.thankyou-footer-text {
   padding-top: 24px;
  text-align  :   center;
   border-top: 1px solid #e0e4e8;
}

.thankyou-footer-text p		{
	font-size: 14px;
        color  :      #666;
  line-height: 1.7;
}

.footer-text-small {
  font-size: 12px;
  color  :        #999;
       margin-top: 8px;
}

.next-steps-section {
      background: #fafbfc;
  padding: 80px 24px;
}

.next-steps-title {
   font-size: 32px;
    font-weight: 700;
   text-align: center;
   margin-bottom: 48px;
   color     :      #1a2f4f;
}

.next-steps-grid {
    max-width: 900px;
    margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.next-step-card {
  background: white;
    padding    : 32px 28px;
   border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  display     :   flex;
    flex-direction: column;
	gap: 16px;
   text-align: center;
    transition: all 0.3s ease;
}

.next-step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12); 

}

.next-step-icon {
  width: 60px;
   height: 60px;
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
     border-radius:        10px;
 display: flex;
   align-items: center;
   justify-content: center;
		 margin: 0 auto;
}

.next-step-icon img 
 {
                    fill     :       none;
   stroke: #667eea;
   width: 32px;
      height: 32px;
     stroke-width: 2;
}

.next-step-title {


      font-size: 20px;
	    font-weight: 600;
		 color: #1a2f4f;}

.next-step-description {
    font-size: 14px;
    color :     #666;
         line-height: 1.6;
}

.next-step-link {
        display :     inline-block;
        -o-transition: all 0.3s ease;
  padding: 10px 20px;
	color: #667eea;
   -webkit-transition: all 0.3s ease;
  text-decoration: none;
  font-weight: 600;
    font-size   :14px;
    transition: all 0.3s ease;
	position: relative; 
	
} 

.next-step-link::after {
  content: '';
   position: absolute;
	bottom: 0;
    left    :0;
    -o-transition :   width 0.3s ease;
   width: 0;
    height     :2px;
 background: #667eea;
  transition: width 0.3s ease;
   -moz-transition: width 0.3s ease;
}

.next-step-link:hover::after {
	 width  :     100%;
}@media (max-width: 768px) {
    .services-hero-title {
        font-size: 32px;
    }

    .services-hero-subtitle {
        font-size: 16px;
    }

    .service-detailed-card {
        grid-template-columns: 1fr;
    }

    .service-reversed {
        grid-template-columns: 1fr;
    }

    .service-reversed .service-detailed-image {
        order: 0;
    }

    .service-reversed .service-detailed-content {
        order: 0;
    }

    .service-detailed-image {
        min-height: 300px;
    }

    .service-detailed-content {
        padding: 32px 24px;
    }

    .service-detailed-title {
        font-size: 24px;
    }

    .comparison-table-wrapper {
        overflow-x: scroll;
    }

    .comparison-table {
        min-width: 600px;
    }

    .thankyou-container {
        padding: 40px 24px;
    }

    .thankyou-title {
        font-size: 28px;
    }

    .thankyou-subtitle {
        font-size: 16px;
    }

    .thankyou-actions {
        flex-direction: column;
        gap: 12px;
    }

    .button-primary,
    .button-secondary {
        width: 100%;
    }

    .next-steps-grid {
        grid-template-columns: 1fr;
    }
}.policy-section  
  {
  padding: 80px 24px;
  background: linear-gradient(180deg, #fafbfc 0%, #f0f2f5 100%);
  min-height: calc(100vh - 70px - 300px);
}

.policy-container {
  max-width: 900px;
   margin: 0 auto;
  text-align: left;
}

.policy-main-title {


    font-size: 42px;
    font-weight: 700;
  color: #1a2f4f;
   margin-bottom: 48px;
   text-align: center;
     }

.policy-content
{
   background    :    white;
   padding: 48px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.policy-content h2 {
   font-size: 24px;
   font-weight: 700;
    color: #2c3e50;
   margin-top: 36px;
   margin-bottom :     16px;
   padding-bottom: 12px;
   border-bottom: 2px solid #667eea;}

.policy-content h2:first-child {
     margin-top: 0;

     }

.policy-content p {
   color  :       #555;
   margin-bottom: 20px;
  line-height  :       1.8;
  font-size: 15px;
    text-align: justify;
}

.policy-content p:last-child {
   margin-bottom: 0;
}@media (max-width: 768px) {
    .policy-section {
        padding: 60px 24px;
    }

    .policy-main-title {
        font-size: 32px;
        margin-bottom: 36px;
    }

    .policy-content {
        padding: 32px 24px;
    }

    .policy-content h2 {
        font-size: 20px;
        margin-top: 28px;
        margin-bottom: 12px;
    }

    .policy-content p {
        font-size: 14px;
        margin-bottom: 16px;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 48px 16px;
    }

    .policy-main-title {
        font-size: 26px;
        margin-bottom: 32px;
    }

    .policy-content {
        padding: 24px 16px;
    }

    .policy-content h2 {
        font-size: 18px;
        margin-top: 24px;
    }

    .policy-content p {
        font-size: 13px;
        line-height: 1.7;
    }
}