* {
  margin: 0;
	    padding     :    0;
	  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height: 1.6;
    color: #2c3e50;
  background: #ffffff;
}

.navbar {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
               padding: 1rem 2rem;
    position: sticky;
  top: 0;
   z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.navbar-container {
	max-width: 1200px;
   margin: 0 auto;
        display    : flex;
   justify-content: space-between;
   align-items    :      center;


}

.navbar-logo {
   text-decoration: none;
    display: flex;
   align-items: center;
}

.logo-img {
   height: 64px;
   width: auto;
  filter: brightness(0) invert(1);
}

.nav-menu {


   display: flex;
  list-style: none;
    gap: 2rem;}

.nav-item a {
    color: #ffffff;
   text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease, text-shadow 0.3s ease;
                    font-size: 1rem;
}

.nav-item a:hover {
   color: #ffc107;
  text-shadow: 0 0 8px rgba(255, 193, 7, 0.3);


}

.nav-hamburger {
    display: none; 
	   cursor     :pointer; 
	   flex-direction: column; 
	   gap     : 5px;
}

.nav-hamburger img {
	width: 28px;
      height:        28px;
  filter: brightness(0) invert(1);
}@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-item a {
        display: block;
        padding: 1rem 2rem;
    }

    .nav-hamburger {
        display: flex;
    }
}.hero-banner {
	max-width: 1200px;
					margin: 0 auto;
		padding: 4rem 2rem;
    display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
   align-items  :  center;
}

.hero-content h1 {
     font-size: 3rem; 
		 margin-bottom: 1.5rem; 
		color: #1e3c72; 
	  line-height: 1.2;}

.hero-content p     {
               font-size: 1.1rem;

        color: #555;

    margin-bottom: 2rem;

  line-height: 1.8;
}

.hero-cta {
   display: inline-block;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  padding: 0.9rem 2rem;
  border-radius:        50px;
        text-decoration: none;
    font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(30, 60, 114, 0.3);
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 60, 114, 0.4);
}

.hero-visual img {
   width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}@media (max-width: 768px) {
    .hero-banner {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
}.services-overview {
	 background: #f8f9fa;
    padding: 4rem 2rem;


}

.section-header
{
    max-width: 1200px;
    margin   :   0 auto 3rem;
   text-align: center;

}

.section-header h2 {
    font-size: 2.5rem;
	color: #1e3c72;
   margin-bottom: 1rem;
}

.section-header p {
   font-size: 1.1rem; 
	  color: #666;
}

.services-grid {
    max-width   :     1200px;
    margin  :      0 auto;
	display:      grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap    :  2.5rem;
}

.service-card{
	background :      white;
  border-radius  : 8px;
	overflow: hidden;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-card img   {
    width: 100%;
   height: 220px;
    object-fit: cover;


}

.service-card h3 {
  font-size :       1.3rem;
  color:     #1e3c72;
   padding: 1.5rem 1.5rem 0.5rem;
}

.service-card p {
    color: #666;
  line-height: 1.7;
  font-size    :      0.95rem;
  padding: 0 1.5rem 1.5rem;
}

.coaching-formats {
   max-width: 1200px;
		margin: 0 auto;
    padding: 4rem 2rem;
}

.coaching-formats h2 {

	    font-size: 2.5rem;
	color: #1e3c72;
    text-align: center;
  margin-bottom  :        3rem;
}

.formats-container {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap  :     2rem;
}

.format-block {
   padding: 2rem;
    border-radius: 10px;
  transition: all 0.3s ease;
}

.alt-design-1 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
	border-left :    5px solid #ffc107;
}

.alt-design-1:hover {
  transform: scale(1.05);
     box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.alt-design-2 {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    border-top: 5px solid #00d4ff;
}

.alt-design-2:hover

{
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(245, 87, 108, 0.3);

}

.alt-design-3 {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); 
   color: white; 
    border-right     : 5px solid #ffc107;
}

.alt-design-3:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(79, 172, 254, 0.3);
}

.format-block h3 {
   font-size: 1.4rem;
  margin-bottom  : 1rem;
}

