* {


  margin: 0;
  padding : 0;
    box-sizing: border-box;
	}

:root {
    --primary-color: #1a3a52;
    --accent-color: #d4a574;
    --text-dark: #2c3e50;
    --text-light: #f8f9fa;
    --bg-light: #f5f6fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
}

html
{
    scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  color: var(--text-dark);

  background-color: var(--bg-white);

  line-height: 1.6;
}

.main-nav  
  {
  background-color: var(--primary-color);
   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 img {
    height: 64px;
   width: auto;
  filter: brightness(0) invert(1);
}

.nav-menu  
  {
	 display: flex;
                    list-style: none;
   gap: 3rem;
}

.nav-menu a {
  color: var(--text-light); 
	   text-decoration     :     none; 
	   font-weight     :  500; 
	    transition: color 0.3s ease; 
	    font-size: 1rem;
}

.nav-menu a:hover {
  color: var(--accent-color);
}

.burger-menu {
  display: none;
   flex-direction: column;
    background: none;
    border: none;
      cursor: pointer;
   padding: 0.5rem;
   gap: 0.35rem;
}

.burger-menu span {

   width: 25px;
    height: 3px;
  background-color: var(--text-light);
   transition: all 0.3s ease;
   display: block;
     }

.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #2d5a75 100%);
  color: var(--text-light);
  padding: 8rem 2rem;
  text-align: center;
    min-height: 60vh;
    display: flex;
  align-items: center;
  justify-content    :   center;
}

.hero-content h1
	{
         font-size: 3.5rem;
    margin-bottom: 1.5rem;
   font-weight: 700;
}

.hero-content p {
  font-size: 1.3rem;
   margin-bottom: 2rem;
    max-width: 700px;
  margin-left   :    auto;
  margin-right: auto;
          line-height: 1.8;
}

.cta-button {
	display: inline-block;
  background-color: var(--accent-color);
  color: var(--primary-color);
	padding: 1rem 2.5rem;
  border-radius: 6px;
   text-decoration: none;
  font-weight: 600;
   transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
	
}

.cta-button:hover {
   background-color: transparent;
  color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 165, 116, 0.3);
}

.section-container 
 {
    padding: 0 2rem;
   	max-width:       1200px;
       margin  :     0 auto;
}

.expertise-section  {
  padding: 5rem 2rem;
  background-color: var(--bg-light);

}

.expertise-section h2 {
   text-align: center; 
   font-size : 2.5rem; 
    margin-bottom: 3rem; 
  color: var(--primary-color);
}

.expertise-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap     :   2rem;
}  

.expertise-card {
  background: var(--bg-white);
    border-radius: 8px;
   overflow: hidden;
  box-shadow: var(--shadow);
    transition :all 0.3s ease;
  border: 1px solid var(--border-color);
}

.expertise-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-8px);
}

.card-image     {
   width: 100%;
		 height: 200px;
  object-fit    :   cover;
}

.expertise-card h3 {
    padding   :        1.5rem 1.5rem 0.5rem;
  font-size: 1.4rem;
  color: var(--primary-color);
}

.expertise-card p {
    padding: 0 1.5rem 1.5rem;
	  font-size: 0.95rem;
		color: #555;
	  line-height: 1.7;
}

.merger-focus {
    padding: 5rem 2rem;
  background-color: var(--bg-white);
}

.merger-content {
   display   :     grid;
    grid-template-columns    :       1fr 1fr;
   gap: 4rem;
    align-items: center;
	
}

.merger-focus h2 {
   font-size: 2.2rem;
  color: var(--primary-color);
   margin-bottom   :  1.5rem;
}

