:root {
    --primary-dark: #1a1a2e;
    --primary-accent: #16213e;
    --secondary-color: #0f3460;
    --accent-bright: #e94560;
    --text-light: #f4f1de;
    --text-muted: #a8a8a8;
    --border-color: #2d2d3d;
}

* {
  margin: 0; 
     padding     :   0; 
    box-sizing: border-box;
}

html {
   scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--primary-dark);
  color: var(--text-light);
   line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
               margin-bottom: 1rem;
  color: var(--text-light);
}

h1 {
   font-size:        2.8rem;
    line-height: 1.2;

}

h2 {

	  font-size: 2rem;
  margin: 2rem 0 1.5rem 0;}

h3 {
  font-size: 1.35rem;
  color: var(--accent-bright);
}

h4 {
	 font-size: 1.1rem;
   margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1.2rem;
  color: #dcdcdc;
}

a {
  color: var(--accent-bright);
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
    opacity     :   0.8;
  text-decoration: underline;

}

.navbar-main {
  background: linear-gradient(135deg, var(--primary-accent) 0%, var(--secondary-color) 100%);
   padding: 1.2rem 0;
  position: sticky;
   top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--accent-bright);
}

.nav-container {
        display: flex;
    justify-content: space-between;
   align-items: center;
  max-width: 1200px;
    margin: 0 auto;
                    padding: 0 2rem;
}

.nav-logo-section		{
    flex: 0 0 auto;
}

.nav-logo {
    height: 45px;
   width: auto;
}

.nav-links {
	    display: flex;
	 list-style: none;
                    gap: 2.5rem;
	align-items: center;


}

.nav-links li a {
  color: var(--text-light);
   font-size: 0.95rem;
   font-weight: 600;
   padding: 0.5rem 1rem;
    border-radius: 4px;
  transition: all 0.3s ease;
}

.nav-links li a:hover {
  background-color: rgba(233, 69, 96, 0.1);
    text-decoration   :      none;
}

.cta-nav {
  background-color: var(--accent-bright) !important;
	    color: white !important;
	    padding: 0.6rem 1.4rem !important;
	    border-radius  :5px;
}

.cta-nav:hover

{

  background-color: #d63950 !important;
  box-shadow: 0 4px 12px rgba(233, 69, 96, 0.3); 

}

.burger-toggle {
   display: none;
					background: none;
          border  :  none;
    cursor: pointer;
   padding   :     0.5rem;
}

.burger-icon {
     width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--primary-accent);
        flex-direction: column;
        gap: 0.5rem;
        padding: 1.5rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .nav-links.active {
        max-height: 400px;
    }

    .burger-toggle {
        display: block;
    }

    .nav-container {
        flex-wrap: wrap;
    }
}.hero-section {
    display: flex;
   align-items: center;
  justify-content: space-between;
    gap:    3rem;
  max-width: 1200px;
    margin: 0 auto;
    padding  :       5rem 2rem;
}

.hero-content {
	flex: 1;
   min-width: 0;
}

.hero-section h1 {

    font-size: 3rem;
  color: var(--accent-bright);
    margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
     }