.format-block p     {
	  font-size: 0.95rem;
   line-height     :    1.7;
	margin-bottom: 1.5rem;
}

.format-highlight

{
	  background: rgba(255, 255, 255, 0.2);
   padding: 0.8rem;
 border-radius: 5px;
   font-weight: 600;
  text-align: center;
	}

.success-stories
{
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
   padding: 4rem 2rem;
}

.stories-header {
   max-width: 1200px;
	 margin: 0 auto 3rem;
   text-align: center;
	}

.stories-header h2

{
 font-size: 2.5rem;
  color: #1e3c72;
   margin-bottom: 1rem;
}

.stories-header p {
  font-size: 1.1rem;
		color: #666;
	
}

.story-showcase {
    max-width:        1200px;

	    margin    :     0 auto;

	    display:  flex;

	         flex-direction: column;

	  gap: 3rem;
}

.story-item


{
   display: grid;
	    grid-template-columns: 1fr 1fr;
	  gap: 2.5rem;
	    align-items: center;
	  background   :    white;
	  border-radius: 10px;
	    overflow: hidden;
	  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.story-item.image-right {
		grid-template-columns: 1fr 1fr;}

.story-item img{


  width: 100%;
    height: 100%;
    object-fit: cover;}

.story-item.image-left img {
   order: -1;
}

.story-text  {
   padding:  2.5rem;
}

.story-text h3 {
    font-size   :1.6rem;
   color: #1e3c72;
	margin-bottom: 1rem;
} 

.story-text p {


    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;


}

.story-stats {

	  display: flex;
  gap: 1.5rem;
    flex-wrap: wrap;
	}

.story-stats span {

  background: #f0f0f0;
  padding  : 0.6rem 1rem;
    border-radius: 5px;
   font-weight: 600;
   color: #1e3c72;}@media (max-width: 768px) {
    .story-item {
        grid-template-columns: 1fr;
    }

    .story-item img {
        height: 250px;
    }
}.expert-insights {
    max-width: 1200px; 
	   margin:   0 auto; 
	 padding: 4rem 2rem;
}

.expert-insights h2 {


    font-size: 2.5rem;
	 color: #1e3c72;
   text-align: center;
   margin-bottom: 3rem;}

.insights-grid {
	 display:        grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap:       2rem;
}

.insight-card {
        padding: 2rem;
    background: white;
	border-radius: 8px;
   border-left     : 4px solid #1e3c72;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
	 transition: all 0.3s ease;
}

.insight-card:hover

{
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transform: translateX(5px);
}

.insight-number {
    font-size: 2.5rem;
  font-weight: 700;
   color  :   #667eea;
  margin-bottom: 1rem; 

}

.insight-card h3 {
    font-size: 1.2rem;
    color: #1e3c72;
    margin-bottom: 1rem;
}

.insight-card p {
	color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
}

.cta-conference 
 {
  background: url('gallery/market_entry_strategy_workshop.webp') center/cover;
    background-attachment    :fixed;
  padding   :    5rem 2rem;
               position: relative;
   text-align: center;
}

.cta-overlay {
  background: rgba(30, 60, 114, 0.85);
     padding: 3rem;
   	 border-radius: 10px;
     max-width: 700px;
     margin     :   0 auto;
}

.cta-overlay h2 {
	font-size: 2rem;
    color: white;
   margin-bottom: 1rem;
	
}

.cta-overlay p {
  color: #e0e0e0;
    font-size    :        1.1rem;
   margin-bottom: 2rem;
  line-height: 1.8;
}

.cta-button {
    display: inline-block;
     background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
      color: #1e3c72;
     padding: 1rem 2.5rem;
      border-radius: 50px;
    text-decoration: none;
   	font-weight    :       700;
      font-size: 1.1rem;
       transition: all 0.3s ease;
     box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
}

.cta-button:hover  {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255, 152, 0, 0.5);
}

#contact {
       padding: 4rem 2rem;

	   background  :  #f8f9fa;
} 

.contact-wrapper {


  max-width: 700px;
    margin: 0 auto;

}

.contact-wrapper h2   {
	  font-size: 2rem;
    color: #1e3c72;
	 text-align: center;
   margin-bottom: 0.5rem;
	}