.merger-focus p {
   font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.merger-list {
   list-style: none;
	 margin: 1.5rem 0;
}

.merger-list li     {
   padding: 0.8rem 0;
               padding-left: 2rem;
  position  :     relative;
  font-size :    0.95rem;
}

.merger-list li:before
{

	  content: "✓";
    position    : absolute;
    left: 0;
  color: var(--accent-color);
	 font-weight: bold;
  font-size  :    1.2rem;

}

.section-image  
  {

	   width: 100%;
   height: auto;
    border-radius :       8px;
  box-shadow: var(--shadow);
     }

.strategy-section {

   padding: 5rem 2rem;
  background-color: var(--bg-light);


}

.strategy-section h2 {
  text-align: center;
	 font-size: 2.5rem;
               margin-bottom: 3rem;
  color: var(--primary-color);
}

.strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap  :2rem;
}

.strategy-item   {


  background: var(--bg-white);
               padding: 2rem;
    border-radius: 8px;
  border-left: 4px solid var(--accent-color);
  box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.strategy-item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateX(8px);
}

.strategy-header h3 {
  color: var(--primary-color);
	font-size :    1.3rem;
   margin-bottom    :     1rem;
}

.strategy-item p {
    font-size    :  0.95rem;
    color: #666;
  line-height: 1.7;
}

.results-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, rgba(26, 58, 82, 0.05) 0%, rgba(212, 165, 116, 0.05) 100%);
}

.results-section h2 {
    font-size: 2.5rem; 
	  color: var(--primary-color); 
	   margin-bottom: 3rem; 
	   text-align: center;
}

.results-content {
   display: grid;

    grid-template-columns: 1fr 1fr;

    gap  : 4rem;

  align-items:    center;
}

.results-text p {
   font-size: 1rem;
    margin-bottom: 2rem;
   line-height: 1.8;
               color     :    #555;
}

.stats-grid {
	   display: grid;

	  grid-template-columns: repeat(3, 1fr);

		 gap: 1.5rem;
     }

.stat-box  
  {
  background: var(--bg-white);

    padding     :  2rem;

   border-radius: 8px;

	text-align: center;

  box-shadow: var(--shadow);

  border-top: 3px solid var(--accent-color);
}

.stat-number     {


  font-size: 2rem;
   font-weight: 700;
  color: var(--primary-color);
	 margin-bottom: 0.5rem;
	}

.stat-label {

	    font-size: 0.9rem;
   color: #999;
   text-transform: uppercase;
  letter-spacing: 0.5px;


}

.cta-section     {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, #2d5a75 100%);
  color: var(--text-light);
    text-align    :    center;
}

.cta-box 
 {
	max-width: 800px;
  margin: 0 auto;
	
}

.cta-box h2 {
  font-size: 2.5rem;
               margin-bottom:1.5rem;
}

.cta-box p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
                    line-height: 1.8;
}

.cta-button-large {
  display  :       inline-block; 
  background-color: var(--accent-color); 
  color: var(--primary-color); 
    padding: 1.2rem 3rem; 
	border-radius: 6px; 
    text-decoration :     none; 
   font-weight: 700; 
    font-size  :   1.1rem; 
    transition: all 0.3s ease; 
  border: 2px solid var(--accent-color);
}

.cta-button-large:hover {
     background-color: transparent;
  color: var(--accent-color);
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
}

.contact-section {
    padding   :    5rem 2rem;
  background-color: var(--bg-light);
}

.contact-section h2 {
	 text-align: center;
	font-size: 2.5rem;
   margin-bottom: 3rem;
  color: var(--primary-color);}

.contact-wrapper {
     display: grid;
	 grid-template-columns: 2fr 1fr;
   gap: 3rem;
    max-width: 1000px;
   margin: 0 auto;}

.contact-form {
     background: var(--bg-white);
    padding    :2.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow);

     }

.form-group {
   margin-bottom: 1.5rem;
}

.form-group label {
   display    :       block;
   margin-bottom :0.5rem;
  font-weight:  600;
  color: var(--primary-color);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
	  padding: 0.8rem;
	  border: 1px solid var(--border-color);
	   border-radius: 4px;
	  font-size: 0.95rem;
			font-family: inherit;
	    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline   :  none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
        background-color: #fefef8;
}

.submit-button {
   width: 100%;
   padding: 1rem;
  background-color: var(--primary-color);
  color: var(--text-light);
   border: none;
    border-radius: 4px;
               font-size: 1rem;
  font-weight: 600;
  cursor   :       pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.contact-info {
  background: var(--bg-white);
    padding:        2.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent-color);
}

