:root {
  --pitch-dark: #1a1a2e;
  --pitch-accent: #0f3460;
  --pitch-highlight: #e94560;
  --pitch-light: #f4f4f9;
  --pitch-muted: #7a7a9e;
  --pitch-border: #e0e0e0;
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
     margin: 0;

	    padding: 0;

	    box-sizing: border-box;
}

html {

         scroll-behavior: smooth;


}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
  color     :      #333;
    line-height: 1.6;
   background-color:       #fff;
   min-height:   100vh;
  display: flex;
  flex-direction: column;}

.site-nav {
  background: var(--pitch-dark);
  position: sticky;
  top: 0;
    z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.nav-container {
  max-width: 1200px;
      margin: 0 auto;
      padding: 1rem 2rem;
       display: flex;
      justify-content   :  space-between;
   	align-items: center;
}

.nav-brand {
    flex-shrink :      0;
}


.brand-link {
    display: flex;
    align-items: center;
}

.brand-logo {
 height: 45px;
    width: auto;
  filter: brightness(0) invert(1);
  transition: transform var(--transition-smooth);
}

.brand-logo:hover {
  transform: scale(1.05);

}

.nav-toggle {

  display: none;
	   background: none;
	    border: none;
	    cursor: pointer;
	   padding: 0.5rem;
}

.burger-icon {
    width     :      24px;
   height: 24px;
    stroke: #fff;
}

.nav-menu {
    display: flex;
  list-style: none;
  gap :        2rem;
        align-items: center;
}

.nav-menu a {
   color: #fff;
   text-decoration: none;
	 font-weight  :       500;
    position: relative;
  transition: color var(--transition-smooth);
}

.nav-menu a:after {
  content: '';
	 position     :   absolute;
     bottom: -5px;
     left: 0;
	width     :   0;
	height: 2px;
  background: var(--pitch-highlight);
  transition: width var(--transition-smooth);
}

.nav-menu a:hover
{
  color: var(--pitch-highlight);
}

.nav-menu a:hover:after {
  width: 100%;
}

.cta-nav {
  background: var(--pitch-highlight);
   padding: 0.7rem 1.5rem;
         border-radius: 6px;
   color: #fff !important;


}

.cta-nav:after {
   display: none;
}

.cta-nav:hover {
   background: #d63550;
  transform: translateY(-2px);
}

.hero-section {
	display   :   grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
    padding: 4rem 2rem;
	max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-content h1 {
  font-size: 3.5rem;
   font-weight: 700;
	line-height: 1.2;
  color: var(--pitch-dark);
  margin-bottom: 1.5rem;
}  

.hero-subtitle {
   font-size: 1.25rem;
  color: var(--pitch-muted);
    margin-bottom: 2.5rem;
   line-height: 1.5;
}

.cta-button

{

	  display: inline-block;
  background: var(--pitch-highlight);
  color: white;
   padding: 1rem 2.5rem;
   border-radius: 8px;
   text-decoration: none;
   font-weight: 600;
         cursor: pointer;
  transition: all var(--transition-smooth);
  border: 2px solid var(--pitch-highlight);


}

.cta-button:hover {
   background: transparent;
  color: var(--pitch-highlight);
  transform: translateX(4px);
}

.responsive-img {
   width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15); 

}



.services-preview {
  background: linear-gradient(135deg, var(--pitch-light) 0%, #f9f9fc 100%);
    padding: 4rem 2rem;
}

.services-grid {
   max-width   :     1200px;
      margin: 0 auto;
         display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
	gap: 2rem;
}

.service-card {
	 background: white;
    border-radius: 10px;
 overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all var(--transition-smooth);
    cursor: pointer;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(233, 69, 96, 0.2);
}

.card-image {
      width: 100%;
    display: block;
  object-fit: cover;
  height: 220px;
}

.service-card h3 {
   font-size: 1.35rem;
  color: var(--pitch-dark);
    padding   :     1.5rem 1.5rem 0.8rem 1.5rem;
    margin: 0;
}

.service-card p {
  color: var(--pitch-muted);
       padding: 0 1.5rem 1.5rem 1.5rem;
   font-size: 0.95rem;
	
}

.offerings-section   {
  padding: 4rem 2rem;
  max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.offerings-section h2 {
    font-size: 2.5rem;
  color: var(--pitch-dark);
    margin-bottom: 3rem;
   text-align: center;
}

.offerings-container {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;


}

.offering-item {
  border-left: 4px solid var(--pitch-highlight);
   padding-left: 2rem;
   position: relative;
}

.offering-item h3 {
    font-size  :1.5rem;
  color: var(--pitch-dark);
    margin-bottom: 1rem;
}

.offering-item p {
  color: var(--pitch-muted);
   line-height     : 1.8;
   font-size: 0.98rem;
}

.cta-section {
  background: linear-gradient(135deg, var(--pitch-accent) 0%, var(--pitch-dark) 100%);
   padding: 4rem 2rem;
   text-align: center;
}

.cta-wrapper {
   max-width   :       800px;
    margin: 0 auto;

}

.cta-wrapper h2 {
   font-size: 2.5rem;
       color: white;
          margin-bottom: 1.5rem;
}

.cta-wrapper p {
   color: #e0e0e0;
   font-size: 1.1rem;
    margin-bottom   : 2.5rem;

}

.cta-button-primary {
    display: inline-block;
  background: var(--pitch-highlight);
       color: white;
  padding: 1.2rem 3rem;
    border-radius: 8px;
   text-decoration: none;
   font-weight: 700;
    cursor  :pointer;
  transition: all var(--transition-smooth);
  font-size: 1.05rem;
}

.cta-button-primary:hover {

	   background:     #d63550;
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(233, 69, 96, 0.3);}

.contact-section {
    padding: 4rem 2rem;
  background: var(--pitch-light);
} 

.contact-section h2   {
   font-size: 2.2rem;
     color: var(--pitch-dark);
                       margin-bottom: 3rem;
      text-align: center;
}

.contact-form {
   max-width: 600px;

	    margin: 0 auto;

		 background: white;

	  padding     :2.5rem;

	  border-radius: 12px;

	  box-shadow: 0 4px 20px rgba(0,0,0,0.1);


}

.form-group {
   margin-bottom: 1.8rem;
}

.form-group label {
   display     :       block;

    margin-bottom: 0.7rem;

  color: var(--pitch-dark);

    font-weight: 600;

  font-size   :  0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
   padding: 0.9rem 1rem;
  border: 2px solid var(--pitch-border);
   border-radius :       6px;
  font-family: inherit;
   font-size     : 1rem;
  transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	  outline: none; 
	  border-color: var(--pitch-highlight); 
	  box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1); 


}

.form-group textarea {
  resize: vertical;
  min-height: 130px; 

}

.submit-button {
   width: 100%;
   padding: 1rem;
  background: var(--pitch-highlight);
	color  :     white;
   border: none;
    border-radius    :        6px;
                    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
  transition: all var(--transition-smooth);
}

.submit-button:hover {
    background: #d63550;

  transform: translateY(-2px);

  box-shadow: 0 6px 20px rgba(233, 69, 96, 0.3);
}

.submit-button:active {
  transform: translateY(0);
  -ms-transform: translateY(0);
}

.main-footer {
  background: var(--pitch-dark);
  color :  #e0e0e0;
       margin-top: auto;
  padding     :      3rem 2rem 1.5rem;


}

.footer-wrapper {
    max-width: 1200px;
    margin:  0 auto;
   display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: flex-start;
}

.footer-logo {

	   height: 50px;
    width: auto;
  filter: brightness(0) invert(1);
	
     }

.footer-content {

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap    :   2rem;

}

.footer-section h4 {
    color: white; 
	    font-size: 1.1rem; 
	    margin-bottom :       1.2rem;
}

.footer-section ul {
	  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section a {
    color: #e0e0e0;
  text-decoration: none;
  transition: color var(--transition-smooth);
}

.footer-section a:hover {

	  color: var(--pitch-highlight);
	}

.footer-section p {
  line-height: 1.8;
          font-size: 0.95rem;
}

.footer-bottom {
	  text-align: center;
    padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
	 color: #999;}@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--pitch-dark);
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth);
  }
  
  .nav-menu.active {
    max-height: 400px;
  }
  
  .nav-menu a {
    padding: 0.7rem 0;
    display: block;
  }
  
  .cta-nav {
    width: 100%;
    text-align: center;
  }
  
  .hero-section {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 1rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .footer-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .offerings-container {
    grid-template-columns: 1fr;
  }
  
  .cta-wrapper h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }
  
  .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .services-preview {
    padding: 2rem 1rem;
  }
  
  .contact-section {
    padding: 2rem 1rem;
  }
  
  .nav-container {
    padding: 1rem;
  }
}

.services-header {
  position: relative;
  background: linear-gradient(135deg, var(--pitch-dark) 0%, var(--pitch-accent) 100%);
  padding: 6rem 2rem;
  text-align: center;
  overflow: hidden;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="90" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.5;
}

.header-content {
  position: relative;
  z-index: 2;
}

.services-header h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 1rem;
  font-weight: 700;
}