.hero-subtitle 
 {
    font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero-cta {
  display     :    flex;
  gap: 1.5rem;
	 margin-top: 2rem;
   flex-wrap: wrap;
}

.btn-primary     {
  background: linear-gradient(135deg, var(--accent-bright) 0%, #d63950 100%);
   color: white;
    padding: 1rem 2rem;
   border: none;
    border-radius: 6px;
    font-size    :        1rem;
    font-weight: 600;
    cursor: pointer;
    display    : inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(233, 69, 96, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(233, 69, 96, 0.4);
   text-decoration: none;
}

.btn-secondary {
     background: transparent;
  color: var(--accent-bright);
    padding: 1rem 2rem;
  border: 2px solid var(--accent-bright);
    border-radius :        6px;
	 font-size: 1rem;
    font-weight: 600;
   cursor :pointer;
  display: inline-block;
                    transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(233, 69, 96, 0.1);
  text-decoration: none;
     }

.btn-large {

  background: linear-gradient(135deg, var(--accent-bright) 0%, #d63950 100%);
  color    :   white !important;
	 padding :      1.2rem 2.8rem;
    border-radius: 6px;
      font-size: 1.1rem;
    font-weight: 600;
                    display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(233, 69, 96, 0.35);


}

.btn-large:hover    {
	  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(233, 69, 96, 0.45);
  text-decoration: none;

}

.hero-visual {
  flex: 1;
    overflow: hidden;
  border-radius: 10px;
} 

.hero-visual img {
         width: 100%;
    height: auto;
   display: block;
    border-radius: 10px;
  transition: transform 0.4s ease;
}

.hero-visual img:hover		{
  transform: scale(1.05); 

}@media (max-width: 900px) {
    .hero-section {
        flex-direction: column;
        padding: 3rem 2rem;
    }

    .hero-section h1 {
        font-size: 2.2rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }
}.value-proposition {
    max-width: 1200px;
  margin   : 4rem auto;
          padding    :     3rem 2rem;
  background: linear-gradient(180deg, rgba(15, 52, 96, 0.3) 0%, rgba(26, 26, 46, 0.5) 100%);
   border-radius     :     10px;
  border: 1px solid var(--border-color);
}

.value-proposition h2 {
    text-align: center;
    font-size   :     2.2rem;
   margin-bottom: 3rem;
}

.value-grid     {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem; 

}

.value-card {
  background: rgba(233, 69, 96, 0.05);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent-bright);
   transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.value-card:hover {
  transform: translateY(-8px);
  background: rgba(233, 69, 96, 0.12);
  box-shadow: 0 8px 24px rgba(233, 69, 96, 0.15);
}

.card-icon {
  margin-bottom: 1.5rem;
}

.card-icon img {
   width: 48px;
	height: 48px;
  filter: drop-shadow(2px 2px 4px rgba(233, 69, 96, 0.3)); 
	
}  

.value-card h3 {
    margin: 0 0 1rem 0;
}

.value-card p {
    flex-grow: 1;
	   font-size: 0.95rem;
}

.showcase-section {
	max-width   :      1200px;
   margin   :    3rem auto;
   padding: 0 2rem;
}

.showcase-item {
   display: flex;
    align-items: center;
   gap: 3rem;
	margin-bottom: 4rem;
}

.showcase-left {
  flex-direction: row;
}

.showcase-right {
   flex-direction: row-reverse; 

}



.showcase-image {
  flex: 1;
    min-width: 0;
	border-radius: 12px;
                    overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.showcase-image img {
	width: 100%;
  height: auto;
  display: block;
}

.showcase-text {
  flex: 1;

	                    min-width: 0;
}

.showcase-text h2 {
    font-size: 1.8rem;
  margin-top  :      0;
}

.showcase-text p {


    font-size: 1rem;}@media (max-width: 768px) {
    .showcase-item {
        flex-direction: column !important;
        gap: 2rem;
    }
}.testimonial-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, rgba(15, 52, 96, 0.4) 100%);
     padding: 4rem 2rem;
       margin: 4rem 0;
     border-top: 2px solid var(--accent-bright);
}

.testimonial-section h2 {

    text-align: center;
    max-width: 1200px;
  margin: 0 auto 3rem;

}

.testimonial-grid		{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: 2rem;
  max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card
{
  background: rgba(26, 26, 46, 0.6);
   padding: 2rem;
   border-radius  :  8px;
  border: 1px solid var(--border-color);
               font-style: italic;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
  background: rgba(26, 26, 46, 0.9);
	  border-color: var(--accent-bright);
}

.testimonial-card p {
    margin-bottom: 1.5rem;
  color: #e0e0e0;
}

.testimonial-card footer {
	font-style    :  normal;
 font-weight: 600;
  color: var(--accent-bright);
   font-size: 0.9rem;
}


.prevention-section {
   max-width: 1200px;
    margin: 4rem auto;
	padding: 3rem 2rem;
		 display: flex;
  align-items: center;
  gap: 3rem;
}

.prevention-section img {
    flex :1;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  width: 100%;
  height: auto;
}

.prevention-text {
    flex: 1;
}

.prevention-text h2 {


    font-size: 1.9rem;
   margin-top: 0;
	}@media (max-width: 900px) {
    .prevention-section {
        flex-direction: column;
    }
}.cta-section {
  background: linear-gradient(135deg, var(--accent-bright) 0%, #d63950 100%);
    padding: 4rem 2rem;
  text-align: center;
    margin: 4rem 0;
}

.cta-section h2 {
    color: white;
    margin-bottom:       1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
   font-size: 1.1rem;
        margin-bottom: 2rem;
    max-width: 700px;
		margin-left: auto;
	 margin-right    : auto; 

}

.cta-section .btn-large  
  {
         background: white;
  color: var(--accent-bright) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-section .btn-large:hover {

	  background: #f5f5f5;
   text-decoration:     none;


}

.contact-section {
   max-width: 1000px;
   margin :        5rem auto;
    padding: 3rem 2rem;
}

.contact-container h2 {

  text-align: center;
  font-size: 2.2rem;
		margin-bottom    :    1rem;


}

.contact-intro {
    text-align: center;
  font-size:       1.1rem;
  margin-bottom: 3rem;
  color: var(--text-muted);
}  

.contact-form {
  background: rgba(15, 52, 96, 0.3);
    padding: 2.5rem;
	border-radius: 10px;
  border: 1px solid var(--border-color);
      margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display :        block;
    margin-bottom: 0.7rem;
  font-weight: 600;
  color: var(--text-light);
	}


.form-group input,
.form-group select,
.form-group textarea {
   width: 100%;
  padding: 0.9rem;
  border: 2px solid var(--border-color);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
   border-radius: 6px;
   font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
	
}



.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
      outline: none;
  border-color: var(--accent-bright);
  background: rgba(233, 69, 96, 0.1);
  box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1);

}

.form-group textarea {
   min-height: 120px;
	resize: vertical;
}

.btn-submit


{
         width: 100%;
  background: linear-gradient(135deg, var(--accent-bright) 0%, #d63950 100%);
    color: white;
  padding: 1rem;
    border    :       none;
    border-radius : 6px;
    font-size: 1rem;
                    font-weight: 600;
   cursor: pointer;
    transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(233, 69, 96, 0.3);
}

.btn-submit:hover {
	  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(233, 69, 96, 0.4);


}

.contact-info {
  background: rgba(233, 69, 96, 0.08);
    padding: 2rem;
   border-radius: 8px;
  border-left: 4px solid var(--accent-bright);
}

.contact-info h3 {
	margin-top: 0;
}

.contact-info p {
    color: #dcdcdc;
    margin-bottom: 0.8rem;
}

.main-footer
	{
  background: linear-gradient(135deg, var(--primary-accent) 0%, var(--secondary-color) 100%);
      padding: 3rem 2rem 1.5rem;
      margin-top: 5rem;
     border-top: 2px solid var(--accent-bright);
}

.footer-container {

  max-width :1200px;
  margin: 0 auto;
    display  :       grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
     }

.footer-logo-section {
   align-items: flex-start; 
	  display: flex;
}

.footer-logo {
	   height: 50px;
          width :        auto;}

.footer-nav h4,
.footer-info h4 {
       margin-bottom    :  1rem;
  color: var(--accent-bright);}

.footer-nav ul {
    list-style: none;
} 

.footer-nav li {
   margin-bottom: 0.8rem;
}

.footer-nav a {
   color: #dcdcdc;
                    font-size: 0.95rem;
}

.footer-nav a:hover 
 {
	  color: var(--accent-bright);


}

.footer-info p {
   font-size: 0.95rem;
  color: #dcdcdc;
	
}

.footer-bottom {
	text-align  :   center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
   font-size: 0.9rem;
}@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .nav-links {
        gap: 0.2rem;
    }

    .nav-links li a {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }

    .hero-cta {
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary,
    .btn-large {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
}.services-hero {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-accent) 100%);
	padding :   4rem 2rem;
  text-align: center;
  border-bottom: 3px solid var(--accent-bright);
}

.services-hero-content h1 {
  font-size: 2.8rem;
  color: var(--accent-bright);
	margin-bottom: 1rem;
}

.services-hero-content p {
  font-size    :   1.2rem;
    color  :      #dcdcdc;
}

.services-overview {
    max-width: 1200px;
    margin: 4rem auto;
  padding: 0 2rem;
   text-align: center;
}

.overview-container h2 {
                  font-size: 2.2rem;
   margin-bottom: 1rem;}

.section-intro
{
    font-size: 1.1rem;
  color: var(--text-muted);
   max-width: 800px;
   margin: 0 auto;
}

.services-detailed {
         padding  :0 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-module {
     display: flex;
   align-items: center;
  gap: 3rem;
  margin-bottom: 5rem;
  padding: 2.5rem;
  background: rgba(15, 52, 96, 0.2);
    border-radius: 10px;
  border: 1px solid var(--border-color);
	transition: all 0.3s ease;
	}

.service-module:hover {

	  background: rgba(15, 52, 96, 0.35);
  border-color: var(--accent-bright);
  box-shadow: 0 8px 24px rgba(233, 69, 96, 0.1);

}

.service-module-2,
.service-module-4		{
   flex-direction: row-reverse;
}

.service-image {
  flex    :     0 0 40%;
    min-width: 0;
    border-radius: 10px;
    overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
     }

.service-image img {
  width: 100%;
	height: auto;
    display   :     block;
}

.service-content {


	flex: 1;
   min-width: 0;}

.service-content h2 {
  font-size: 2rem;
  color: var(--accent-bright);
    margin: 0 0 0.5rem 0;
}

.service-content h3 {
  font-size   :     1.2rem;
  color: #e0e0e0;
          margin   :     0 0 1.5rem 0;
    font-weight: 500;
}

.service-content p {
  margin-bottom: 1.5rem;
}

.service-features {
	 list-style: none;
  background: rgba(233, 69, 96, 0.08);
               padding: 1.5rem;
	border-radius: 8px;
  border-left: 4px solid var(--accent-bright);
    margin: 1.5rem 0;

}

.service-features li {
    padding: 0.6rem 0;
	color    :      #dcdcdc;
  padding-left: 1.5rem;
                    position: relative;
}

.service-features li:before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent-bright);
  font-weight: bold;
}

.service-highlight {

	  background: rgba(233, 69, 96, 0.12); 
	  padding: 1rem 1.2rem; 
	  border-radius    :        6px; 
	  font-style: italic; 
	    color: #e0e0e0; 
	  margin: 1.5rem 0; 


}

.btn-service {
        display: inline-block;
  background: linear-gradient(135deg, var(--accent-bright) 0%, #d63950 100%);
  color :        white;
  padding: 0.9rem 2rem;
    border-radius: 6px;
    font-weight: 600;
   transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(233, 69, 96, 0.3);
  text-decoration    : none;
}

.btn-service:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(233, 69, 96, 0.4);
}@media (max-width: 900px) {
    .service-module {
        flex-direction: column !important;
        gap: 2rem;
    }

    .service-module-2,
    .service-module-4 {
        flex-direction: column;
    }

    .service-image {
        flex: 1;
    }

    .services-hero-content h1 {
        font-size: 2.2rem;
    }
}.service-comparison {
    max-width: 1200px;
   margin: 5rem auto;
    padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(15, 52, 96, 0.3) 0%, rgba(26, 26, 46, 0.5) 100%);
  border-radius: 10px;
  border: 1px solid var(--border-color);
}

.service-comparison h2 {
          text-align: center;
       margin-bottom :      2.5rem;
}

.comparison-table {
  overflow-x: auto;
}

.services-table {
    width: 100%;
  border-collapse: collapse;
}

.services-table thead {
  background: rgba(233, 69, 96, 0.15);
  border-bottom: 2px solid var(--accent-bright);
}

.services-table th {
	padding:     1.2rem;
   text-align: left;
       font-weight   :  600;
  color: var(--accent-bright);
	
}

.services-table td  
  {
   padding: 1rem 1.2rem;

  border-bottom: 1px solid var(--border-color);

  color: #dcdcdc;
}

.services-table tbody tr:hover {
  background: rgba(233, 69, 96, 0.08);
}

.services-table .check     {
	color: #2ecc71;
	font-weight: 600;}

.services-table .partial {
                  color: #f39c12;
   font-weight: 500;
	}

.service-faq {
    max-width    :    1200px;
   margin: 5rem auto;
  padding: 0 2rem;
}

.service-faq h2 {
		text-align: center;
	margin-bottom: 3rem;
	}

.faq-container {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;

} 

.faq-item

{
  background: rgba(15, 52, 96, 0.2);
                    padding     : 2rem;
   border-radius   :    8px;
  border: 1px solid var(--border-color);
   transition: all 0.3s ease;
}

.faq-item:hover	{
	  background: rgba(15, 52, 96, 0.35);
  border-color: var(--accent-bright);
	}

.faq-item h3 {
  color: var(--accent-bright);
    margin: 0 0 1rem 0;
}

.faq-item p {
  margin: 0; 
	  color: #dcdcdc;
}

.service-cta {

	  background: linear-gradient(135deg, var(--accent-bright) 0%, #d63950 100%);
  padding: 4rem 2rem;
    text-align:center;
  margin: 5rem 0;
   border-radius: 10px;
	
}

.service-cta h2 {


    color:white;
               margin-bottom: 1rem;


}

.service-cta p {
  color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
  margin-bottom: 2rem;
}

.service-cta .btn-large {
     background: white;
  color: var(--accent-bright) !important; 

}

.thank-you-container {
    display: flex;
  align-items: center;
   justify-content: space-between;
  gap: 3rem;
  max-width: 1200px;
      margin  :       4rem auto;
    padding   :      3rem 2rem;
  background: rgba(15, 52, 96, 0.2);
  border-radius  :       10px;
  border: 2px solid var(--accent-bright);
} 

.thank-you-content {
  flex: 1;
    min-width: 0;
}

.success-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content:  center;
}

.success-check {
  width: 80px;
    height :  80px;
  filter: drop-shadow(0 0 8px var(--accent-bright));
    animation   : scaleIn 0.6s ease-out;
}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thank-you-container h1 {
	 font-size    :2.5rem;
  color: var(--accent-bright);
  text-align: center;
    margin-bottom: 2rem; 

}

.thank-you-message {

	    font-size:1.2rem;
   color: #e0e0e0;
    font-weight: 600;
	}

.thank-you-text {
          font-size   :       1.05rem;
  color: #dcdcdc;
    margin-bottom  : 2rem;
}

.confirmation-details	{
	  background: rgba(233, 69, 96, 0.08);
  padding: 1.5rem;
    border-radius: 8px;
  border-left: 4px solid var(--accent-bright);
   margin: 2rem 0;
	}

.confirmation-details h2 {
	    font-size: 1.2rem;
     margin-top: 0;
  color: var(--accent-bright);}

.confirmation-details p {
   margin    :     0.8rem 0;
}

.contact-note {
  font-style  : italic;
  color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;


}

.next-steps		{
  margin: 2rem 0;
}

.next-steps h2 {
   font-size: 1.2rem;
  color: var(--accent-bright);
}

.steps-list {
   list-style    : none;
    counter-reset     :      step;
   margin: 1.5rem 0;
	}

.steps-list li {
           padding-left   :   2.5rem;

   position  : relative;

	margin-bottom     :        1rem;

	 color: #dcdcdc;

    counter-increment: step;
}

.steps-list li:before	{
     content: counter(step);
   position: absolute;
  left: 0;
  top: 0;
  background: var(--accent-bright);
   color: white;
    width: 28px;
  height: 28px;
   border-radius: 50%;
   display: flex;
  align-items    :        center;
  justify-content: center;
    font-weight: 600;
  font-size    :      0.9rem;
	}

.thank-you-actions {


  display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap:  wrap;


}

.thank-you-actions .btn-primary,
.thank-you-actions .btn-secondary {
	 flex  :        1; 
	    min-width: 180px; 
	    text-align: center;
}

.closing-text {

	  text-align: center;
  color: var(--text-muted);
   font-size: 0.95rem;
 margin-top  :  2rem;}  

.thank-you-visual {
    flex: 1;
   overflow: hidden;
    border-radius: 10px;
}

.thank-you-visual img {
     width: 100%;
   	height: auto;
       display: block;
   	border-radius: 10px;}  

.expectation-section		{
    max-width: 1200px;
    margin   :      4rem auto;
   padding: 3rem 2rem;


}

.expectation-section h2 {
    text-align: center;
   margin-bottom: 3rem;
}

.expectation-grid {
        display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
	}


.expectation-card {
  background: rgba(233, 69, 96, 0.08);
    padding   :  2rem;
       border-radius: 8px;
  border: 1px solid var(--border-color);
  text-align:center;
    transition: all 0.3s ease; 
}

.expectation-card:hover {
  background: rgba(233, 69, 96, 0.15);
  border-color: var(--accent-bright);
  transform: translateY(-5px);
}

.card-number {
  background: var(--accent-bright);
   color: white;
    width: 50px;
    height: 50px;
  border-radius: 50%;
    display: flex;
    align-items: center;
  justify-content: center;
 font-size :   1.8rem;
   font-weight: 700;
 margin: 0 auto 1.5rem;
}

.expectation-card h3 {
  margin-bottom: 1rem;
}

.expectation-card p {
    font-size: 0.95rem;
    margin: 0;
}

.value-reminder {
  background: linear-gradient(135deg, var(--secondary-color) 0%, rgba(15, 52, 96, 0.4) 100%);
    max-width: 1200px;
          margin    :       4rem auto;
    padding: 3rem 2rem;
    border-radius: 10px;
  border: 1px solid var(--border-color);
}

.value-reminder h2 {
   margin-bottom: 2rem;
   text-align: center;
}

.value-points {
    list-style: none;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 1.5rem; 

}

.value-points li {
  background: rgba(233, 69, 96, 0.1);
       padding: 1.2rem;
     border-left: 4px solid var(--accent-bright);
     border-radius: 6px;
      color: #dcdcdc;
}@media (max-width: 1000px) {
    .thank-you-container {
        flex-direction: column;
    }

    .thank-you-visual {
        width: 100%;
    }

    .thank-you-actions {
        flex-direction: column;
    }

    .thank-you-actions .btn-primary,
    .thank-you-actions .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .service-module {
        padding: 1.5rem;
    }

    .services-table {
        font-size: 0.85rem;
    }

    .services-table th,
    .services-table td {
        padding: 0.8rem;
    }

    .faq-container {
        grid-template-columns: 1fr;
    }

    .thank-you-container h1 {
        font-size: 1.8rem;
    }

    .success-check {
        width: 60px;
        height: 60px;
    }
}.policySection {
    padding: 80px 2rem;
	background: #f8f9fa;
}

.policyContainer {
  max-width: 800px;
   margin    : 0 auto;
    text-align: left;
}

.policyContainer h2 {
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
  font-size: 2.5rem;
}

.policyContainer p {
   color: #7f8c8d;
    margin-bottom: 1.5rem;
	line-height: 1.7;
    font-size: 1.1rem;
}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}