* {
   margin: 0;
    padding: 0;
    box-sizing: border-box;
}  

:root {
    --primary-color: #6b2d5c;
    --secondary-color: #d946a6;
    --accent-color: #f472b6;
    --dark-bg: #1a1a1a;
    --light-bg: #fafafa;
    --text-dark: #2d2d2d;
    --text-light: #666666;
    --border-color: #e5e5e5;
    --transition: all 0.3s ease;
}

html     {
  scroll-behavior: smooth;
}

body {

  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
    background-color: #ffffff;}

.navbar {
  background: linear-gradient(135deg, var(--primary-color) 0%, #8b3a7d 100%);
   padding: 1rem 0;
    position: sticky;
    top: 0;
   z-index:        100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-container {
   max-width: 1200px;
  margin : 0 auto;
    padding: 0 2rem;
  display  :flex;
   justify-content    :      space-between;
    align-items: center;
}

.nav-logo 
 {
  display: flex;
  align-items    :center;
}

.logo-img {
   height: 45px;
   width :    auto;
}

.nav-menu

{
    display: flex;
    list-style: none;
   gap: 2.5rem;
}

.nav-link {
   color: #ffffff;
     text-decoration: none;
    font-weight: 500;
  transition: var(--transition);
   position: relative;
}

.nav-link::after {
  content: '';
    position: absolute;
   bottom  :       -5px;
    left: 0;
    width: 0;
  height: 2px;
  background: var(--accent-color);
   transition: width 0.3s ease;
}

.nav-link:hover::after {
   width: 100%;
}

.burger-menu {
  display: none;
  flex-direction: column;
   background: none;
   border: none;
    cursor: pointer;
    gap : 5px;
}

.burger-menu span {
   width  :       25px;
       height: 3px;
  background: #ffffff;
    border-radius     :     2px;
  transition: var(--transition);
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
   opacity:     0;
}

.burger-menu.active span:nth-child(3)  {
  transform: rotate(-45deg) translate(7px, -7px);
}

.hero-section {


   display: grid;
  grid-template-columns: 1fr 1fr;
     align-items   :     center;
   gap: 3rem;
   padding: 4rem 2rem;
   max-width: 1200px;
  margin   :        0 auto;
   min-height: 600px;
}

.hero-content h1 {
  font-size: 3.5rem;
   font-weight    :   700;
   margin-bottom: 1.5rem;
  color: var(--primary-color);
  line-height: 1.2;
}

.hero-subtitle {
	   font-size: 1.1rem;
  color: var(--text-light);
    margin-bottom: 2.5rem;
   line-height: 1.8;
	}

.cta-button {
    display: inline-block;
                    padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
   color: #ffffff;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
    font-weight: 600;
         cursor: pointer;
  transition: var(--transition);
				 text-decoration: none;
  box-shadow: 0 4px 15px rgba(217, 70, 166, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 70, 166, 0.4);
}

.hero-image {
       width: 100%;
  height: 100%;
     }

.hero-image img {
  width: 100%;
	height: 100%;
   object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);

}

.services-preview {
  background: linear-gradient(135deg, #faf9f7 0%, #f5f1ed 100%);
	padding: 4rem 2rem;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-container > h2 {
   font-size: 2.5rem;
  color: var(--primary-color);
   margin-bottom: 3rem;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap :2.5rem;
}

.service-card {
   background: #ffffff;

	   border-radius: 15px;

	    overflow: hidden;

	  transition: var(--transition);

	  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);

	   display: flex;

	   flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-card img
{
	 width: 100%;
	height: 200px;
  object-fit: cover;
}

.service-card h3 {
   font-size  :   1.4rem;
  color: var(--primary-color);
   padding: 1.5rem 1.5rem 0.5rem;
    margin: 0;
}

.service-card p {
    padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
  font-size: 0.95rem;
   line-height: 1.7;
  flex-grow   : 1;
}

.features-section


{
   padding   :      4rem 2rem;
  background: #ffffff;
}

.features-container {
  max-width: 1200px;
    margin    :    0 auto;
}

.features-container > h2  {
  font-size: 2.5rem;
  color: var(--primary-color);
   margin-bottom: 3rem;
	text-align: center;
}

.features-list  
  {
   display  :     grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 2rem;
}

.feature-item {
  background: linear-gradient(135deg, rgba(107, 45, 92, 0.05) 0%, rgba(217, 70, 166, 0.05) 100%);
    padding: 2rem;
  border-radius: 15px;
  border-left: 4px solid var(--secondary-color);
  transition: var(--transition);
}

.feature-item:hover {
  background: linear-gradient(135deg, rgba(107, 45, 92, 0.1) 0%, rgba(217, 70, 166, 0.1) 100%);
  transform: translateX(5px); 


}

.feature-number {

   font-size: 2.5rem; 
	    font-weight: 700; 
	  color: var(--accent-color); 
	  margin-bottom: 0.5rem;
}

.feature-item h3     {
	 font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 0.8rem;
}

.feature-item p {
  color: var(--text-light);
    line-height: 1.7;
	
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #8b3a7d 100%);
    padding: 4rem 2rem;
  text-align: center;
  color: #ffffff;
}

.cta-inner {
   max-width:       800px;
   margin:  0 auto;
}

.cta-section h2 {
    font-size: 2.8rem;
	 margin-bottom: 1.5rem; 

}

.cta-section p {
        font-size: 1.1rem;
   margin-bottom: 2.5rem;
  opacity: 0.95;
   line-height: 1.8;
}

.cta-button-large 
 {

  display: inline-block;
  padding: 1.2rem 3rem;
  background: linear-gradient(135deg, var(--accent-color) 0%, #ec4899 100%);
 color: #ffffff;
  border: none;
	border-radius: 50px;
	font-size: 1.1rem;
          font-weight: 600;
   cursor: pointer;
   text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(244, 114, 182, 0.3);

}

.cta-button-large:hover


{
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(244, 114, 182, 0.5);
}

.contact-section
{
   padding: 4rem 2rem;
  background: linear-gradient(135deg, #faf9f7 0%, #f5f1ed 100%);
}

.contact-container    {
       max-width     :     700px;
	 margin    :0 auto;
}

.contact-section h2 {
 font-size: 2.5rem;
  color: var(--primary-color);
    margin-bottom: 1rem;
   text-align: center;
}

.contact-intro {
   text-align: center;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
	
}

.contact-form {
   background: #ffffff;
  padding     :     2.5rem;
    border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}



.form-group  
  {
    margin-bottom: 1.8rem;
}

.form-group label


{
  display: block;
       font-weight: 600;
  color: var(--primary-color);
   margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea     {
    width: 100%;
   padding: 0.9rem 1rem;
  border: 2px solid var(--border-color);
   border-radius: 8px;
		font-family: inherit;
   font-size: 1rem;
  color: var(--text-dark);
  transition: var(--transition);
}  

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline    :   none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(217, 70, 166, 0.1);
}

.form-group textarea {
  resize  : vertical;
   min-height: 120px;
}


.submit-button {
   width: 100%;
    padding: 1.1rem 2rem;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: #ffffff;
      border: none;
  border-radius: 8px;
   font-size:    1.05rem;
    font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(217, 70, 166, 0.3);
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 70, 166, 0.4);
}

.footer {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #2a2a2a 100%);
  color: #ffffff;
  padding:        3rem 2rem 1.5rem;
   margin-top: 2rem;
}

.footer-container {
   max-width: 1200px;
      margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   	 gap: 2.5rem;
      margin-bottom: 2rem;
}

.footer-logo-img {
   height: 50px;
   width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1.5rem;
}

.footer-info h3,
.footer-nav h3 {

	   font-size     :  1.2rem;
   margin-bottom: 1.2rem;
  color: var(--accent-color);}

.info-item {
	  display: grid;
   grid-template-columns: 100px 1fr;
  margin-bottom: 1rem;
	 gap :      1rem;
   align-items  :    flex-start;
}

.info-label {
	font-weight: 600;
  color: var(--accent-color);
}

.info-item span:last-child {
    color: #cccccc;

    line-height: 1.6;
}

.footer-nav ul	{
    list-style: none;
}

.footer-nav li {
    margin-bottom: 0.8rem; 

}

.footer-nav a		{

	    color: #cccccc;
	text-decoration: none;
  transition: var(--transition);
     }

.footer-nav a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
	   padding-top: 1.5rem;
	    text-align: center;
	                    color: #999999;
		grid-column: 1 / -1;}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--primary-color);
        gap: 0;
        padding: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 0.8rem 1rem;
        display: block;
    }

    .hero-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .cta-button,
    .cta-button-large {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .services-container > h2,
    .features-container > h2,
    .contact-section h2 {
        font-size: 1.8rem;
    }

    .feature-number {
        font-size: 2rem;
    }

    .info-item {
        grid-template-columns: 1fr;
        gap: 0.3rem;
    }
}.services-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #8b3a7d 100%);
   padding: 5rem 2rem;
     text-align: center;
    color  :      #ffffff;
  min-height     :     400px;
  display    :     flex;
  align-items: center;
  justify-content     :      center;
}

.services-hero-content h1 {


    font-size: 3rem;
	margin-bottom :   1rem;
	font-weight: 700;
     }

.services-hero-content p {
   font-size: 1.2rem;

	 opacity: 0.95;

   line-height: 1.6;
}

.services-detailed {

	   padding: 4rem 2rem;
  background: #ffffff;
}

.services-detailed-container {
	    max-width: 1100px;
         margin: 0 auto;


}

.service-detail-item {
  display: grid;
	grid-template-columns : 1fr 1fr;
   gap: 3rem;
      align-items: start;
	 margin-bottom: 4rem;
  background: linear-gradient(135deg, rgba(107, 45, 92, 0.02) 0%, rgba(217, 70, 166, 0.02) 100%);
   padding: 2.5rem;
	border-radius: 20px;
  border: 1px solid rgba(217, 70, 166, 0.1);
}



.service-detail-item:nth-child(even) {
    direction: rtl;
}

.service-detail-item:nth-child(even) > * {
  direction: ltr;
}

.service-detail-image {
                    width    :   100%;
  height: 100%;
}

.service-detail-image img {
    width: 100%;
	height: auto;
    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
   object-fit: cover;
   min-height: 350px;
}

.service-detail-content h2 {
  font-size: 2.2rem;
  color: var(--primary-color);
    margin-bottom: 1rem;
   line-height: 1.3;


}

.service-description {
    font-size: 1rem;
  color: var(--text-light);
    line-height    :     1.8;
  margin-bottom  :     1.8rem;
}  

.service-features {
      margin: 2rem 0;
	}

.service-features h3 {
   font-size    :   1.1rem;

  color: var(--primary-color);

    margin-bottom: 1rem;

	 font-weight :    600;
}

.features-list {


    list-style: none;
  display: grid;
	 grid-template-columns:    1fr 1fr;
    gap: 0.8rem;
     }

.features-list li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-light);
    line-height: 1.6;
}

