* {
    margin: 0;
   padding: 0;
   box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}


body    {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
    background: #fafafa;
}

.navbar {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 0;
    position: sticky;
         top :    0;
   z-index  :       1000;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}
	/* Vendor-specific */


/* Generated styles */
.nav-container {
  max-width: 1200px;
    margin: 0 auto;
  display: flex;
          justify-content   :  space-between;
		align-items: center;
   padding :    0 20px; 

}

.logo-section {
       display: flex;
  align-items    :   center;
    height: 74px;
}  

.nav-logo {

		 height: 74px;
   width: auto;
  filter: brightness(0) invert(1); 
	}

.nav-menu {
   display: flex;
          list-style: none;
      gap    :      40px;
     margin: 0;
   	padding  :     0; 
	
}

.nav-link {
   -moz-transition: all 0.3s ease;
  color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size:16px;
   -webkit-transition: all 0.3s ease;
       transition: all 0.3s ease;
   position: relative;
}

.nav-link:hover {
	color: #ffeb3b;
  transform: translateY(-2px);
	
}

.burger-menu   {
  display: none;
   flex-direction:     column;
  cursor: pointer;
        gap: 6px;
}

.burger-line {
  width: 28px;
  height: 3px;
  background: #ffffff;
	border-radius: 2px;
   transition: all 0.3s ease;
}

.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}  

.burger-menu.active .burger-line:nth-child(2) {
   opacity: 0;

}

.burger-menu.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px); 
	
}
@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 74px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 500px;
    }

    .nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link {
        display: block;
        padding: 16px 20px;
        font-size: 18px;
    }

    .nav-container {
        padding: 0 15px;
    }
}.hero {
    max-width:     1200px;
  margin: 0 auto;
    padding: 80px 20px;
    display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 60px;
   align-items: center;
}

.hero-content h1 {
   font-size: 48px;
  font-weight: 700;
	 color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.3;
}

.hero-content p {
   font-size: 18px;
   color: #555;
   margin-bottom   :      40px;
    line-height: 1.8;
}

.hero-image img {

  width: 100%;
    height: auto;
	border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  transition  :   transform 0.3s ease;


}

.hero-image img:hover {
  transform: scale(1.05);
}

.cta-button {

	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
   padding: 16px 40px;
  border: none;
  border-radius: 8px;
   font-size: 16px;
  font-weight: 600;
	cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);

}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 50px 20px;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }
}.features-intro {
   max-width: 1200px;
	    margin :       0 auto;
	    padding: 80px 20px;

}

.section-header {
    text-align: center;
   margin-bottom :        60px;
}

.section-header h2    {
  font-size: 42px;
   font-weight: 700;
   color: #2c3e50;
  margin-bottom: 20px;
}

.section-header p {
  font-size: 18px;
	color    :   #666;
  max-width: 700px;
   margin: 0 auto;
  line-height: 1.8;
}

.features-grid     {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 30px;
}

.feature-card {
     background  :   #ffffff;
    padding: 40px 30px;
      border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
 border-left: 4px solid #667eea;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.15);
}

.feature-card h3 {
  font-size: 20px;
  font-weight    :     600;
    color: #2c3e50;
  margin-bottom: 15px;
}

.feature-card p {
    color: #666;
  font-size: 15px;
  line-height: 1.7; 

}

.pitch-deck-workshop {
	max-width: 1200px;
    margin: 0 auto;
  padding: 80px 20px;
    background: #f8f9fa;
   border-radius: 12px;
}

.section-content {
  display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 60px;
   align-items     :     center;
}

.section-content.reverse {
      grid-template-columns: 1fr 1fr;}

.section-content.reverse .image-column {
   order: -1;
}

.text-column h2 {
   font-size: 38px;
  font-weight :   700;
    color: #2c3e50;
         margin-bottom: 30px;
}

.text-column p {
   font-size   :     16px;
    color: #555;
   margin-bottom: 20px;
  line-height: 1.8;
}

.feature-list {
	list-style: none; 
	    margin: 25px 0;
}

.feature-list li {


    padding   :  12px 0; 
	  padding-left: 30px; 
	  position: relative; 
	    color: #555; 
	   font-size: 15px;
	}


.feature-list li:before {
  content: "";
    position: absolute;
  left: 0;
  top: 16px;
    width: 8px;
      height  :       8px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
				 border-radius: 50%;
}