.contact-info h3 {
	  color: var(--primary-color);
         margin-bottom  :  1.5rem;
  font-size: 1.3rem;
	}

.contact-info p {
	margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height    :   1.7;
}

.main-footer {

	  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 3rem 2rem 1.5rem;


}

.footer-container 
 {
    max-width: 1200px;
    margin  :       0 auto;
}

.footer-content {
   display: grid;
  grid-template-columns: 1fr 1.5fr 1.5fr;
               gap: 3rem;
  margin-bottom: 2rem;
} 

.footer-logo    {
   height: 86px;
    width: auto;
    display:   block;
   margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-info p{
	 margin-bottom: 0.5rem;
	 font-size: 0.95rem;
  line-height: 1.6;
}

.footer-links h4 {
        margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-links ul {


    list-style    :       none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
   text-decoration: none;
  font-size: 0.95rem;
   transition: color 0.3s ease;
}

.footer-links 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;
			font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);


}

.nav-menu.active

{
   display: flex;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--primary-color);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        display: none;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .nav-menu li {
        padding: 0.8rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero {
        padding: 4rem 2rem;
        min-height: auto;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .merger-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .results-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .strategy-grid {
        grid-template-columns: 1fr;
    }

    .expertise-section,
    .merger-focus,
    .strategy-section,
    .results-section,
    .cta-section,
    .contact-section {
        padding: 3rem 1.5rem;
    }

    .expertise-section h2,
    .strategy-section h2,
    .results-section h2,
    .contact-section h2,
    .cta-box h2 {
        font-size: 2rem;
    }

    .cta-button,
    .cta-button-large {
        padding: 0.8rem 2rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .nav-logo img {
        height: 50px;
    }

    .nav-menu {
        top: 60px;
    }

    .hero {
        padding: 3rem 1rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .expertise-card h3 {
        font-size: 1.1rem;
    }

    .contact-form,
    .contact-info {
        padding: 1.5rem;
    }

    .footer-logo {
        height: 70px;
    }

    .stat-number {
        font-size: 1.5rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #1a3a52 0%, #2d5a75 100%);
  color: var(--text-light);
   padding: 6rem 2rem;
   text-align: center;
   min-height: 50vh;
	display: flex;
  align-items :      center;
          justify-content  :     center;
}

.services-hero .hero-content h1 {
   font-size  :      3rem;
  margin-bottom: 1rem;
  font-weight: 700; 
	
}

.services-hero .hero-content p 
 {
    font-size: 1.2rem;
  max-width: 700px;
   margin-left  : auto;
  margin-right  :     auto;
   line-height: 1.8;
}

.services-overview {
      padding: 5rem 2rem;
  background-color: var(--bg-white);
}

.services-overview h2 
 {
                    text-align: center;
  font-size: 2.5rem;
	 margin-bottom: 3rem;
  color: var(--primary-color);


}


.services-grid		{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem; 
	
}

.service-card {
  background: var(--bg-light);
       padding: 2.5rem;
  border-radius    :    8px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
         transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-8px);
  border-color: var(--accent-color);
}

.service-number


{
   font-size: 3rem;
  font-weight  :     700;
  color: var(--accent-color);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.service-card h3 {

	   font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom:    1rem; 
	

} 

.service-card p {


   font-size: 0.95rem;
    color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;


}

.service-features {
   list-style :        none;
  margin: 0; 

}

.service-features li {
    padding: 0.6rem 0;
  padding-left: 1.8rem;
    position: relative;
    font-size: 0.85rem;
   color: #666;
}

.service-features li:before {
  content: "→";
    position: absolute;
    left:    0;
  color: var(--accent-color);
  font-weight: bold;
}

.detailed-services {
    padding: 5rem 2rem;
  background-color: var(--bg-light);

}

.detailed-services h2 {
	text-align: center;
   font-size: 2.5rem;
                    margin-bottom: 3rem;
  color: var(--primary-color);
}

.program-tabs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 2rem;
}

.program-item
{
  background: var(--bg-white);
      border-radius: 8px;
	overflow: hidden;
  box-shadow: var(--shadow);
    transition: all 0.3s ease;
  display: flex;
    flex-direction: column;
}

.program-item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-8px);
}


.program-header
	{
  background: linear-gradient(135deg, var(--primary-color) 0%, #2d5a75 100%);
  color: var(--text-light);
    padding: 2rem;
  display: flex;
  justify-content:    space-between;
   align-items: flex-start;
}

.program-header h3 {
    font-size  :       1.3rem;
    margin     : 0;
    flex  :1;
}

.price     {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
	white-space:      nowrap;
   margin-left: 1rem;
}

.program-image {
    height  :     220px; 
  width: 100%; 
	object-fit: cover;
}

.program-content {
	    padding  : 2rem;
   flex    :1;
}

.program-content p {
	color: #555;
	font-size     :   0.95rem;
   line-height: 1.7;
  margin-bottom  :1.5rem;
}

.program-content h4 {
  color: var(--primary-color);
   font-size: 0.95rem;
    margin-bottom: 1rem;
               text-transform    :       uppercase;
       letter-spacing: 0.5px;
}

.program-content ul	{
  list-style: none;
	 margin: 0;
}

.program-content ul li {
    padding: 0.5rem 0;
   padding-left: 1.5rem;
  position: relative;
	 font-size: 0.9rem;
    color: #666;
}

.program-content ul li:before {
  content: "✓";
	 position: absolute;
    left: 0;
  color: var(--accent-color);
   font-weight: bold;


}

.team-section
{
      padding :        5rem 2rem;
	  background-color: var(--bg-white);
	   text-align: center;
}

.team-section h2 {
   font-size: 2.5rem;
  color: var(--primary-color);
   margin-bottom: 1rem;
}

.team-intro {
        font-size: 1.1rem;

	    color  :       #555;

		max-width  :  600px;

	   margin: 0 auto 3rem;

	  line-height   :  1.8;
}  

.team-highlights {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                    gap: 2rem;
	max-width: 900px;
    margin    : 0 auto;
}

.team-highlight {
  background: var(--bg-light);
     padding: 2rem;
    border-radius: 8px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--accent-color);


}

.highlight-number {
	 font-size:    2.5rem;
    font-weight: 700;
  color: var(--primary-color);
   margin-bottom: 0.5rem;
}

.team-highlight p {

	  font-size: 0.95rem;
    color: #666;
    line-height: 1.6;


}

.process-section {
   padding: 5rem 2rem;
  background: linear-gradient(135deg, rgba(26, 58, 82, 0.05) 0%, rgba(212, 165, 116, 0.05) 100%);
}


.process-section h2 {
   text-align: center;
	font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 3rem;
}

.process-flow {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 2rem;
   max-width: 1200px;
   margin: 0 auto;
}

.process-step {
  background: var(--bg-white);
       padding   :   2rem;
       border-radius: 8px;
     box-shadow: var(--shadow);
           text-align: center;
       transition  :        all 0.3s ease;
   	border: 2px solid transparent;
}

.process-step:hover {
  border-color: var(--accent-color);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.step-number {
                    width: 50px;
         height: 50px;
  background: var(--accent-color);
  color: var(--primary-color);
	 border-radius: 50%;
      display   :flex;
   align-items: center;
    justify-content: center;
	font-size: 1.5rem;
  font-weight: 700;
    margin     :0 auto 1rem;

}

.process-step h3 {
  font-size: 1.1rem;
  color: var(--primary-color);
 margin-bottom: 0.8rem;
}

.process-step p {
    font-size: 0.9rem;
          color: #666;
   line-height: 1.6;
}

.testimonials-section {
  padding: 5rem 2rem; 
  background-color: var(--bg-white);
}

.testimonials-section h2 {
  text-align: center;

	  font-size: 2.5rem;

	  color: var(--primary-color);

	    margin-bottom: 3rem;
}

.testimonials-grid  
  {
	display     :      grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
    max-width: 1000px;
  margin: 0 auto;
}

.testimonial  {
	  background: var(--bg-light);
    padding: 2.5rem;
   border-radius: 8px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent-color);
    transition    :        all 0.3s ease;
	}

.testimonial:hover {
  box-shadow: var(--shadow-hover);

  transform: translateX(8px);
}

.testimonial-text {


   font-size: 0.95rem;
   color: #555;
    line-height: 1.8;
 margin-bottom   :  1.5rem;
  font-style: italic;}

.testimonial-author {
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
}

.testimonial-author strong {
  display: block;
  color: var(--primary-color);
	font-size: 0.95rem;
   margin-bottom: 0.3rem;
}

.testimonial-author span {
   font-size: 0.8rem;
  color: #999;
}


.thank-you-hero 
 {

  background: linear-gradient(135deg, #1a3a52 0%, #2d5a75 100%);
  color: var(--text-light);
   padding    :      8rem 2rem;
    text-align: center;
  min-height: 60vh;
   display: flex;
  align-items: center;
    justify-content: center;
}

.thank-you-content {
   max-width: 700px;
   margin: 0 auto;
}

.success-icon {
     margin-bottom: 2rem;
   animation: scaleIn 0.6s ease-out;
}@keyframes scaleIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thank-you-hero h1 {
   font-size: 3.5rem;
	margin-bottom: 1rem;
                    font-weight: 700;
}

.main-message {


    font-size: 1.4rem;
   margin-bottom: 1rem;
   font-weight: 600;

}


.sub-message {
  font-size: 1.1rem;

    opacity: 0.95;

  line-height: 1.8;
}

.next-steps-section {
       padding  :    5rem 2rem;
  background-color: var(--bg-light);
	}  

.next-steps-section h2 {
	 text-align: center;
   font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 3rem;
}

.next-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap    :        2rem;
   max-width: 1000px;
  margin     :   0 auto;
}

.step-card {
  background: var(--bg-white);
  padding:  2.5rem;
    border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 3px solid var(--accent-color);
   transition:       all 0.3s ease;
}

.step-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-8px);
}