.features-list li::before {
  content: '✓';
    position    :  absolute;
   left: 0;
  color: var(--accent-color);
   font-weight: bold;
  font-size: 1.1rem;
}


.service-meta {
	 display : grid;
   grid-template-columns :1fr 1fr 1fr;
	gap :     1rem;
        margin:   2rem 0;
   padding: 1.5rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
}

.meta-item {

	   font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.6;


}

.meta-item strong {
  color: var(--secondary-color);
   	 display: block;
     margin-bottom: 0.3rem;
}

.service-cta {
   display: inline-block;
  margin-top: 1.5rem;
    padding: 0.9rem 2rem;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
  color   :       #ffffff;
   text-decoration: none;
    border-radius  :        8px;
   font-weight: 600;
               transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(217, 70, 166, 0.2);
}

.service-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 70, 166, 0.3);
}

.pricing-overview {
  background: linear-gradient(135deg, #faf9f7 0%, #f5f1ed 100%);
        padding: 4rem 2rem;
}

.pricing-container {
   max-width: 1200px;
  margin: 0 auto;
       text-align: center;
     }

.pricing-overview h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.pricing-intro {
  color: var(--text-light);
    font-size: 1.05rem;
     margin-bottom: 3rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	 gap: 2rem;
}

.pricing-card {
   background: #ffffff;
  padding: 2rem;
   border-radius    :15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
   position: relative;
    display: flex;
  flex-direction: column;
 height: 100%;
}  

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
  border: 2px solid var(--secondary-color);
  transform: scale(1.05);
}