.image-column img {
	 width: 100%;
   height: auto;
    border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 1);
}@media (max-width: 768px) {
    .section-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-content.reverse .image-column {
        order: 0;
    }

    .text-column h2 {
        font-size: 28px;
    }
}.investor-pitch-training {
  max-width: 1200px;
   margin: 0 auto;
	padding   :       80px 20px;
}


.fundraising-strategy {
    max-width: 1200px;
  margin: 0 auto;
    padding: 80px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 12px;
} 

.strategy-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	 gap: 40px;
    margin-top: 50px;
}

.strategy-card {

	  background: #ffffff;
   border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
   transition: all 0.3s ease;
	}

.strategy-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 14px 40px rgba(102, 126, 234, 0.2);
}

.card-image {
   height: 250px;
    overflow: hidden;
}

.card-image img {
   width: 100%;
   height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.strategy-card:hover .card-image img {
  transform: scale(1.08);
}

.strategy-card h3     {
  font-size: 22px;
  font-weight: 600;
      color: #2c3e50;
   padding: 30px 25px 0;
}

.strategy-card p {
   padding: 15px 25px 25px;
                    color: #666;
    font-size: 15px;
	line-height : 1.7;
}

.coaching-sessions {
   max-width: 1200px;
  margin   :       0 auto;
	 padding   : 80px 20px;
}

.sessions-content	{
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
    margin-top: 50px;
}

.session-type {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  padding: 40px 30px;
	 border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.2);
}

.session-type:hover		{

	  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.35);}

.session-type h3 {
   font-size: 22px;
   font-weight: 600;
  margin-bottom: 15px;
}

.session-type p {
  font-size: 15px;
  line-height: 1.7;
    margin-bottom: 15px;
  opacity: 0.95;
}

.session-duration {
   font-size: 13px;
    font-weight: 600;
   opacity: 0.8;
  margin-top: 20px !important;
}

.success-stories		{
  max-width :       1200px;
   margin: 0 auto;
   padding: 80px 20px;
   background: #fafafa;
}

.stories-grid {
    display :grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
 margin-top: 50px;
}

.story-card {
   background: #ffffff;
   padding: 40px 30px;
  border-radius :     12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
 border-top: 4px solid #667eea;
   transition: all 0.3s ease;
}

.story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.15);
}

.story-card h3 {
   font-size: 20px;
   font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
}

.story-card p {
  color: #666;
  font-size: 15px;
   line-height: 1.8;
}

.webinar-events {

	   max-width: 1200px;
   margin: 0 auto;
  padding :80px 20px;

     }

.events-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 40px;
   margin-top: 50px;
}

.event-card {
	background: #ffffff;
    padding: 40px 30px;
	border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	border-left: 4px solid #764ba2;
    transition: all 0.3s ease;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(118, 75, 162, 0.15);
}

.event-card h3 {
         font-size: 20px;
	 font-weight: 600;
   color: #2c3e50;
  margin-bottom: 15px;
}

.event-card p {
    color: #666;
   font-size: 15px;
   line-height: 1.8;
}

.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  padding: 80px 20px;
   text-align: center;
}

.cta-content h2 {
  margin-bottom: 20px;
   font-weight: 700;
   font-size: 42px;
}

.cta-content p {
  margin-bottom: 40px;
   margin-right: auto;
    margin-left: auto;
    font-size: 18px;
    line-height: 1.8;
   opacity: 0.95;
    max-width: 600px;
}

.cta-section .cta-button {
    background: #ffffff;
	color: #667eea;
  border    :       2px solid #ffffff;
  font-weight: 700;
}

.cta-section .cta-button:hover {
    background: transparent;
    color: white;
}

.contact-section {
   max-width: 1200px;
   margin: 0 auto;
	 padding: 80px 20px;
}

.contact-container {


	max-width: 700px;
	margin: 0 auto;
  background: #ffffff;
  padding: 50px 40px;
   border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);



}

.contact-container h2 {
    font-size: 36px;
   font-weight :       700;
   color: #2c3e50;
    margin-bottom: 15px;
  text-align    :center;
	
}

.contact-container > p {
    text-align: center;
  color: #666;
    font-size: 16px;
  margin-bottom: 40px;
   line-height: 1.6;
}

.contact-form {
   display: flex;
        flex-direction: column;
  gap     :  25px;
}

.form-group {
    display: flex;
    flex-direction: column;


}