.services-header p {
  font-size: 1.3rem;
  color: #e0e0e0;
}

.services-detailed {
  padding: 5rem 2rem;
  background: white;
}

.services-container {
  max-width: 1100px;
  margin: 0 auto;
}

.service-detailed-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: stretch;
  margin-bottom: 4rem;
  background: var(--pitch-light);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all var(--transition-smooth);
}

.service-detailed-card:hover {
  box-shadow: 0 8px 25px rgba(233, 69, 96, 0.15);
  transform: translateY(-4px);
}

.service-detailed-card.alternate {
  direction: rtl;
}

.service-detailed-card.alternate .service-info {
  direction: ltr;
}

.service-visual {
  overflow: hidden;
  background: #f0f0f5;
}

.service-detail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.service-detailed-card:hover .service-detail-img {
  transform: scale(1.05);
}

.service-info {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-info h2 {
  font-size: 2rem;
  color: var(--pitch-dark);
  margin-bottom: 1rem;
}

.service-intro {
  font-size: 1.15rem;
  color: var(--pitch-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-info h3 {
  font-size: 1.15rem;
  color: var(--pitch-dark);
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-features li {
  padding: 0.6rem 0;
  color: var(--pitch-muted);
  padding-left: 1.8rem;
  position: relative;
}

.service-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--pitch-highlight);
  font-weight: bold;
}

.service-details {
  color: var(--pitch-muted);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--pitch-border);
}

.service-meta span {
  font-size: 0.9rem;
  color: var(--pitch-muted);
  font-weight: 500;
}

.pricing-overview {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--pitch-light) 0%, #f5f5fa 100%);
}