.contact-wrapper > p
{
      text-align: center;
  color: #666;
    margin-bottom: 2rem;
}

.contact-form  
  {
  background: white;
	padding: 2rem;
   border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.form-group     {
   margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
   margin-bottom: 0.5rem;
	color: #1e3c72;
	 font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
	  width:    100%;
     padding: 0.9rem;
   	border: 2px solid #e0e0e0;
     border-radius: 5px;
      font-size: 1rem;
   	 font-family: inherit;
   	 transition: all 0.3s ease;
	}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;
    border-color: #1e3c72;
  box-shadow: 0 0 0 3px rgba(30, 60, 114, 0.1);
}

.form-submit {
      width: 100%;
               padding     : 1rem;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
   border: none;
    border-radius     :       5px;
   font-size: 1rem;
   font-weight: 700;
     cursor    :pointer;
  transition    :     all 0.3s ease;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(30, 60, 114, 0.3);
}

.footer-section {

	    background: #1a1a1a;
  color: #e0e0e0;
    padding: 3rem 2rem 1rem;
	}

.footer-container {
  max-width: 1200px;
    margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap     :  2rem;
    margin-bottom    :        2rem;
}

.footer-brand 
 {
   display: flex;
    flex-direction: column;
}

.footer-logo {
   height: 86px; 
  width: auto; 
       margin-bottom: 1rem; 
  filter: brightness(0) invert(1);
}

.footer-brand p {
   font-size: 0.95rem;
          line-height: 1.6;
			color: #b0b0b0;
}

.footer-nav h4,
.footer-contact h4     {


   color :white;
   margin-bottom: 1rem;
  font-size: 1.1rem; 


}

.footer-nav ul {
	 list-style: none;
     }

.footer-nav ul li {
   margin-bottom    :     0.8rem;
}


.footer-nav a {
	   color: #b0b0b0;
   text-decoration: none;
    transition: color 0.3s ease;}

.footer-nav a:hover {
   color: #ffc107;
}

.footer-contact p {
	   margin-bottom: 0.8rem;
   color    :    #b0b0b0;
   font-size :     0.95rem;

}

.footer-bottom {
	border-top: 1px solid #333;
   padding-top: 1.5rem;
    text-align: center;
  color: #888;
  font-size: 0.9rem;
}

.services-hero {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
   color: white;
   padding   :3rem 2rem;
   text-align     :     center;
     min-height: 250px;
    display:      flex;
   align-items    :     center;
   justify-content: center;
}

.services-hero-content h1 {
   font-size: 2.8rem;
    margin-bottom: 1rem;
    line-height   :    1.2;
} 

.services-hero-content p {
   font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 1.8rem;
    }

    .services-hero-content p {
        font-size: 1rem;
    }
}.services-detailed {
  padding: 4rem 2rem;
}

.services-container {

    max-width: 1200px;
      margin: 0 auto;}

.service-full-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap  :       3rem;
      align-items: center;
     margin-bottom: 4rem;
  background   : #f8f9fa;
    border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.service-full-card.reversed {
  direction: rtl;
}

.service-full-card.reversed > * {
   direction: ltr;
}