.form-group input,
.form-group select,
.form-group textarea {
   border-radius: 8px;
    font-size: 15px;
   transition: all 0.3s ease;
  border: 2px solid #e0e0e0;
   font-family: inherit;
    padding: 14px 18px;
    color: #2c3e50;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
       resize: vertical;
   min-height: 120px;
	
}

.submit-btn
{

	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
   padding: 16px 30px;
   border: none;
   border-radius: 8px;
	 font-size: 16px;
   font-weight: 600;
  cursor: pointer;
   transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
     }

.submit-btn:hover {
  transform: translateY(-2px);

	  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}@media (max-width: 768px) {
    .contact-container {
        padding: 40px 25px;
    }

    .contact-container h2 {
        font-size: 28px;
    }
}.footer {
   background: #1a1f2e;
   color: #ecf0f1;
    padding: 60px 20px 20px;
  margin-top: 80px;
}

.footer-container {
   max-width: 1200px;
   margin: 0 auto;
    display: grid;
   grid-template-columns: auto 1fr;
  gap: 60px;
  margin-bottom :       40px;
  align-items: flex-start;
}

.footer-logo {
    display: flex;
                    align-items: center;
}

.footer-logo-img {
  height: 96px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-content {
        display   : grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h3 {
  font-size: 18px;
               font-weight: 600;
   margin-bottom: 20px;
   color: #ffffff;
}

.footer-section p {
    margin-bottom :        12px;

  font-size  :14px;

   line-height: 1.8;

    color: #bdc3c7;
	
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
   margin-bottom: 12px;
}

.footer-section ul li a {
   color: #bdc3c7;
        text-decoration: none;
   transition: color 0.3s ease;
         font-size: 14px;
}

.footer-section ul li a:hover    {


  color: #667eea;

}



.footer-bottom {
    text-align: center;
   padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #95a5a6;
  font-size: 14px;
}@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stories-grid,
    .events-grid,
    .strategy-grid,
    .sessions-content {
        grid-template-columns: 1fr;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
          color :white;
  padding :   100px 20px;
  text-align: center;
}

.services-hero-content h1 {
   font-size: 48px;
        font-weight: 700;
  margin-bottom  :       20px;
  line-height: 1.3;
}

.services-hero-content p {
    font-size: 20px;
   opacity: 0.95;
  max-width: 700px;
    margin   :   0 auto;
    line-height: 1.8;
}@media (max-width: 768px) {
    .services-hero {
        padding: 60px 20px;
    }

    .services-hero-content h1 {
        font-size: 32px;
    }

    .services-hero-content p {
        font-size: 16px;
    }
}.services-grid-intro {
  max-width: 1200px;
   margin  :    0 auto;
   padding:60px 20px;
}

.service-detail-one,
.service-detail-two,
.service-detail-three,
.service-detail-four,
.service-detail-five {
       max-width: 1200px;
  margin: 0 auto;
	 padding: 80px 20px;
}

.service-detail-two {
   background: #f8f9fa;
}

.service-detail-four    {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 12px;
}

.service-content {
   display: grid;
   grid-template-columns: 1fr 1fr;
    gap   :        60px;
   align-items: center;
}

.service-content.reverse {
    grid-template-columns: 1fr 1fr; 

}

.service-content.reverse .service-image {


  order: -1;


}

.service-text h2 {

	   font-size: 38px;
    font-weight: 700;
   color: #2c3e50;
  margin-bottom: 25px;
   line-height: 1.3;}

.service-text > p {
   font-size: 16px;
  color: #555;
	margin-bottom: 25px;
    line-height: 1.8;
}

.service-features {
  background: #ffffff;
  padding :       30px;
    border-radius: 8px;
 margin: 30px 0;
    border-left   :     4px solid #667eea;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);


}

.service-features h3 {
   font-size: 18px;
  font-weight: 600;
    color: #2c3e50;
		 margin-bottom: 20px;
}

.service-list {
  list-style: none;
    padding: 0;
      margin: 0;
}

.service-list li {
   padding-left: 28px;
    position: relative;
  line-height: 1.6;
   color: #555;
    padding: 10px 0;
    font-size: 15px;
}

.service-list li:before {
  content: "";
    position: absolute;
    left  :   0;
		 top: 13px;
  width: 6px;
   height: 6px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   border-radius: 50%;
}

.service-details {
  background: #f8f9fa;
   -moz-border-radius: 8px;
  padding: 25px;
   border-radius: 8px;
   -webkit-border-radius: 8px;
  margin: 25px 0;
}

.service-details p {
    margin: 12px 0;
    font-size: 15px;
 color: #555;
  line-height: 1.6;


}

.service-description {


   font-size:   15px;
  color: #666;
   font-style: italic;
    margin-top: 25px;
	 padding: 20px;
	border-left: 3px solid #764ba2;
  background: rgba(102, 126, 234, 0.05);
	border-radius: 4px; 
	
	}

.service-image img {
    width: 100%;
  height: auto;
   border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.service-image img:hover{
  transform: scale(1.04);
}@media (max-width: 768px) {
    .service-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-content.reverse .service-image {
        order: 0;
    }

    .service-text h2 {
        font-size: 28px;
    }

    .service-detail-one,
    .service-detail-two,
    .service-detail-three,
    .service-detail-four,
    .service-detail-five {
        padding: 50px 20px;
    }
}.services-pricing {
   max-width     :       1200px;
	margin: 0 auto;
   padding: 80px 20px; 

}

.pricing-grid    {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.pricing-card {
  background: #ffffff;
   padding: 40px 30px;
   border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
   border-top: 4px solid #e0e0e0;
   text-align: center;
	
}

.pricing-card.featured {
    border-top: 4px solid #667eea;
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(102, 126, 234, 0.2);
}

.pricing-card:hover  {
	  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);


}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-card h3 {
    font-size: 22px;
   margin-bottom: 15px;
    font-weight: 600;
    color   :    #2c3e50;
}

.price {
   font-size:   28px;
  font-weight    :    700;
	color: #667eea;
  margin :   15px 0 25px;


}

.pricing-features {
  list-style: none;
    padding: 0;
   margin: 0 0 25px 0;
   text-align: left;
}

.pricing-features li {
    padding: 10px 0; 
				color   :   #555; 
	   font-size: 14px; 
	   line-height: 1.6; 
		border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:last-child {
  border-bottom: none;
}


.package-note {
   font-size: 13px;
  color: #999;
   font-style: italic;
    margin-top: 20px;
}@media (max-width: 768px) {
    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
}.services-faq {


    background: #fafafa;
  padding: 80px 20px;
  margin: 0 auto;
  max-width: 1200px;

}

.faq-container {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 30px;
  margin-top: 50px;
}

.faq-item {
    background: #ffffff;
	padding: 30px;
	border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
     transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 16px rgba(102, 126, 234, 0.1);
  transform: translateY(-4px);
}

.faq-question {
   font-size: 16px;
  font-weight: 600;
    color: #2c3e50;
    margin: 0 0 15px 0;
   cursor: pointer;
   transition: color 0.3s ease;
}

.faq-item:hover .faq-question {

		color    :       #667eea;
     }

.faq-answer {
    font-size: 14px;
        color: #666;
    line-height: 1.8;
  margin   :        0;
}@media (max-width: 768px) {
    .faq-container {
        grid-template-columns: 1fr;
    }

    .services-faq {
        padding: 50px 20px;
    }
}.services-cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
    padding: 80px 20px;
    text-align     :      center;
}

.services-cta-content h2	{
   font-size: 42px;
   font-weight: 700;
    margin-bottom   : 20px;
}

.services-cta-content p {
    font-size: 18px;
  margin-bottom     : 40px;
    opacity: 0.95;
    max-width     :600px;
  margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}@media (max-width: 768px) {
    .services-cta {
        padding: 60px 20px;
    }

    .services-cta-content h2 {
        font-size: 32px;
    }
}.thankyou-container 
 {

	  max-width: 800px;
   margin: 0 auto;
   padding:    100px 20px;
  min-height: calc(100vh - 300px);
      display: flex;
	align-items: center;
   justify-content: center;
}

.thankyou-content {
  width: 100%;
   background: #ffffff;
	padding: 60px 40px;
	border-radius  :      12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.success-icon {
    color: #2ecc71;
 margin-bottom: 30px;
  display: flex;
   justify-content: center;
	
}

.success-icon svg {
	    stroke  : #2ecc71;
    fill: none;}

.thankyou-content h1 {
  font-size: 42px;
  font-weight: 700;
    color: #2c3e50;
   margin-bottom: 20px;
}

.thankyou-message {


  font-size: 18px;
  color: #555;
   margin-bottom: 40px;
     line-height: 1.6;


}

.thankyou-details {
  text-align: left;
  margin-bottom: 40px;
}

.confirmation-box
	{
                    background     : #f8f9fa;
         padding   :      25px;
  border-radius: 8px;
   border-left: 4px solid #667eea;
   margin: 25px 0;
}

.confirmation-box h3 {
    font-size: 16px;
   font-weight: 600;
  color: #2c3e50;
   margin-bottom: 15px;
}

.confirmation-box p {
    font-size: 14px;
    line-height: 1.6;
          color: #555;
      margin: 8px 0;

}

.next-steps {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
	padding: 25px;
  border-radius: 8px;
    margin     :  25px 0;
}

.next-steps h3 {
  font-size: 16px;
  font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.next-steps ol {
   margin: 0;
  padding-left: 20px;
}

.next-steps li {
  font-size: 14px;
  color: #555;
    margin: 10px 0;
   line-height     :   1.7;
}

.contact-info
{
    background: #fafafa;
   padding: 25px;
    border-radius: 8px;
    margin: 25px 0;
}

.contact-info h3 {
  font-size: 16px;
      font-weight: 600;
   color: #2c3e50;
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 14px;
    color: #555;
  margin: 8px 0;
   line-height: 1.6;
}

.thankyou-actions {
   display :     flex;
        gap: 20px;
        justify-content :      center;
   margin: 40px 0;
   flex-wrap: wrap;
	
}

.action-button {
   padding: 14px 30px;
     border-radius    :     8px;
  text-decoration  :      none;
   font-weight: 600;
   font-size  : 15px;
    transition: all 0.3s ease;
		display: inline-block;
}

.action-button.primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
	
}

.action-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);


}

.action-button.secondary {
  color: #2c3e50;
    border: 2px solid #667eea;
    background: #f0f0f0;
}

.action-button.secondary:hover {
   background     :     #667eea;
   color: white;
  transform: translateY(-2px);
}

.social-follow {
   margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.social-follow p {
  font-size: 14px;
   color: #666;
   margin: 10px 0;
}

.follow-info {
  background: #f8f9fa;
    padding: 15px;
   border-radius: 6px;
  margin-top: 15px;
}

.follow-info p {
  margin    :  0;
  color: #555;
    font-size: 13px;
}@media (max-width: 768px) {
    .thankyou-container {
        padding: 50px 15px;
        min-height: auto;
    }

    .thankyou-content {
        padding: 40px 25px;
    }

    .thankyou-content h1 {
        font-size: 32px;
    }

    .thankyou-message {
        font-size: 16px;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .action-button {
        width: 100%;
    }

    .success-icon svg {
        width: 60px;
        height: 60px;
    }
}.policySection {
          padding: 80px 2rem;
 background: #f8f9fa;
  min-height: calc(100vh - 400px);
}

.policyContainer {
    max-width: 900px;
  margin: 0 auto;
  text-align: left;
    background: #ffffff;
               padding: 60px;
    border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.policyContainer h1 {
    font-size: 3rem;
    color   :#2c3e50;
  margin-bottom: 30px;
    font-weight: 700;
  line-height: 1.3;
   border-bottom: 3px solid #667eea;
    padding-bottom: 20px;
}

.policyContainer h2 {
    font-size: 1.8rem;
   color: #2c3e50;
    margin: 40px 0 20px 0;
 font-weight: 600;
  line-height: 1.4;
}

.policyContainer p {
   color   :#555;
   margin-bottom: 20px;
   line-height: 1.8;
  font-size: 1rem;
                    text-align: justify;
}

.policyContent  {


    margin-top: 30px;
}

.policyContainer h2:first-of-type {
  margin-top: 0;
}@media (max-width: 768px) {
    .policyContainer {
        padding: 40px 25px;
        margin: 0 15px;
    }

    .policyContainer h1 {
        font-size: 2.2rem;
        margin-bottom: 25px;
    }

    .policyContainer h2 {
        font-size: 1.5rem;
        margin: 30px 0 15px 0;
    }

    .policyContainer p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 18px;
        text-align: left;
    }

    .policySection {
        padding: 60px 1rem;
    }
}

@media (max-width: 480px) {
    .policyContainer {
        padding: 30px 15px;
    }

    .policyContainer h1 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .policyContainer h2 {
        font-size: 1.3rem;
        margin: 25px 0 12px 0;
    }

    .policyContainer p {
        font-size: 0.9rem;
    }

    .policySection {
        padding: 40px 0.5rem;
    }
}