.step-icon {
  display: flex;
  justify-content: center;
          margin-bottom     : 1.5rem; 

}

.step-card h3 {


  font-size  :       1.3rem;
	  color: var(--primary-color);
	  margin-bottom   :      1rem;
}

.step-card p {
   font-size: 0.95rem;
  color: #666;
    line-height  :      1.7;
}

.contact-alternatives {
    padding    :5rem 2rem;
  background-color: var(--bg-white);

}

.contact-alternatives h2 {
   text-align: center;
   font-size: 2.5rem;
  color: var(--primary-color);
	margin-bottom: 3rem;
}

.alternatives-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.alternative-box		{
  background: linear-gradient(135deg, var(--primary-color) 0%, #2d5a75 100%);
  color: var(--text-light);
	padding: 3rem;
    border-radius: 8px;
   text-align: center;
  box-shadow: var(--shadow);
          transition     :       all 0.3s ease;
}

.alternative-box:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
	}

.alternative-box h3 {
    font-size: 1.4rem;
   margin-bottom: 1rem;
}

.contact-detail {


    font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
	}

.hours,
.address {
    font-size     :   0.9rem;
   opacity   :       0.9;
}

.explore-section {
	    padding     :       5rem 2rem;
	  background: linear-gradient(135deg, rgba(26, 58, 82, 0.05) 0%, rgba(212, 165, 116, 0.05) 100%);
	   text-align: center;
     }