.service-image-wrapper {
		height: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.service-image-wrapper img {
	 width: 100%;
   height  :    100%;
	 object-fit: cover;
  transition: transform 0.4s ease;
}

.service-full-card:hover .service-image-wrapper img {
  transform: scale(1.05);
}

.service-description	{
  padding: 2.5rem;
}

.service-description h2  {
               font-size: 2rem;
    color: #1e3c72;
   margin-bottom: 1rem;
}

.service-description p {
  color:     #666;

	  margin-bottom: 1.5rem;

	  line-height: 1.8;

}

.service-features 
 {

	  list-style: none;
   margin-bottom: 1.5rem;
	}

.service-features li {
	padding: 0.5rem 0 0.5rem 1.8rem;
	 position  :      relative;
   color   :#555;
                    margin-bottom: 0.5rem;
}



.service-features li:before 
 {
  content: "✓";
    position: absolute;
   left  :   0;
  color: #2ecc71;
          font-weight: bold;
   font-size: 1.2rem;
}

.service-highlight-box {
  background: white;
       padding: 1.5rem;
	border-left: 4px solid #667eea;
    border-radius: 5px;
}

.service-highlight-box p 
 {
  margin-bottom  :        0.5rem;
   font-size: 0.95rem;
	color: #555;
}

.service-highlight-box p:last-child {
  margin-bottom: 0;
}@media (max-width: 768px) {
    .service-full-card {
        grid-template-columns: 1fr;
        margin-bottom: 2rem;
    }

    .service-full-card.reversed {
        direction: ltr;
    }

    .service-description {
        padding: 1.5rem;
    }

    .service-description h2 {
        font-size: 1.5rem;
    }
}.service-packages {
    background:      #f8f9fa;
    padding: 4rem 2rem;
}

.service-packages h2 {


    font-size: 2.5rem;
    color: #1e3c72;
   text-align :  center;
 margin-bottom     :      0.5rem;}

.packages-intro {
    text-align: center;
    color: #666;
	margin-bottom: 3rem;
  font-size     :       1.1rem;
}


.packages-grid

{
                    max-width: 1200px;
   margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap   :      2rem;
}

.package-card {
    background :    white;
    border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
   display    :   flex;
      flex-direction: column;
    transition: all 0.3s ease;
   position: relative;}

.package-card:hover {
	  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);


}

.package-card.featured {
  border: 2px solid #667eea;
  transform: scale(1.02);
}


.package-card.featured:hover {

	  transform: scale(1.04) translateY(-8px);}

.package-badge {
   position: absolute;
 top: 15px;
    right: 15px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
   padding: 0.4rem 0.9rem;
		border-radius: 20px;
	font-size: 0.8rem;
  font-weight: 600;
}

.package-header {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);

	  padding: 2rem;

	    border-bottom: 1px solid #e0e0e0; 

}

.package-header h3 {
    font-size: 1.4rem;
   color: #1e3c72;
	 margin-bottom: 0.8rem;
}

.package-price {
      font-size: 1.8rem;
   color: #667eea;
  font-weight :    700;

}

.package-body {
      padding: 2rem;

	  flex-grow     :    1;
}

.package-body p {
  color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.package-body ul {
  list-style: none;
}

.package-body ul li {
    padding: 0.6rem 0 0.6rem 1.8rem;

    position: relative;

    color: #555;

   margin-bottom: 0.5rem;

	font-size: 0.9rem;
}

.package-body ul li:before {
  content: "•";
   position: absolute;
    left: 0;
   color  :#2ecc71;
   font-weight: bold;
   font-size: 1.5rem;
   line-height: 0.7;
}

.package-footer {
	  padding: 2rem;
   border-top: 1px solid #e0e0e0;

}

.package-btn {

   display: block;
	 text-align: center;
  padding: 0.9rem 1.5rem;
    background    :  #e8e8e8;
    color: #1e3c72;
   text-decoration    :none;
   border-radius: 5px;
   font-weight: 600;
	 transition   :     all 0.3s ease;

}

.package-btn:hover    {


    background:   #d0d0d0;
	}  

.package-btn.featured-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                    color: white;
}

.package-btn.featured-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(102, 126, 234, 0.3); 
	
}

.service-testimonials {
                    max-width: 1200px;
   margin: 0 auto;
               padding: 4rem 2rem; 
	
}

.service-testimonials h2{

	    font-size: 2.5rem;
  color: #1e3c72;
        text-align: center;
                    margin-bottom: 3rem;


}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
                    background: white;
   padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
   border-top: 4px solid #667eea;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.testimonial-text {
   font-size     :       0.95rem;
	font-style: italic;
  color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    color   :   #1e3c72;
    font-weight: 600;
   font-size: 0.9rem;
}

.service-faq     {
   background: #f8f9fa;
  padding: 4rem 2rem;
}

.service-faq h2 {
  font-size: 2.5rem;
      color: #1e3c72;
    text-align: center;
   margin-bottom: 3rem;
}

.faq-container {
   max-width :      800px; 
	  margin: 0 auto;
}

.faq-item

{

	   background: white;
      margin-bottom: 1rem;
    border-radius   :    8px;
         overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);

}