.featured-badge {
  position: absolute;
  top     :-12px;
    left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
  color: #ffffff;
   padding: 0.4rem 1rem;
    border-radius :       20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
  color: var(--primary-color);
    margin: 1rem 0 0.5rem;
}

.pricing-desc		{
  color: var(--text-light);
     font-size: 0.9rem;
 margin-bottom: 1.5rem;
} 

.pricing-features {
  list-style: none;
  text-align: left;
    flex-grow: 1;
  margin-bottom: 1.5rem;
}

.pricing-features li {
     padding: 0.6rem 0;
  color: var(--text-dark);
   padding-left: 1.2rem;
   position: relative;
	font-size: 0.95rem;

}

.pricing-features li::before {
  content: '•';
   position: absolute;
   left: 0;
  color: var(--accent-color);
       font-weight   :    bold;
}

.testimonials-section {
  padding: 4rem 2rem;
       background: #ffffff;
}

.testimonials-container {
  max-width: 1200px;
   margin: 0 auto; 

}

.testimonials-section h2 {
    font-size    :  2.5rem;
  color: var(--primary-color);
   margin-bottom: 3rem;
  text-align: center;
}

.testimonials-grid {
    display  : grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap   :     2rem;
}

.testimonial-card {
  background: linear-gradient(135deg, rgba(107, 45, 92, 0.05) 0%, rgba(217, 70, 166, 0.05) 100%);
    padding   :        2rem;
  border-radius: 15px;
  border-left: 4px solid var(--secondary-color);
   transition: all 0.3s ease;


}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text-dark);
    margin-bottom: 1rem;
        line-height    :      1.8;
    font-style: italic;

}