.pricing-overview h2 {
  font-size: 2.5rem;
  color: var(--pitch-dark);
  text-align: center;
  margin-bottom: 4rem;
}

.pricing-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.pricing-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  position: relative;
  transition: all var(--transition-smooth);
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(233, 69, 96, 0.2);
}

.pricing-card.featured {
  border-color: var(--pitch-highlight);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.08) translateY(-8px);
}

.featured-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--pitch-highlight);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
}

.pricing-card h3 {
  font-size: 1.5rem;
  color: var(--pitch-dark);
  margin-bottom: 1rem;
}

.price {
  font-size: 2rem;
  color: var(--pitch-highlight);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.7rem 0;
  color: var(--pitch-muted);
  padding-left: 1.8rem;
  position: relative;
  font-size: 0.95rem;
}

.pricing-features li:before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--pitch-highlight);
  font-size: 0.6rem;
  top: 0.5rem;
}

.why-choose-us {
  padding: 5rem 2rem;
  background: white;
}

.why-choose-us h2 {
  font-size: 2.5rem;
  color: var(--pitch-dark);
  text-align: center;
  margin-bottom: 4rem;
}

.benefits-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.benefit-item {
  padding: 2rem;
  background: linear-gradient(135deg, var(--pitch-light) 0%, #f9f9fc 100%);
  border-radius: 10px;
  border-left: 4px solid var(--pitch-highlight);
  transition: all var(--transition-smooth);
}

.benefit-item:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.benefit-item h3 {
  font-size: 1.3rem;
  color: var(--pitch-dark);
  margin-bottom: 0.8rem;
}

.benefit-item p {
  color: var(--pitch-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.cta-services {
  background: linear-gradient(135deg, var(--pitch-accent) 0%, var(--pitch-dark) 100%);
  padding: 4rem 2rem;
  text-align: center;
}

.cta-services h2 {
  font-size: 2.2rem;
  color: white;
  margin-bottom: 1rem;
}

.cta-services p {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 2.5rem;
}

.cta-button-services {
  display: inline-block;
  background: var(--pitch-highlight);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all var(--transition-smooth);
}

.cta-button-services:hover {
  background: #d63550;
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(233, 69, 96, 0.4);
}

.thankyou-wrapper {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--pitch-light) 0%, #f9f9fc 100%);
}

.thankyou-container {
  max-width: 700px;
  background: white;
  border-radius: 16px;
  padding: 4rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  text-align: center;
}

.success-icon {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.check-icon {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 4px 8px rgba(46, 204, 113, 0.3));
}

.thankyou-container h1 {
  font-size: 2.5rem;
  color: var(--pitch-dark);
  margin-bottom: 1rem;
}

.success-message {
  font-size: 1.15rem;
  color: var(--pitch-muted);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.confirmation-details {
  background: var(--pitch-light);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 3rem;
  text-align: left;
}

.confirmation-details h2 {
  font-size: 1.3rem;
  color: var(--pitch-dark);
  margin-bottom: 1.5rem;
  text-align: center;
}

.detail-box {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--pitch-highlight);
}

.detail-box p {
  margin-bottom: 0.8rem;
  color: var(--pitch-muted);
  font-size: 0.95rem;
}

.detail-box strong {
  color: var(--pitch-dark);
}

.what-happens-next {
  margin-bottom: 3rem;
}

.what-happens-next h3 {
  font-size: 1.4rem;
  color: var(--pitch-dark);
  margin-bottom: 2rem;
}

.next-steps {
  list-style: none;
  text-align: left;
}

.next-steps li {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: var(--pitch-light);
  border-radius: 8px;
  transition: all var(--transition-smooth);
}

.next-steps li:hover {
  background: #f0f0f5;
  transform: translateX(4px);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--pitch-highlight);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.1rem;
}

.step-content strong {
  color: var(--pitch-dark);
  font-size: 1rem;
}

.step-content p {
  color: var(--pitch-muted);
  margin-top: 0.3rem;
  font-size: 0.9rem;
}

.additional-resources {
  background: linear-gradient(135deg, var(--pitch-accent) 0%, var(--pitch-dark) 100%);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  color: white;
}

.additional-resources h3 {
  color: white;
  margin-bottom: 1rem;
}

.additional-resources p {
  color: #e0e0e0;
  margin-bottom: 1.5rem;
}

.resource-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.resource-link {
  display: inline-block;
  background: var(--pitch-highlight);
  color: white;
  padding: 0.7rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition-smooth);
}