.faq-question		{
	  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	  padding: 1.5rem;
	   cursor: pointer;
	    display: flex;
	   justify-content: space-between;
	    align-items: center;
	  transition    : all 0.3s ease;
	    user-select: none;


}

.faq-question:hover {
  background: linear-gradient(135deg, #e0e7f0 0%, #b3c0d9 100%);
}

.faq-question span {
  font-size: 1rem;
  font-weight: 600;
    color: #1e3c72;
}

.faq-icon {
	width   :     20px;
    height: 20px;
  transition: transform 0.3s ease;
  filter: brightness(0.3);


}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
   padding     :      1.5rem;
  background : white;
   max-height: 0;
   overflow: hidden;
      transition: all 0.3s ease;


}

.faq-item.active .faq-answer {
   max-height: 500px;
}

.faq-answer p {
    color   : #666;
       line-height: 1.8;
  margin-bottom:    0.5rem;
}

.faq-answer p:last-child  {

   margin-bottom: 0;}

.thankyou-section {
    min-height    :      100vh;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
   display: flex;
   align-items: center;
  justify-content: center;
}

.thankyou-container {
  background: white;
    border-radius: 15px;
  padding: 3rem;
		 max-width: 600px;
    width: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.thankyou-icon {
   margin-bottom: 2rem;
}

.thankyou-icon img {
  width: 80px;
    height: 80px;
  filter: drop-shadow(0 0 10px rgba(46, 204, 113, 0.4));
   animation: bounce-icon 0.6s ease;


}@keyframes bounce-icon {
    0% {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
    }
    100% {
        transform: scale(1) rotate(0);
        opacity: 1;
    }
}.thankyou-container h1 {
   font-size: 2.5rem;
  color: #1e3c72;
   margin-bottom  :      0.5rem;
}

.thankyou-subtitle
{
    font-size: 1.3rem;
   color     :#2ecc71;
    font-weight :      600;
	margin-bottom: 2rem;
}

.thankyou-message {
  background: #f0f8ff;
       padding: 1.5rem;
             border-radius: 8px;
      margin-bottom: 2rem;
     border-left   :  4px solid #3498db;
}

.thankyou-message p  {

        color: #555;
    line-height  :        1.8;
    margin-bottom     :        1rem;

}

.thankyou-message p:last-child {
  margin-bottom: 0;
}

.thankyou-next-steps {
  text-align: left;
	  margin: 2rem 0;
}

.thankyou-next-steps h3 {
  color: #1e3c72;
  margin-bottom: 1.5rem;
	font-size: 1.3rem; 

}

.steps-list {
    display: flex;

		flex-direction  :  column;

	    gap: 1.5rem;
}

.step {
       display: flex;
   gap  :      1rem;}

.step-number {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color     :       white;
   width :        40px;
   height: 40px;
   border-radius     :       50%;
  display: flex;
          align-items: center;
    justify-content:  center;
  font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
  color: #1e3c72;
   margin-bottom:      0.5rem;
		font-size: 1rem;
}

.step-content p {
	color: #666;

   font-size: 0.9rem;

  line-height: 1.6;
	}

.thankyou-contact-info {
  background    :#fff9e6;
   padding  :     1.5rem;
    border-radius: 8px;
    margin :     2rem 0;
    border-left: 4px solid #f39c12;
}

.thankyou-contact-info p {
	margin-bottom: 0.5rem;
    color: #555;
}

.contact-phone {
    font-size: 1.3rem;
      color: #1e3c72;
  margin: 0.8rem 0 !important;
}

.working-hours {

    font-size: 0.9rem;
    color: #888;
	}

.thankyou-buttons
{
    margin: 2rem 0;
   gap   :       1rem;
	 flex-wrap: wrap;
	justify-content   :    center;
    display   :      flex;
}

.btn-primary,
.btn-secondary {
   padding: 0.9rem 1.8rem;

   border-radius: 5px;

   text-decoration: none;

  font-weight: 600;

	transition :      all 0.3s ease;

  display    :inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);

   color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 60, 114, 0.3);
	}

.btn-secondary {
    background: #e8e8e8;
  color: #1e3c72;


}

