* {

   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;
}

.navbar {
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
               padding: 1rem 0;
    position: sticky;
        top: 0;
   z-index   : 1000;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.25);
}

.nav-container {
   max-width: 1200px;
	 margin: 0 auto;
	padding: 0 2rem;
   display  :    flex;
    justify-content: space-between;
   align-items: center;
}

.logo-section {
  display: flex;
   align-items: center;

}

.logo {
   height: 45px;
  width :        auto;
  filter: brightness(0) invert(1);
}

.nav-menu {

  display: flex;
	  gap     :  2.5rem;
	  list-style: none;


}

.nav-menu a {
   color: white;
  text-decoration: none;
    font-weight:   500;
  transition: all 0.3s ease;
  position     : relative;
}

.nav-menu a::after {
  content: '';
   position:      absolute;
    bottom   :     -5px;
  left: 0;
 width: 0;
   height: 2px;
   background-color: #ffd700;
   transition  :   width 0.3s ease;
}

.nav-menu a:hover::after {
	  width: 100%;}



.burger-menu {
       display: none;
    flex-direction: column;
  background: transparent;
  border: none;
    cursor: pointer;
	gap: 6px;
	}

.burger-menu span {
      width: 25px;
               height: 3px;
    background-color: white;
        border-radius: 3px;
 transition     :      all 0.3s ease;

}

.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color:      white;
	padding: 6rem 2rem;
	display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
   align-items: center;
  min-height: 600px;

}

.hero-content h1 {
  font-size: 3.5rem;
    margin-bottom: 1.5rem;
   line-height: 1.2;
	font-weight: 700;
}

.hero-content p {
    font-size: 1.25rem;
  opacity: 0.95;
    font-weight: 300;
    margin-bottom:     2.5rem;
}

.cta-button {
   display     :        inline-block;
    background-color: #ffd700;
    color: #667eea;
  padding: 1rem 2.5rem;
   border-radius: 50px;
 text-decoration    :      none;
         font-weight     :     600;
    transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.cta-button:hover   {
   background-color: #ffed4e;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(255, 215, 0, 0.4);
}

.hero-visual {
  background: rgba(255, 255, 255, 0.1);
                    border-radius: 20px;
  backdrop-filter: blur(10px);
  height:   400px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.about-section	{
   max-width: 1200px;
	 margin: 5rem auto;
  padding: 0 2rem;
}

.about-section h2 {
                    font-size: 2.5rem;
     margin-bottom: 2rem;
   text-align: center;
      color: #2c3e50;

}

.about-content p {
   text-align: center;
    font-size:   1.1rem;
  margin-bottom: 3rem;
    color: #555;
    max-width: 800px;
    margin-left: auto;
	 margin-right: auto;
} 

.about-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
}

.about-card

{
  background: white;
  padding: 2rem;
	border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 5px solid #667eea;
}

.about-card:hover {

  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(102, 126, 234, 0.15);

}

.about-card h3 {
    color  :  #667eea;
    margin-bottom: 0.8rem;
   font-size: 1.3rem;
}

.about-card p 
 {
   color: #666;
  text-align: left;
	
}

.services-preview	{
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
   padding: 4rem 2rem;
                    margin-top   :   3rem;
}

.services-preview h2 {
  font-size: 2.5rem;
    text-align :        center;
        margin-bottom     :   3rem;
  color: #2c3e50;
}

.services-grid


{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2.5rem;
	max-width: 1200px;
  margin: 0 auto;
}

.service-card {
        background: white;
     border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.2);
}

.service-card img

{
    width: 100%;
   height: 200px;
   object-fit: cover;
  transition   :       transform 0.3s ease;
}

.service-card:hover img {
  transform: scale(1.05);
}

.service-card h3 {
        padding: 1.5rem 1.5rem 0.5rem;
  color: #667eea;
   font-size: 1.2rem;
}

.service-card p

{
   padding: 0 1.5rem 1.5rem;
   color: #666;
   font-size: 0.95rem;
      line-height :1.5;
}

.offerings-section {
	   max-width   :      1200px;
  margin :4rem auto;
  padding: 0 2rem;
} 

.offerings-section h2 {
   font-size: 2.5rem;
   text-align: center;
  margin-bottom: 3rem;
    color: #2c3e50;
}

