* {
  margin: 0;
   		 padding: 0;
     box-sizing: border-box;
}

html {
   scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #2c3e50;
   background-color: #f8f9fa;
    line-height: 1.6;
}

.navbar {
  position: sticky;
    top: 0;
  background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
         max-width: 1200px;
    margin: 0 auto;
  padding: 0 20px;
       display: flex;
    justify-content :      space-between;
         align-items: center;
   height: 70px;
}

.nav-logo img {
   height: 74px;
    width: auto;
}

.nav-menu		{
     display: flex;
   list-style: none;
   gap: 35px;
}

.nav-link {
  text-decoration: none;
    color: #2c3e50;
         font-weight: 500;
   font-size: 16px;
    transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #3498db; 
	
}

.nav-link::after {
  content: '';
   position: absolute;
  bottom     :    -5px;
       left : 0;
	 width    :   0;
    height: 2px;
  background: linear-gradient(90deg, #3498db, #2980b9);
   transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.burger-menu{
   display: none;
    flex-direction: column;
  cursor: pointer;
          gap: 5px;
}

.burger-menu span {
   width    :   25px;
    height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s ease;
    border-radius: 2px;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        max-height: 500px;
    }

    .nav-menu li {
        padding: 12px 20px;
        border-bottom: 1px solid #ecf0f1;
    }

    .nav-link::after {
        display: none;
    }

    .burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(10px, 10px);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}.hero  
  {
    max-width: 1200px;
   margin: 0 auto;
  padding: 80px 20px;
			display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 50px;
  align-items: center; 
	
}

.hero-content h1 {
  font-size: 48px;
   margin-bottom: 20px;
    color: #1a252f;
    font-weight: 700;
}

.hero-content p {
   line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
  font-size: 18px;
}

.hero-image img {
   width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
} 

.cta-button {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   color: white;
    border: none;
	padding: 14px 35px;
   font-size: 16px;
        border-radius    :        8px;
               cursor: pointer;
    transition: all 0.3s ease;
   font-weight: 600;


}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.cta-button-secondary {

  background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
    border: none;
    padding: 12px 30px;
   font-size: 15px;
   border-radius: 8px;
   cursor: pointer;
    transition: all 0.3s ease;
	 font-weight: 600;
       margin-top: 20px; 
	
     }

.cta-button-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
}

.cta-button-large {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
               color: white;
   border: none;
  padding: 16px 45px;
    font-size: 18px;
    border-radius: 8px;
    cursor    :   pointer;
    transition: all 0.3s ease;
	font-weight: 700;
}

.cta-button-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(231, 76, 60, 0.35);
}
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 50px 20px;
    }

    .hero-content h1 {
        font-size: 36px;
    }
}.section-header {
   text-align: center;
    margin-bottom: 60px; 

}

.section-header h2 {
                    font-size: 40px;
  margin-bottom: 15px;
	 color: #1a252f;
  font-weight: 700;
}

.section-header p {
   font-size: 18px;
	color: #7f8c8d;
}

.services-preview {


      max-width: 1200px;
    margin: 0 auto;
  padding: 80px 20px;
}

.services-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  background     :      white; 
	  border-radius: 12px; 
	  overflow: hidden; 
	  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); 
	    transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.service-card img		{
   width: 100%;
  height: 250px;
    object-fit: cover;

} 

.service-card h3 {
	 font-size: 22px;
	padding: 25px 20px 10px 20px;
   color: #1a252f;
   font-weight: 600;
}

.service-card p {
  padding: 0 20px 25px 20px;
  color: #666;
 font-size: 15px;
}

.coaching-focus {

  max-width: 1200px;
   margin     :      0 auto;
  padding: 80px 20px;
    display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 50px;
  align-items: center;
  background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
   border-radius: 15px;}

.coaching-content h2 {
   margin-bottom: 25px;
   color: #1a252f;
   font-size: 38px;
    font-weight: 700;
}