.btn-secondary:hover {

	    background     :       #d0d0d0;}  

.thankyou-additional {


    background: #f0f0f0;
   padding: 1.5rem;
    border-radius: 8px;
  text-align: left;
	}

.thankyou-additional h3 {
   color: #1e3c72;
	margin-bottom: 0.8rem;
   font-size   :  1.1rem;
}

.thankyou-additional p

{
   color  :  #666;
  line-height: 1.7;
	 font-size: 0.95rem;
}@media (max-width: 768px) {
    .thankyou-container {
        padding: 2rem;
    }

    .thankyou-container h1 {
        font-size: 2rem;
    }

    .thankyou-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .step {
        gap: 1.2rem;
    }
}.policySection {
   padding: 80px 2rem;
  background: #f8f9fa;
    min-height: 70vh;
}

.policyContainer {
  max-width: 900px;
	   margin: 0 auto;
	   text-align     :     left;
	   background: white;
	   padding: 3rem;
	    border-radius: 10px;
	  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.policyContainer h1 {
   font-size: 2.8rem;
   color  :     #1e3c72;
  margin-bottom: 2rem;
    font-weight :  700;
   border-bottom: 3px solid #667eea;
    padding-bottom: 1rem; 

}

.policyContainer h2 {
          font-size: 1.8rem;
   color  :        #2c3e50;
       margin-top: 2.5rem;
   margin-bottom: 1rem;
    font-weight: 700;
   color: #1e3c72;
}

.policyContainer h3 {

   font-size  :       1.3rem;
  color   :        #34495e;
	 margin-top: 1.5rem;
   margin-bottom: 0.8rem;
  font-weight: 600;
     color: #2a5298;

}

.policyContainer p {
  color: #555;
   margin-bottom: 1.2rem;
   line-height: 1.8;
   font-size: 1rem;
    text-align: justify;
}

.policyContainer p strong 
 {
   color: #1e3c72;
   font-weight: 600;
}

.policyContainer ul {
    list-style: none;
      margin-bottom    :        1.5rem;
   margin-left: 1.5rem;
}

.policyContainer ul li {
    margin-bottom: 0.8rem;
    padding-left: 1.8rem;
    position     : relative;
	 color: #555;
        line-height: 1.6;
}

.policyContainer ul li:before {
  content: "•";
   position: absolute;
   left: 0;
  color  :    #667eea;
    font-weight: bold;
  font-size: 1.5rem;
  line-height: 0.7;
}

.policyContainer	{
   letter-spacing: 0.3px;
}

.policyContainer h2 {
  border-top: 1px solid #e0e0e0;
  padding-top: 1.5rem;
    margin-top: 3rem;
}

.policyContainer h2:first-of-type {
  margin-top: 0;
	 border-top: none;
 padding-top: 0;
}

.policyContainer > p:last-child {
	   margin-top: 2rem;
   padding-top: 1.5rem;
    border-top: 2px solid #667eea;
    font-style: italic;
   color: #666;}
@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
        min-height: auto;
    }

    .policyContainer {
        padding: 2rem 1.5rem;
        margin: 0 auto;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer h3 {
        font-size: 1.1rem;
        margin-top: 1rem;
        margin-bottom: 0.6rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        line-height: 1.7;
    }

    .policyContainer ul li {
        padding-left: 1.5rem;
        margin-bottom: 0.6rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
    }

    .policyContainer {
        padding: 1.5rem 1rem;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.7rem;
    }

    .policyContainer h3 {
        font-size: 1rem;
        margin-top: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
        line-height: 1.6;
        text-align: left;
    }

    .policyContainer ul {
        margin-left: 1rem;
    }

    .policyContainer ul li {
        padding-left: 1.3rem;
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }
}

@media print {
    .navbar,
    .footer-section {
        display: none;
    }

    .policySection {
        padding: 0;
        background: white;
    }

    .policyContainer {
        box-shadow: none;
        padding: 0;
    }

    .policyContainer h1,
    .policyContainer h2 {
        page-break-after: avoid;
    }

    .policyContainer p {
        orphans: 3;
        widows: 3;
    }
}