.offerings-container {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}



.offering-item {
   background: white;
    padding: 2.5rem;
  border-radius: 12px;
    text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition     :       all 0.3s ease;
  border-top: 4px solid #667eea;
	}

.offering-item:hover
{
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(102, 126, 234, 0.15);
}

.offering-icon {


	margin-bottom: 1.5rem;
    display: flex;
   justify-content: center;

}

.offering-icon img {
   width: 60px;
   height: 60px;
   stroke: #667eea;
  filter: drop-shadow(0 2px 5px rgba(102, 126, 234, 0.2));
}

.offering-item h3 {
  color:     #2c3e50;
	         margin-bottom     :  1rem;
	  font-size: 1.15rem;
	}

.offering-item p {
   line-height: 1.6;
  color: #666;
  font-size : 0.95rem;
}

.cta-section {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
        color: white;
   padding: 4rem 2rem;
          text-align: center;
               margin-top    :4rem;
}

.cta-content h2 {


   font-size: 2.5rem;
    margin-bottom: 1rem;
     }

.cta-content p {
  font-size: 1.1rem;
    margin-bottom: 2.5rem;
  opacity: 0.95;
}

.cta-button-large {

      display: inline-block;
  background-color: #ffd700;
    color: #667eea;
  padding :  1.1rem 2.8rem;
  border-radius: 50px;
   text-decoration   :      none;
    font-weight: 600;
  font-size     :     1.05rem;
   transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
     }

.cta-button-large:hover  
  {
  background-color: #ffed4e;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
}

.contact-section {
    background   : #f8f9fa;
   padding: 5rem 2rem;
	margin-top     :        3rem;
}  

.contact-wrapper {
    max-width: 700px;
      margin: 0 auto;
}

.contact-wrapper h2 {
   font-size: 2.5rem;
       text-align: center;
   margin-bottom :      0.5rem;
        color: #2c3e50;
}

.contact-subtitle {
    text-align: center;
   color: #666;
  margin-bottom: 2.5rem;
   font-size: 1.05rem;
	}

.contact-form {
    background: white;
   padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
   margin-bottom: 1.5rem; 

}

.form-group label {
    display: block;
                    margin-bottom: 0.5rem;
    color    : #2c3e50;
   font-weight: 600;
   font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
  padding  :      0.9rem;
    border  :    2px solid #e0e0e0;
  border-radius    :  8px;
    font-family: inherit;
   font-size: 1rem;
    transition: all 0.3s ease;
   color: #2c3e50;
}

.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);
}

.form-group textarea {

	    resize: vertical;
	min-height: 120px;
     }

.submit-button {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color :white;
	border: none;
   border-radius: 8px;
  font-weight: 600;
   font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(102, 126, 234, 0.25);
}

.submit-button:hover     {
	  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.35);
     }

.submit-button:active {
  transform: translateY(0);
}

.footer {
  background: #2c3e50;
   color: white;
   padding     : 3rem 2rem 1rem;
   margin-top: 5rem;
}


.footer-container  
  {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
}