.coaching-content p {
   font-size: 16px;
    color: #333;
    margin-bottom: 20px;
  line-height: 1.8;
}

.coaching-image {
  width: 100%;
       border-radius: 12px;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}@media (max-width: 768px) {
    .coaching-focus {
        grid-template-columns: 1fr;
        padding: 50px 20px;
    }

    .coaching-content h2 {
        font-size: 32px;
    }
}.webinar-section

{
  max-width: 1200px;
   margin: 0 auto;
  padding   : 80px 20px;
}



.webinar-header {
   text-align: center;
  margin-bottom: 60px;
}

.webinar-header h2 {
	   font-size: 40px;
    margin-bottom: 15px;
         color: #1a252f;
  font-weight: 700;
     }

.webinar-header p {
	font-size :   18px;

		 color: #7f8c8d;


}

.webinar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
               gap   :        30px;
}

.webinar-card {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
   padding  :    30px;
    border-radius: 12px;
    position: relative;
    transition  :    all 0.3s ease;
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.2);
}

.webinar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(52, 152, 219, 0.3);


}

.webinar-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.25);
   padding: 6px 12px;
	border-radius: 20px;
  font-size: 12px;
   font-weight: 600;
   margin-bottom: 15px;
}

.webinar-card h3 {
    font-size: 22px;
         margin-bottom    :15px;
    font-weight: 600;
}

.webinar-card p {
  font-size: 15px;
   line-height   :    1.7;
    margin-bottom    :25px;
    opacity: 0.95;
}


.webinar-price {
			display: block;
       font-size: 24px;
  font-weight   :      700;
}

.conference-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.conference-section h2 {
   text-align: center;
    margin-bottom   :      50px;
    font-weight: 700;
  font-size: 40px;
  color: #1a252f;
}

.conference-content{
    display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
       align-items: center;
}

.conference-text p {
  font-size :   16px;
    color: #555;
	 margin-bottom: 20px;
  line-height: 1.8;
}

.conference-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}@media (max-width: 768px) {
    .conference-content {
        grid-template-columns: 1fr;
    }
}.methodology-section {
       max-width: 1200px;
	margin: 0 auto;
    padding: 80px 20px;
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    border-radius: 15px;
}

.methodology-section h2 {
	font-size:    40px;
    margin-bottom: 60px;
                    color: white;
  font-weight: 700;
   text-align: center;
}