.resource-link:hover {
  background: #d63550;
  transform: translateY(-2px);
}

.contact-info-box {
  background: #f0f8ff;
  border: 2px solid #3498db;
  border-radius: 8px;
  padding: 1.5rem;
}

.contact-info-box p {
  color: var(--pitch-dark);
  margin-bottom: 0.5rem;
}

.contact-info-box p:first-child {
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-info-box strong {
  color: var(--pitch-highlight);
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .services-header {
    padding: 3rem 1rem;
    min-height: 250px;
  }

  .services-header h1 {
    font-size: 2rem;
  }

  .services-header p {
    font-size: 1rem;
  }

  .service-detailed-card {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 3rem;
  }

  .service-visual {
    min-height: 250px;
  }

  .service-info {
    padding: 2rem;
  }

  .service-info h2 {
    font-size: 1.5rem;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured:hover {
    transform: translateY(-8px);
  }

  .thankyou-container {
    padding: 2rem;
  }

  .thankyou-container h1 {
    font-size: 1.8rem;
  }

  .check-icon {
    width: 60px;
    height: 60px;
  }

  .resource-links {
    flex-direction: column;
  }

  .resource-link {
    width: 100%;
    text-align: center;
  }

  .next-steps li {
    flex-direction: column;
    align-items: flex-start;
  }

  .step-number {
    width: 35px;
    height: 35px;
  }

  .why-choose-us h2,
  .pricing-overview h2 {
    font-size: 2rem;
  }

  .cta-services h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .services-detailed {
    padding: 2rem 1rem;
  }

  .service-info {
    padding: 1.5rem;
  }

  .service-info h2 {
    font-size: 1.3rem;
  }

  .service-intro {
    font-size: 1rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .benefit-item {
    padding: 1.5rem;
  }

  .thankyou-container {
    padding: 1.5rem;
  }

  .confirmation-details {
    padding: 1.5rem;
  }

  .cta-button-services {
    display: block;
    width: 100%;
  }

  .next-steps li {
    padding: 1rem;
  }
}.policySection {
   padding: 80px 2rem;
   background: #f8f9fa;
}

.policyContainer {
    max-width: 800px; 
    margin :      0 auto; 
	 text-align: left;
}

.policyContainer h2 {
   font-size :        2.5rem;
   color: #2c3e50;
   margin-bottom: 1.5rem;
        font-weight: 700;


}

.policyContainer p {
    font-size: 1.1rem;
   margin-bottom :   1.5rem;
   color: #7f8c8d;
  line-height  :       1.7;
}@media (max-width: 768px) {
  .policyContainer h2 {
    font-size: 2rem;
  }

  .policyContainer p {
    font-size: 1rem;
  }

  .policySection {
    padding: 60px 1rem;
  }
}