.testimonial-author {
  color: var(--secondary-color);
     font-weight    :    600;
    font-size: 0.95rem;
}

.faq-section {
  background: linear-gradient(135deg, #faf9f7 0%, #f5f1ed 100%);
   padding: 4rem 2rem;
}

.faq-container {
	 max-width: 800px;
   margin: 0 auto;
}

.faq-section h2  
  {
   font-size: 2.5rem;
  color: var(--primary-color);
    margin-bottom: 3rem;
  text-align: center;
}

.faq-items    {


   display: flex; 
	   flex-direction: column; 
	   gap: 1rem;}

.faq-item {
     background: #ffffff;
  border-radius    :12px;
    overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);


}

.faq-question {
   width: 100%;
  padding: 1.5rem;
  background    :        #ffffff;
  border  : none;
  text-align: left;
	cursor: pointer;
	display     :     flex;
   justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  color: var(--primary-color);
    font-weight :      600;
    transition: all 0.3s ease;
}

.faq-question:hover
{
  background: rgba(217, 70, 166, 0.05);
}

.faq-toggle {
   font-size: 1.5rem;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
}

.faq-answer {
   max-height:0;
  overflow: hidden;
    transition: max-height 0.3s ease;
  background: rgba(217, 70, 166, 0.03);
}

.faq-answer.active {
  max-height: 500px;
}

.faq-answer p {
      padding: 1.5rem;
	  color: var(--text-light);
		line-height: 1.8;
	   margin: 0;
}

.faq-question.active .faq-toggle {
  transform: rotate(45deg);
}


.services-cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, #8b3a7d 100%);
    padding: 4rem 2rem;
    text-align: center;
     color: #ffffff;
}

.services-cta-content {
   max-width: 600px;
  margin: 0 auto;}

.services-cta h2 {
   font-size: 2.5rem;
  margin-bottom: 1rem;
}

.services-cta p {
  font-size     :      1.1rem;
    margin-bottom:  2rem;
   opacity: 0.95;
   line-height: 1.8;
}

.thankyou-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #faf9f7 0%, #f5f1ed 100%);
  min-height: calc(100vh - 300px);
    display: flex;
   align-items: center;
	justify-content: center;
}

.thankyou-container {
   max-width: 700px;
    margin: 0 auto;
   text-align: center;
    background: #ffffff;
  padding: 3rem;
    border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.thankyou-icon {
    margin-bottom: 2rem;
   animation: scaleIn 0.5s ease;
}

.thankyou-icon svg {
  animation: slideDown 0.8s ease;
}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}.thankyou-container h1 {
   font-size: 2.5rem;
  color: var(--primary-color);
   margin-bottom: 1rem;
}

.thankyou-intro {
    font-size: 1.15rem;
  color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.thankyou-details {
  background: rgba(217, 70, 166, 0.05);
  padding: 2rem;
        border-radius: 12px;
    margin: 2rem 0;
   text-align: left;
}  

.thankyou-details p {
  color: var(--text-light);
		 line-height     :    1.8;
	          margin-bottom: 1rem; 

}

.thankyou-details p:last-child {
  margin-bottom: 0;
}

.thankyou-details strong {

  color: var(--secondary-color);} 

.thankyou-actions {
    display    : grid;
    grid-template-columns: 1fr 1fr;
  gap: 1rem;
    margin   :     2.5rem 0;
}

.btn-primary,
.btn-secondary,
.btn-bonus   {
  display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
  text-decoration: none;
    font-weight: 600;
  border: none;
                    cursor: pointer;
   transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
	 color: #ffffff;
  box-shadow: 0 4px 12px rgba(217, 70, 166, 0.3);
}

.btn-primary:hover {
     transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 70, 166, 0.4);
     }