.methodology-cards {
  display :   grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.methodology-card {
  background: rgba(255, 255, 255, 0.95);
     padding: 35px;
   border-radius: 12px;
    transition: all 0.3s ease;
   position: relative;
	
}

.methodology-card:hover {
  transform: translateY(-8px); 
	  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.methodology-number    {
  font-size: 48px;
     font-weight: 700;
     color: #f39c12;
      margin-bottom: 15px;
}

.methodology-card h3 
 {
   font-size: 20px;
	color: #1a252f;
   margin-bottom: 12px;
   font-weight: 600;
}

.methodology-card p {
   font-size: 15px;
    color: #666;
  line-height: 1.7;
}

.testimonials-section {
   max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.testimonials-section h2 {
    font-size: 40px;
   margin-bottom: 15px;
  color: #1a252f;
   font-weight: 700;
  text-align: center;
}

.testimonials-intro {
   color:      #7f8c8d;
     margin-bottom: 50px;
       font-size: 18px;
       text-align     :  center;
}

.testimonials-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
   background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
  border-left :     4px solid #3498db;
}

.testimonial-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.testimonial-text {
   font-size: 16px;
    color: #444;
	 margin-bottom: 15px;
   font-style: italic;
   line-height: 1.8;
}

.testimonial-author {

	   font-size: 14px;
   color: #3498db;
  font-weight: 600; 
	
     }

.cta-section {
       max-width: 1000px;
	margin: 0 auto;
     padding   :       80px 20px;
  background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
  border-radius: 15px;
  text-align: center;
    color: white;

}

.cta-section h2 {
       font-size: 38px;
     margin-bottom: 20px;
  font-weight: 700;
	
}

.cta-section p {

	    font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.95;}

.contact {
  max-width: 800px;
  margin: 0 auto;
    padding: 80px 20px;
}

.contact-container {
  background: white;
    padding: 50px;
    border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact h2 {
   font-size: 38px;
   margin-bottom: 10px;
    color: #1a252f;
   font-weight: 700;
}

.contact-container > p {
     color: #7f8c8d;
   font-size: 16px;
  margin-bottom  : 40px;
	}


.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
   display: flex;
   flex-direction:    column;
}

.form-group input,
.form-group select,
.form-group textarea		{
     padding: 14px 16px;
    border: 1px solid #ecf0f1;
   border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
	 transition   : all 0.3s ease;

}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group textarea {

    resize: vertical;


}

.submit-button	{
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
   padding: 14px 30px;
  border: none;
   border-radius: 8px;
  font-size: 16px;
   font-weight: 600;
   cursor     : pointer;
   transition :    all 0.3s ease;
  margin-top: 10px;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.footer {
  background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
	color: white;
   padding  :    60px 20px 30px 20px;
 margin-top :80px;
}

.footer-container {
	 max-width: 1200px;

    margin: 0 auto;

   display :        grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

   gap: 50px;

   margin-bottom: 50px;
} 

.footer-logo-img {
    height: 96px;
  width: auto;
  filter: brightness(0) invert(1);
    margin-bottom: 20px;
}

.footer-info p {
   font-size:      15px;
   line-height: 1.8;
  color: #ecf0f1;
  margin-bottom: 12px;
}

.footer-address {
    font-weight: 500;
}

.footer-phone {
   color: #3498db;
    font-weight: 600;
}

.footer-nav {
  display: flex; 
		 flex-direction: column; 
	    gap: 12px;
}

.footer-nav a {
   color: #ecf0f1;
  text-decoration: none;
  font-size: 15px;
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    color: #3498db;
    padding-left: 8px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
   padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
    color: #95a5a6;
   font-size: 14px;
}@media (max-width: 768px) {
    .contact-container {
        padding: 30px;
    }

    .contact h2 {
        font-size: 32px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}.services-hero {
     background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: white;
  padding: 100px 20px;
  text-align: center;


}

.services-hero-content h1   {
 font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.services-hero-content p {
  font-size     :  20px;
   opacity: 0.95;
          max-width: 800px;
  margin: 0 auto;
}

.services-detailed {
     max-width: 1200px;
  margin: 0 auto;
    padding: 80px 20px;
	}

.services-container {
		display: flex;
  flex-direction: column;
   gap: 80px;
}

.service-item {
        display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 50px;
    align-items: center;
     padding: 50px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}



.service-item-reverse
	{
    direction: rtl;
}

.service-item-content {
   direction: ltr; 
	
}

.service-item h2 {

	font-size: 32px;
   margin-bottom: 20px;
          color: #1a252f;
  font-weight: 700;
}

.service-item > p {
    font-size: 16px;
    color: #555;
   line-height: 1.8;
   margin-bottom: 25px;
}

.service-item h3 {
  font-size: 18px;
    color:  #2c3e50;
    margin-top: 25px;
    margin-bottom  :        15px;
          font-weight: 600;
}

.service-list {
   list-style: none;
  padding-left: 0;
   margin-bottom: 20px;
}

.service-list li {
	padding: 10px 0;
   padding-left: 25px;
    color: #555;
    font-size: 15px;
  position: relative;
   line-height    :1.6;
}

.service-list li:before {
  content: "▸";
   position: absolute;
        left: 0;
  color: #3498db;
    font-weight: bold;
   font-size: 18px;


}

.service-duration {
    color:   #7f8c8d;
    font-size: 15px;
        margin-top: 20px;
   padding-top     :   20px;
    border-top: 1px solid #ecf0f1;
}

.service-price {
                    color: #27ae60;
   font-size: 16px;
  font-weight: 600;
  margin-top: 10px;
}

.service-item img {
  width: 100%;
   border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}@media (max-width: 968px) {
    .service-item {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 35px;
    }

    .service-item-reverse {
        direction: ltr;
    }

    .service-item h2 {
        font-size: 28px;
    }

    .services-hero-content h1 {
        font-size: 36px;
    }
}.service-comparison {
   max-width     :       1200px;
    margin: 0 auto;
  padding: 80px 20px;
    background: #f8f9fa;
    border-radius: 15px;
}

.service-comparison h2 {
  font-size: 40px;
    margin-bottom: 50px;
   color: #1a252f;
    font-weight: 700;
    text-align: center;
} 

.comparison-table {
    overflow-x: auto;
}

table {
   width: 100%; 
   border-collapse  :  collapse; 
    background: white; 
    border-radius: 12px; 
    overflow: hidden; 
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

thead {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
}

thead th
{
    padding: 20px;
  text-align: left;
    font-weight: 600;
         font-size: 15px;
}

tbody tr 
 {
   border-bottom: 1px solid #ecf0f1;
  transition: all 0.3s ease;
}

tbody tr:hover {
   background-color: #f8f9fa;
}

tbody td {
	padding: 18px 20px;
 font-size: 14px;
  color: #555;
  text-align :   center;
}

tbody td:first-child {
    text-align: left;
   font-weight: 600;
    color: #2c3e50;
}

.yes {
        color: #27ae60;
  font-weight    :    700;
   font-size: 18px;
}

.partial {

   color  :   #f39c12;
   font-weight    :        700;
  font-size: 18px;
}

.no {

		 color: #e74c3c;
   font-weight: 700;
  font-size:18px;
     }@media (max-width: 768px) {
    .comparison-table {
        font-size: 12px;
    }

    thead th {
        padding: 15px 10px;
        font-size: 13px;
    }

    tbody td {
        padding: 12px 10px;
        font-size: 12px;
    }
}.faq-section {


  max-width: 900px;
   margin: 0 auto;
  padding    :      80px 20px;
}  

.faq-section h2 {
  font-size: 40px;
	    margin-bottom: 50px;
	  color: #1a252f;
	   font-weight: 700;
	  text-align: center;
}

.faq-container {
    display: flex;
	flex-direction: column;
	gap: 20px;
}

.faq-item {
   background: white;
               border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
   overflow: hidden;
  transition: all 0.3s ease;
}  

.faq-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 25px;
  margin: 0;
   cursor: pointer;
   font-size: 18px;
    color    :#1a252f;
	font-weight: 600;
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
   display: flex;
   justify-content: space-between;
    align-items: center;
    user-select: none;
  transition: all 0.3s ease;
	}

.faq-question:after {
  content: "+";
   font-size:        24px;
  color: #3498db;
     transition     :      transform 0.3s ease;
}

.faq-item.active .faq-question {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
}

.faq-item.active .faq-question:after {
  transform: rotate(45deg);
                  color: white;
}

.faq-answer {
      padding: 0 25px;
       max-height: 0;
    overflow: hidden;
	 transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 25px;
    max-height: 500px;
}

.faq-answer p {
   margin: 0;
    color: #555;
    line-height: 1.8;
   font-size: 15px;
}

.choose-service    {
	max-width: 900px;
   margin: 0 auto;
   padding: 80px 20px;
                    text-align: center;
  background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
     border-radius: 15px;
}

.choose-service h2 {
  font-size: 40px;
	 margin-bottom: 20px;
  color: #1a252f;
  font-weight:      700;
}

.choose-service p {
	 color: #333;
      margin-bottom: 40px;
    font-size: 18px;
}

.thankyou-container {
   max-width: 800px;
    margin: 60px auto;
  padding: 60px 20px;
   text-align: center;
  background: white;
   border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.thankyou-content{
  display: flex;

	    flex-direction: column;

	    align-items: center;
}

.thankyou-icon {
          width: 120px;
  height: 120px;
   margin-bottom: 30px;
}

.thankyou-icon svg {
        width: 100%; 
	   height: 100%; 
	  animation: scaleIn 0.6s ease-out;
}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-container h1 {
        color: #1a252f;
	font-weight: 700;
               margin-bottom: 15px;
    font-size: 42px;
}

.thankyou-message {
  font-size: 18px; 
   color: #555; 
  margin-bottom: 50px; 
    line-height:       1.8;


}

.next-steps {
    text-align: center;
     margin-bottom: 50px;
  width: 100%;
}

.next-steps h2 {
  font-size: 32px;
  color: #2c3e50;
   margin-bottom: 40px;
  font-weight: 700;
}

.steps-grid {


   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;


}

.step-card {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   color: white;
    padding: 30px;
   border-radius: 12px;
	 transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
}

.step-number

{
    font-size: 48px;
   font-weight :   700;
   margin-bottom: 15px;
    opacity: 0.9;
}

.step-card h3 {
  font-size: 20px;
    font-weight: 600;
   margin-bottom: 10px;
}

.step-card p {
   font-size: 14px;
	opacity: 0.95;
   line-height: 1.6;
}



.additional-info {
  width: 100%;
    margin-bottom: 50px;
    background: #f8f9fa;
   padding: 40px;
   border-radius: 12px;
}

.additional-info h2 {
    font-size: 28px;
	font-weight: 700;
  color: #1a252f;
    margin-bottom   :     15px;
}

.additional-info > p	{
   color: #666;
       font-size: 16px;
     margin-bottom: 30px;
}

.resources-grid {
     display :grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px; 
	
}

.resource-card {
    background: white;
   padding: 30px;
       border-radius: 12px;
	 text-decoration: none;
    transition: all 0.3s ease;
    border-left: 4px solid #3498db;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.resource-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.resource-card h3 {
     color: #1a252f;
  font-size: 18px;
   margin-bottom: 10px;
  font-weight: 600;
}


.resource-card p {
  line-height: 1.6;
  font-size: 14px;
   color: #666;
}

.contact-quick {
    width: 100%;

	          margin-bottom: 50px;

	  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);

	   color: white;

	  padding: 40px;

	  border-radius: 12px;
} 

.contact-quick h2 {
	        font-size: 28px;
    margin-bottom: 15px;
   font-weight: 700;}

.quick-contact-text     {
    font-size: 16px;
    margin-bottom    :      20px;
   opacity: 0.95;
}

.phone-display {
   font-size: 36px;
	font-weight: 700;
    margin-bottom:        10px;
}

.office-hours {
   font-size: 14px;
   opacity: 0.9;
}

.back-button {

	    width: 100%;

}@media (max-width: 768px) {
    .thankyou-container {
        padding: 40px 20px;
        margin: 40px auto;
    }

    .thankyou-container h1 {
        font-size: 32px;
    }

    .thankyou-icon {
        width: 100px;
        height: 100px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }
}.policy-hero {
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
  color: white;
    padding: 80px 20px;
  text-align: center;
}

.policy-hero-content h1		{
   font-size: 48px;
     font-weight: 700;
    margin: 0;
} 

.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;
   margin-top: 40px;
   font-weight: 700;
}

.policyContainer h2:first-child {
	margin-top: 0;
}

.policyContainer p {
   color: #555;
   margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1.05rem;
}

.policyContainer p:last-of-type   {

  margin-bottom: 0;
	}@media (max-width: 768px) {
    .policy-hero {
        padding: 60px 20px;
    }

    .policy-hero-content h1 {
        font-size: 36px;
    }

    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer {
        margin: 0 auto;
    }

    .policyContainer h2 {
        font-size: 2rem;
        margin-top: 30px;
    }

    .policyContainer p {
        font-size: 1rem;
    }
}