.explore-section h2 {
      font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
	}

.explore-section p	{
    font-size :      1.1rem;
	    color  : #555;
	  max-width     :     600px;
	    margin: 0 auto 2.5rem;
	    line-height: 1.8;
}

.explore-buttons {
   display: flex;
   gap: 1.5rem;
    justify-content: center;
      flex-wrap: wrap;
}

.explore-button {
	display: inline-block;
   padding  :       1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
	font-weight     :       600;
  transition: all 0.3s ease;
	 font-size: 1rem; 

}

.explore-button {
     background-color: var(--primary-color);
  color: var(--text-light);
  border: 2px solid var(--primary-color);}

.explore-button:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.explore-button.secondary {
 background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.explore-button.secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
  border-color: var(--primary-color);


}@media (max-width: 768px) {
    .services-hero .hero-content h1 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .program-tabs {
        grid-template-columns: 1fr;
    }

    .process-flow {
        grid-template-columns: repeat(2, 1fr);
    }

    .thank-you-hero h1 {
        font-size: 2.5rem;
    }

    .explore-buttons {
        flex-direction: column;
    }

    .explore-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .services-overview,
    .detailed-services,
    .team-section,
    .process-section,
    .testimonials-section,
    .contact-alternatives,
    .next-steps-section,
    .explore-section {
        padding: 3rem 1.5rem;
    }

    .program-header {
        flex-direction: column;
    }

    .price {
        margin-left: 0;
        margin-top: 1rem;
    }

    .process-flow {
        grid-template-columns: 1fr;
    }

    .thank-you-hero {
        padding: 4rem 1.5rem;
    }

    .thank-you-hero h1 {
        font-size: 2rem;
    }

    .main-message {
        font-size: 1.2rem;
    }

    .sub-message {
        font-size: 1rem;
    }
}.policy-section
	{
    padding: 80px 2rem; 
	  background-color: var(--bg-light); 
	    min-height:   70vh;
}