.footer-section h3 {
          margin-bottom: 1.2rem;
  color: #ffd700;
  font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section a {


    color: #bbb; 
   text-decoration   :        none; 
    transition: color 0.3s ease;
	}

.footer-section a:hover {
   color: #ffd700;
}

.footer-section p {
				color: #bbb;
	font-size: 0.95rem;
   line-height: 1.7;
    margin-bottom: 0.8rem;
	}

.footer-section strong {
	     color: #ffd700;

}

.footer-logo    {
     height: 50px;
   width     :auto;
  filter: brightness(0) invert(1);
   transition: all 0.3s ease;

}

.footer-logo:hover {
  filter: brightness(0) invert(1) drop-shadow(0 0 8px #ffd700);
}

.footer-bottom {
    text-align: center;
   padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
   font-size: 0.9rem;
}@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(102, 126, 234, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        gap: 0;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .burger-menu {
        display: flex;
    }

    .burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(10px, 10px);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-visual {
        height: 250px;
    }

    .about-section h2,
    .services-preview h2,
    .offerings-section h2,
    .contact-wrapper h2,
    .cta-content h2 {
        font-size: 1.8rem;
    }

    .services-grid,
    .offerings-container {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .about-grid,
    .footer-container {
        grid-template-columns: 1fr;
    }

    .cta-button,
    .cta-button-large {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
}.services-hero		{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
       color:     white;
    padding: 5rem 2rem;
   text-align: center;
    min-height: 350px;
    display: flex;
         align-items: center;
   justify-content: center;
}

.services-hero-content h1


{
     font-size: 3rem;
      font-weight: 700;
       margin-bottom: 1rem;


}

.services-hero-content p {
   font-size    :  1.2rem;
	opacity: 0.95;
   max-width: 600px;
   margin: 0 auto;
}

.services-detailed
	{
   max-width   :    1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.services-container {
    display: flex;
  flex-direction: column;
    gap: 4rem;
}

.service-detail-card {
          display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 3rem;
    align-items: center;
  background: white;
    border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
   transition: all 0.3s ease;
}

.service-detail-card:hover {
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.15);
  transform: translateY(-5px);


}

.service-detail-card.alt-layout {
    grid-template-columns: 1fr 1fr;
}

.service-detail-card.alt-layout .service-detail-content {
  order: 1;
}

.service-detail-card.alt-layout .service-image {
  order: 2;
}

.service-image {

	    width    :    100%;
  height: 300px;
  object-fit: cover;
      transition: transform 0.3s ease;
}

.service-detail-card:hover .service-image {
  transform: scale(1.05);
}

.service-detail-content {
   padding: 2.5rem;
} 

.service-detail-content h2  {
   font-size: 2rem;
         color: #667eea;
   margin-bottom: 1.5rem;
}

.service-description {
    color: #555;
}

.service-description p		{

   font-size :      1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
     }  

.service-description h3 {
    color :     #2c3e50;
   font-size: 1.1rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.service-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-list li {
   padding    :0.6rem 0; 
  padding-left:      1.8rem; 
    position  :      relative; 
    color: #666; 
  line-height: 1.5;
}

.service-list li:before{
  content: "✓";
   position   :   absolute;
   left   : 0;
    color: #667eea;
  font-weight: bold;
	 font-size    : 1.1rem;
}

.service-meta {
 display: flex;
  gap: 1.5rem;
        flex-wrap: wrap;
  margin-top: 2rem;
}

.price-tag,
.duration-tag		{
  display: inline-block;
	   padding  :  0.7rem 1.2rem;
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	    color: white;
	  border-radius: 25px;
	  font-size: 0.9rem;
	    font-weight     :600;
}

.additional-services {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
   padding: 4rem 2rem;
  margin-top: 3rem;

}

.additional-services h2 {
  font-size: 2.5rem;
   text-align: center;
   margin-bottom: 3rem;
   color    :      #2c3e50;
}

.additional-grid {
   display:    grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
   max-width: 1200px;
   margin: 0 auto;
}

.additional-card {
     background: white;
    padding: 2rem;
    border-radius: 12px;
   text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
   border-top: 5px solid #667eea;
	}

.additional-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(102, 126, 234, 0.2);
}

.icon-wrapper {

	         margin-bottom: 1.5rem;
  display: flex;
     justify-content: center;
     }

.icon-wrapper img {
   width:      50px; 
		 height: 50px; 
	  filter: drop-shadow(0 2px 5px rgba(102, 126, 234, 0.2));}

.additional-card h3 {

		 color: #2c3e50;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
     }

.additional-card p {
    color: #666;
  font-size: 0.95rem;
   line-height: 1.6;
   margin-bottom: 1.5rem;
}

.card-meta {
   color  :#667eea;
  font-weight :        600;
  font-size: 0.95rem;
}

.package-section {
    max-width: 1200px;
  margin    :4rem auto;
	 padding: 0 2rem;
}

.package-section h2     {
    font-size    :        2.5rem;
	text-align: center;
	 margin-bottom: 3rem;
  color: #2c3e50;
}

.packages-grid {
        display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem; 
	
}

.package-card {
    background: white;
	border-radius: 12px;
   overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
    display: flex;
  flex-direction: column;
    border: 2px solid transparent;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.2);
}

.package-card.featured {
	border-color: #667eea;
  transform: scale(1.02);
}

.package-card.featured:hover {
  transform: scale(1.02) translateY(-10px);
}

.package-header {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  padding: 2rem;
  position: relative;
}

.featured-badge {
  background: #ffd700;
  color: #667eea;
    padding: 0.4rem 0.8rem;
   border-radius: 20px;
        font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
 margin-bottom   :    0.8rem;
	}

.package-header h3 {
     font-size: 1.5rem;
   margin-bottom: 0.5rem;
	
     }

.package-price {

   font-size: 1.8rem;
   font-weight: 700;
  margin-top: 0.5rem;


}

.package-features {
    list-style: none;
        padding: 2rem;
    flex-grow: 1;

}

.package-features li	{
	    padding :  0.8rem 0;
	color: #555;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
    line-height: 1.5;

}

.package-features li:last-child
{
	border-bottom    :    none;
}


.package-features li:before {
  content: "✓ ";
    color: #667eea;
   font-weight: bold;
      margin-right: 0.5rem;
}

.package-button {
     margin  : 2rem;
    padding: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
   text-decoration: none;
   border-radius: 8px;
    text-align: center;
  font-weight: 600;
 transition: all 0.3s ease;
  display: block;
}

.package-button:hover   {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(102, 126, 234, 0.3);
}

.process-section {

	    background: #f8f9fa;
  padding: 4rem 2rem;
   margin-top: 3rem;
	}

.process-section h2 {
               font-size   :       2.5rem;
    text-align: center;
    margin-bottom    :   3rem;
   color: #2c3e50;
}

.process-steps {
       gap :1.5rem;
   margin: 0 auto;
   display: flex;
    justify-content  :       center;
	 align-items     :     center;
  flex-wrap: wrap;
	max-width :     1200px;
}

.step {
	        background: white;
     padding: 2rem;
   border-radius: 12px;
   text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
   min-width     :      200px;
	 flex: 1;
    max-width: 250px;
    transition: all 0.3s ease;


}

.step:hover {
  transform: translateY(-5px);

	  box-shadow: 0 12px 25px rgba(102, 126, 234, 0.15);
}

.step-number {
   display: inline-flex;
    align-items:     center;
   justify-content: center;
  width: 50px;
   height    : 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
   border-radius: 50%;
  font-weight: 700;
   font-size: 1.5rem;
   margin-bottom: 1rem;
}

.step h3 {


   color: #2c3e50;
  margin-bottom: 0.8rem;
   font-size: 1.1rem;

}

.step p {
	   font-size: 0.9rem;
  color: #666;
         line-height    :1.5;
}



.step-arrow {
	 color: #667eea;
  font-size: 2rem;
	font-weight   :  bold;
   display     :        none;
}

.faq-section {
    max-width  :       900px;
		 margin: 4rem auto;
      padding: 0 2rem;
}

.faq-section h2	{
   font-size: 2.5rem;
  text-align :     center;
   margin-bottom: 3rem;
   color     :       #2c3e50;
}

.faq-container  
  {
	display: flex;
   flex-direction: column;
   gap: 1rem;
}



.faq-item {
    background: white;
	border-radius   :       10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
   overflow: hidden;
}

.faq-question {


   width: 100%;
               padding: 1.5rem;
    background: #f8f9fa;
     border: none;
   text-align    :        left;
  cursor: pointer;
   font-size: 1rem;
    font-weight: 600;
   color: #2c3e50;
    transition: all 0.3s ease;
  display: flex;
	justify-content    :   space-between;
    align-items: center;
	}

.faq-question:hover {
   background   :    #e8ebf0;
}

.faq-question:after {
  content: "+";
   font-size: 1.5rem;
   color: #667eea;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question:after {
  transform: rotate(45deg);
}

.faq-answer {
     display: none;
        padding: 1.5rem;
  color: #555;
   background: white;
   border-top: 1px solid #eee;

}

.faq-item.active .faq-answer {
	 display: block;
}

.faq-answer p {
    line-height: 1.6;
   font-size: 0.95rem;
}

.testimonials-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 4rem 2rem;
               margin-top :      3rem;
}

.testimonials-section h2 {
  font-size: 2.5rem;
  text-align: center;
   margin-bottom    :      3rem;
       color: #2c3e50;
}

.testimonials-grid {
       display   :   grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
  max-width: 1200px;
	margin: 0 auto;
}

.testimonial-card {
  background: white;
  padding: 2rem;
	border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
    border-left: 5px solid #667eea;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(102, 126, 234, 0.15);
}

.testimonial-text {
    color: #555;
    font-size: 0.95rem;
          line-height: 1.7;
                    margin-bottom: 1.5rem;
	font-style: italic;


}

.testimonial-author    {
	    color: #667eea;
    font-weight   : 600;
	 font-size     :       0.9rem;}

.cta-final   {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  color: white;
  padding: 4rem 2rem;
               text-align: center;
  margin-top: 4rem;
}



.cta-final h2 {
  font-size: 2.5rem;

   margin-bottom: 1rem;
}

.cta-final p {
    font-size: 1.1rem;
	margin-bottom: 2rem;
    opacity: 0.95;
}

.thank-you-hero {
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
	 padding: 4rem 2rem;
   text-align: center;
   min-height: 600px;
   display: flex;
   align-items: center;
               justify-content: center;

}

.thank-you-content {
  max-width: 700px;
}

.success-icon {
  margin-bottom   :        2rem;
}

.success-icon img {
   width: 80px;
   height:     80px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.thank-you-hero h1 {
    font-size: 2.8rem;
        margin-bottom: 1rem;
    font-weight:   700;
}

.thank-you-main-text {

  font-size:   1.2rem;
    opacity: 0.95;
     margin-bottom: 3rem; 
	
}

.thank-you-details {

	  background: rgba(255, 255, 255, 0.1);
   border-radius: 12px;
   padding: 2rem;
    margin-bottom: 2.5rem;
  backdrop-filter: blur(10px);
}

.detail-box {
  margin-bottom: 1.5rem;
}

.detail-box:last-child {
  margin-bottom     :  0;
}

.detail-box h3 {
  font-size: 1.1rem;
    margin-bottom: 0.5rem;
  font-weight: 600;
}

.detail-box p {
	    font-size :      0.95rem;
	 opacity     :        0.9;}

.detail-box a {
  color: #ffd700;
   -moz-transition: all 0.3s ease;
  text-decoration: none;
  font-weight: 600;
    transition:       all 0.3s ease;
   -o-transition: all 0.3s ease;
          -webkit-transition: all 0.3s ease;


}

.detail-box a:hover {
  text-decoration: underline;
}

.thank-you-actions {
  display: flex;
  gap: 1.5rem;
                    justify-content: center;
    flex-wrap     :      wrap;
  margin-bottom: 2rem;
}

.button-primary,
.button-secondary {
   padding: 1rem 2rem;
   border-radius: 50px;
  text-decoration: none;
	font-weight    :        600;
   transition    :   all 0.3s ease;
    display: inline-block;
    font-size: 1rem;
}

.button-primary {
   background-color: #ffd700;
  color: #667eea;}

.button-primary:hover {
   background-color: #ffed4e;
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(255, 215, 0, 0.3);

}

.button-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid white;
}

.button-secondary:hover {
   background: white;
   color    :        #667eea;
  transform: translateY(-2px);
}

.countdown-section     {
   font-size: 0.95rem;
  opacity: 0.85;
}

.countdown-section span {
       font-weight: 700;
        font-size :   1.1rem;
}

.benefits-section {
   max-width: 1200px;
       margin  :        4rem auto;
    padding: 0 2rem;
}

.benefits-section h2{
  font-size: 2.5rem; 
		 text-align: center; 
	  margin-bottom: 3rem; 
	    color: #2c3e50;
}

.benefits-grid {
  display     : grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap    : 2rem;
}

.benefit-item {
    background: white;
   padding: 2rem;
    border-radius: 12px;
    text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(102, 126, 234, 0.15);
}

.benefit-number {
    display: inline-flex;
  align-items: center;
          justify-content: center;
   width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color:     white;
   border-radius: 50%;
      font-weight: 700;
  font-size:1.8rem;
    margin-bottom     :      1rem;
}

.benefit-item h3 {
  color: #2c3e50;
  margin-bottom: 0.8rem;
   font-size: 1.1rem;
}

.benefit-item p {
    color  :    #666;
 font-size :    0.95rem;
	line-height     :        1.6;
}

.next-steps-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 4rem 2rem; 
	
}

.next-steps-section h2 {
  font-size: 2.5rem;
  text-align: center;
    margin-bottom: 3rem;
  color: #2c3e50;
}

.resources-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  max-width :    1200px;
    margin: 0 auto;
}

.resource-card {

	    background: white;
  padding: 2rem;
 border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
    display: flex;
   flex-direction: column;}

.resource-card:hover {

  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(102, 126, 234, 0.15);


}

.resource-card h3 {
    color: #667eea;
  margin-bottom: 0.8rem;
  font-size:    1.2rem;
}

.resource-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
   flex-grow: 1;
	margin-bottom: 1.5rem;
}