.btn-secondary {
   background:     #f0f0f0;
  color: var(--primary-color);
  border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, rgba(217, 70, 166, 0.1) 0%, rgba(244, 114, 182, 0.1) 100%);
	
}

.thankyou-next-steps {
        margin: 3rem 0; 
	
}

.thankyou-next-steps h2 {
   font-size: 1.8rem;
  color: var(--primary-color);
   margin-bottom: 2rem;
}

.steps-grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap    :1.5rem;
}

.step-card {
     background: linear-gradient(135deg, rgba(107, 45, 92, 0.05) 0%, rgba(217, 70, 166, 0.05) 100%);
   padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
	}

.step-number {
    font-size: 2.5rem;
   font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}



.step-card h3		{
    font-size: 1.1rem;
     color: var(--primary-color);
      margin-bottom: 0.5rem;
}

.step-card p
{
  color: var(--text-light);
   font-size: 0.9rem;
	line-height: 1.6;
}

.thankyou-bonus {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%); 
   color: #ffffff; 
  padding: 2rem; 
        border-radius: 15px; 
  margin-top   :    2.5rem;
}

.thankyou-bonus h2 {
   color: #ffffff;
    margin-bottom: 0.8rem;
	 font-size: 1.5rem;
}

.thankyou-bonus p		{
  color: rgba(255, 255, 255, 0.95);
				 margin-bottom: 1.5rem;
  font-size  :   1rem;
}

.btn-bonus {
    background:#ffffff;
  color: var(--secondary-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); 

}

.btn-bonus:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.95);
}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .service-detail-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }

    .service-detail-item:nth-child(even) {
        direction: ltr;
    }

    .service-meta {
        grid-template-columns: 1fr;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .thankyou-container {
        padding: 2rem 1.5rem;
    }

    .thankyou-container h1 {
        font-size: 1.8rem;
    }

    .thankyou-actions {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 3rem 1rem;
        min-height: 300px;
    }

    .services-hero-content h1 {
        font-size: 1.5rem;
    }

    .service-detail-content h2 {
        font-size: 1.5rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .thankyou-container {
        padding: 1.5rem;
    }

    .thankyou-icon svg {
        width: 60px;
        height: 60px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-bonus {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .step-number {
        font-size: 2rem;
    }
}.policy-section
{
               padding: 4rem 2rem;
  background: linear-gradient(135deg, #faf9f7 0%, #f5f1ed 100%);
  min-height: calc(100vh - 300px);
}

.policy-container {
    max-width: 900px;
   margin: 0 auto;
  text-align: left;
   background: #ffffff;
	padding    :    3rem;
	 border-radius     :  20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
} 

.policy-container h1 {
    font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
    font-weight: 700;
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 3px solid var(--accent-color);
}

.policy-container h2 {
  font-size: 1.8rem;
  color: var(--primary-color);
   margin-top: 2.5rem;
  margin-bottom: 1.2rem;
    font-weight: 700;
   position: relative;
    padding-left: 0;
}

.policy-container h2::before {
  content: '';
    position     :     absolute;
     left: 0;
  top:      0;
    bottom: 0;
   width: 4px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
	 border-radius: 2px;
}

.policy-container h2		{


  padding-left: 1rem;
}

.policy-container p {
	  color: var(--text-light);
      margin-bottom: 1.5rem;
   line-height: 1.9;
   font-size: 1.05rem;
  text-align: justify;


}

.policy-container p:first-of-type {
	 margin-top: 0; 
	
}

.policy-container p strong

{
  color: var(--primary-color);
  font-weight: 600;
}@media (max-width: 768px) {
    .policy-section {
        padding: 2rem 1rem;
    }

    .policy-container {
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }

    .policy-container h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policy-container h2 {
        font-size: 1.4rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .policy-container p {
        font-size: 1rem;
        line-height: 1.8;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 1.5rem 1rem;
    }

    .policy-container {
        padding: 1.5rem 1rem;
        border-radius: 12px;
    }

    .policy-container h1 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .policy-container h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policy-container p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }
}