.policy-container {
	 max-width    :   900px;
    margin: 0 auto;
	text-align: left;
  background-color: var(--bg-white);
  padding: 3rem;
   border-radius     :        8px;
  box-shadow: var(--shadow); 

}

.policy-container h1 {
    font-size: 2.8rem;
     color: var(--primary-color);
   	 margin-bottom: 2rem;
      font-weight    :   700;
     border-bottom: 3px solid var(--accent-color);
     padding-bottom: 1rem;
     }

.policy-container h2 {

	   font-size:      2rem;
  color: var(--primary-color);
  margin-top: 2.5rem;
   margin-bottom :     1.2rem;
   font-weight: 700;


}

.policy-container h3   {
    font-size: 1.4rem;
    color: #2d5a75;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
   font-weight: 600;
}

.policy-container p {
    color: #555;
    margin-bottom :   1.5rem;
	line-height   :1.8;
    font-size: 1rem;
  text-align: justify;
	}

.policy-container ul

{
   margin  :       1.5rem 0;
	 margin-left   : 2rem;
   list-style-type: disc;


}

.policy-container ul li
{
    margin-bottom: 0.8rem;
  color: #555;
                    line-height: 1.7;
}@media (max-width: 1024px) {
    .policy-container {
        padding: 2.5rem;
    }

    .policy-container h1 {
        font-size: 2.4rem;
    }

    .policy-container h2 {
        font-size: 1.8rem;
    }

    .policy-container h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .policy-section {
        padding: 60px 1rem;
    }

    .policy-container {
        padding: 2rem;
        border-radius: 6px;
    }

    .policy-container h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        padding-bottom: 0.8rem;
    }

    .policy-container h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .policy-container h3 {
        font-size: 1.1rem;
        margin-top: 1.2rem;
        margin-bottom: 0.6rem;
    }

    .policy-container p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }

    .policy-container ul {
        margin: 1.2rem 0;
        margin-left: 1.5rem;
    }

    .policy-container ul li {
        margin-bottom: 0.6rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 40px 0.75rem;
        min-height: auto;
    }

    .policy-container {
        padding: 1.5rem;
        margin: 0 auto;
    }

    .policy-container h1 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
        padding-bottom: 0.6rem;
    }

    .policy-container h2 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policy-container h3 {
        font-size: 1rem;
        margin-top: 1rem;
        margin-bottom: 0.5rem;
    }

    .policy-container p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        text-align: left;
    }

    .policy-container ul {
        margin: 1rem 0;
        margin-left: 1.2rem;
    }

    .policy-container ul li {
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }
}