.resource-card a {

					 color: #667eea;
	text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
	display :      inline-block;
     }

.resource-card a:hover {
    color: #764ba2;
   text-decoration: underline;
}@media (max-width: 992px) {
    .service-detail-card {
        grid-template-columns: 1fr;
    }

    .service-detail-card.alt-layout .service-detail-content,
    .service-detail-card.alt-layout .service-image {
        order: unset;
    }

    .process-steps {
        flex-direction: column;
    }

    .step-arrow {
        display: block;
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .service-detail-content {
        padding: 1.5rem;
    }

    .service-image {
        height: 200px;
    }

    .thank-you-hero {
        min-height: auto;
        padding: 2rem;
    }

    .thank-you-hero h1 {
        font-size: 2rem;
    }

    .thank-you-actions {
        flex-direction: column;
    }

    .button-primary,
    .button-secondary {
        width: 100%;
        text-align: center;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card.featured {
        transform: scale(1);
    }

    .package-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 1.5rem;
    }

    .service-detail-content h2 {
        font-size: 1.4rem;
    }

    .additional-grid {
        grid-template-columns: 1fr;
    }

    .faq-question {
        font-size: 0.9rem;
        padding: 1rem;
    }

    .process-steps {
        gap: 0.5rem;
    }

    .step {
        min-width: 150px;
        max-width: 150px;
        padding: 1.2rem;
    }

    .step h3 {
        font-size: 0.95rem;
    }

    .step p {
        font-size: 0.8rem;
    }
}.policy-section {
   padding: 80px 2rem;

   background: #f8f9fa;

   min-height: 600px;
}

.policy-container {

	   max-width: 850px;
       margin: 0 auto;
      text-align: left;
	}

.policy-container h1	{
	font-size: 3rem;
   color: #2c3e50;
  margin-bottom: 2rem;
  font-weight :        700;
}

.policy-content h2 {
  font-size     :        1.8rem;
   color: #667eea;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
   font-weight: 600;
  border-bottom: 2px solid #667eea;
   padding-bottom: 0.8rem;
}

.policy-content h2:first-of-type {
    margin-top: 0;


}

.policy-container p {
   color: #555;
  margin-bottom :       1.5rem;
    line-height: 1.8;
  font-size: 1.05rem;
}

.policy-container strong {
          color: #2c3e50;
    font-weight: 600;
}

.policy-content{
  background: white;
	  padding    :   2.5rem;
	  border-radius: 12px;
	  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

}

.policy-content p:last-child {
         margin-top: 2rem;
   padding-top   : 2rem;
    border-top: 1px solid #eee;
   color    :    #999;
    font-size: 0.95rem;
}@media (max-width: 992px) {
    .policy-container h1 {
        font-size: 2.5rem;
    }

    .policy-content h2 {
        font-size: 1.6rem;
    }

    .policy-container p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .policy-section {
        padding: 60px 1rem;
    }

    .policy-container h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policy-content {
        padding: 1.5rem;
    }

    .policy-content h2 {
        font-size: 1.3rem;
        margin-top: 1.8rem;
        margin-bottom: 1rem;
    }

    .policy-container p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 40px 1rem;
    }

    .policy-container h1 {
        font-size: 1.6rem;
    }

    .policy-content {
        padding: 1rem;
    }

    .policy-content h2 {
        font-size: 1.1rem;
        margin-top: 1.5rem;
    }

    .policy-container p {
        font-size: 0.9rem;
    }
}