* {
    margin: 0;
	padding: 0;
    box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
   color: #333;
                    background: #fff;
}

.primary-navigation {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
   transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.primary-navigation.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
        max-width: 1200px;
  margin: 0 auto;
  display: flex;
   justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.brand-logo    {
   height: 45px;
          width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
	 gap: 2rem;
}

.nav-links li a {
  text-decoration: none;
    color: #333;
   font-weight: 500;
  transition:  color 0.3s ease;
}

.nav-links li a:hover {
    color: #2563eb; 

}

.menu-toggle {
    display: none;
  flex-direction: column;
        cursor: pointer;
   gap: 4px;
}

.menu-toggle span {
  width: 25px;
   height: 3px;
   background:      #333;
  transition  :      all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);

}

.menu-toggle.active span:nth-child(2) {
   opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.hero-section {
  display: flex;
    align-items   : center;
  min-height: 100vh;
   padding: 120px 2rem 2rem;
                    max-width: 1200px;
  margin: 0 auto;
      gap: 4rem;
	
}

.hero-content {
   flex: 1;
	
}

.hero-content h1 {
 font-size: 3.5rem;
  font-weight: 700;
	color: #1f2937;
   line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-content p {
	  font-size: 1.25rem;
  color  :    #6b7280;
  margin-bottom: 2rem;}

.hero-actions {
   display: flex;
   gap: 1rem;
  flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
   padding: 14px 28px;
	 text-decoration: none;
       font-weight: 600;
         border-radius: 8px;
   transition: all 0.3s ease;
   display:   inline-block;
}

.cta-primary 
 {


  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
     }

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.cta-secondary {
   border: 2px solid #2563eb; 
	    color  :   #2563eb; 
	  background    : transparent;
}

.cta-secondary:hover {
   background: #2563eb;
    color    :   white;
}

.hero-image {
    flex: 1;
}

.hero-image img {
  width: 100%;
   height: auto;
    border-radius :  12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.services-section {
     padding: 80px 2rem;
         background: #f8fafc;}

.container {

  max-width: 1200px;
  margin: 0 auto;
	}

.services-section h2 {
    text-align   :      center;
   font-size     :    2.5rem;
  color: #1f2937;
         margin-bottom: 3rem;
}

.services-grid
{
  display  :    grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 2rem;
}

.service-card {
    background    :  white;
  border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
   transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card img    {
  width: 100%;
    height: 220px;
  object-fit: cover;
}

.service-card h3 {
   font-size: 1.5rem;
 color: #1f2937;
  padding: 1.5rem 1.5rem 1rem;
}

.service-card p {
   color: #6b7280;
  padding: 0 1.5rem 2rem;
  line-height: 1.7;
}

.cta-section

{
  background: linear-gradient(135deg, #1f2937, #111827);
	color: white;
               padding: 80px 2rem;
	text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
   margin-bottom: 1rem;
}

.cta-content p


{
   font-size :  1.2rem;
   margin-bottom: 2.5rem;
    opacity: 0.9;
}


.cta-button {
  background: linear-gradient(135deg, #10b981, #059669);
   color: white;
          padding: 16px 32px;
  text-decoration: none;
    font-weight: 600;
  border-radius: 8px;
    display: inline-block;
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.about-preview   {
   padding: 80px 2rem;


}

.about-content {
    display: flex;
  align-items: center;
  gap: 4rem;
}

.about-text {
  flex: 1;
}

.about-text h2
{
   font-size: 2.5rem;
	 color: #1f2937;
    margin-bottom: 1.5rem;
}

.about-text p {
   color: #6b7280;
   margin-bottom  :    1rem;
  font-size: 1.1rem;
}

.benefits-list {
    list-style: none;
  margin-top: 2rem;
}

.benefits-list li {
                    color: #6b7280;
   padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.benefits-list li::before {

          font-weight: bold;
  color: #10b981;
	position:      absolute;
   left: 0;
  content: "✓";}

.about-image {
    flex: 1;

	       -webkit-flex: 1;

	   -ms-flex: 1;
}

.about-image img {
  width: 100%;
      border-radius: 12px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-section {
  background: #f8fafc;
   padding: 80px 2rem;
	}

.contact-section h2 {

	  text-align: center;
    font-size    :        2.5rem;
    color: #1f2937;
  margin-bottom: 3rem;
}

.contact-wrapper {
   grid-template-columns: 2fr 1fr;
    max-width: 1000px;
	display: grid;
   gap: 4rem;
  margin: 0 auto;
}

.contact-form {
   background: white;
    padding  :   2.5rem;
   border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
       font-weight  :      600;
   color: #374151;
  margin-bottom: 0.5rem; 
	
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
       padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius   :   8px;
   font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
   border-color :  #2563eb;
}

.submit-button {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
   color: white;
   padding: 14px 28px;
  border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
    width   :    100%;
	
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.contact-info {
	background: white; 
	       padding: 2.5rem; 
	    border-radius: 12px; 
	  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); 
	    height   :       fit-content;
}

.contact-info h3 {
   font-size: 1.5rem;
   color: #1f2937;
    margin-bottom: 2rem;
}

.contact-item

{
	margin-bottom: 2rem;
}

.contact-item strong {
	 display: block;
  color: #1f2937;
  margin-bottom     :        0.5rem;
}

.contact-item p {
    color: #6b7280;
	 line-height: 1.6;
}

.main-footer {
	padding: 60px 2rem 20px;

	  color: white;

	                    background  :       #1f2937;
}

.footer-content {
     display: flex;
		 justify-content: space-between;
    align-items: start;
  margin-bottom: 3rem;
}

.footer-brand .footer-logo

{
  height: 50px;
  filter: brightness(0) invert(1);
}

.footer-info {
   display  :      flex;
	gap: 4rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
   font-size: 1.1rem;
}

.footer-section ul {
               list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
} 

.footer-section ul li a {
   color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: white;
}

.footer-section p {
	color: #d1d5db;
   line-height   :      1.6;
      margin-bottom  :        0.5rem;
}

.footer-bottom {
   border-top: 1px solid #374151;
    padding-top: 1.5rem;
  text-align: center;
    color   :  #9ca3af;
}@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero-section {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 140px 2rem 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-info {
        flex-direction: column;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        text-align: center;
    }
}.animate-in {
   animation  :      fadeInUp 0.6s ease forwards; 
	
}@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.about-hero {
    padding: 120px 2rem 60px;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.about-hero-content {
	 max-width: 800px;
  margin    : 0 auto;
    text-align: center;
}

.about-hero h1 {
   font-size: 3rem;
                    color: #1f2937;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.about-hero p		{
          font-size: 1.2rem;
   color: #6b7280;
  line-height:     1.7;
}

.mission-section

{
  padding: 80px 2rem;
     }

.mission-content {
    display: flex;
  align-items: center;
    gap: 4rem;
}

.mission-text {
	flex  : 1;
}

.mission-text h2 {
  font-size: 2.5rem;
   color: #1f2937;
                    margin-bottom: 1.5rem;
}

.mission-text p {
    color: #6b7280;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.mission-image {
  flex: 1;
}

.mission-image img    {
	 width:     100%;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.values-section  
  {
   padding: 80px 2rem;
   background: #f8fafc;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
        color: #1f2937;
  margin-bottom: 3rem;
}

.values-grid {


               display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;


}

.value-card {
    background: white;
  padding: 2.5rem;
    border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-card h3     {
   font-size: 1.5rem;
    color: #1f2937;
   margin-bottom: 1rem;
}

.value-card p {
  color     :    #6b7280;
          line-height: 1.7;
}

.experience-section {
  padding: 80px 2rem;
}

.experience-content {
  display: flex;
    align-items: center;
  gap: 4rem;
}

.experience-image {
	flex: 1;
}

.experience-image img {
         width: 100%;
   border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.experience-text {
  flex: 1;
}

.experience-text h2 {
  font-size: 2.5rem;
     color: #1f2937;
   margin-bottom  :       2rem;
}

.experience-stats {
   display: grid;
  grid-template-columns: repeat(3, 1fr);
     gap: 1.5rem;
     margin-bottom: 2rem;
}

.stat-item    {
	text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 12px;
    color: white;
}

.stat-item h3 {
	font-size: 2.5rem;
  font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.9rem;

	    opacity     :     0.9;
}

.approach-section {
   padding: 80px 2rem;
  background: #f8fafc;
}

.approach-section h2 {
               text-align: center;
   font-size: 2.5rem;
  color: #1f2937;
    margin-bottom: 3rem;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.approach-step {
   background   :  white;
  padding :  2rem;
    border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
   position: relative;
   overflow: hidden;
}

.approach-step::before {
  content: '';
	position: absolute;
  top: 0;
   left: 0;
  width: 100%;
   height: 4px;
  background: linear-gradient(135deg, #10b981, #059669); 

}

.step-number {
    display: inline-block;
    width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
    border-radius: 50%;
   text-align: center;
   line-height: 40px;
    font-weight: 700;
	margin-bottom: 1rem;
}

.approach-step h3 {
   font-size:   1.25rem;
   color: #1f2937;
    margin-bottom: 1rem;
}

.approach-step p {
   color: #6b7280;
  line-height: 1.6;
}

.expertise-areas {
    padding:      80px 2rem;
}

.expertise-content {
  display: flex;
   align-items: center;
   gap: 4rem;
}

.expertise-text	{
    flex: 1;
}

.expertise-text h2 {
  font-size   :        2.5rem;
  color: #1f2937;
    margin-bottom: 2rem;
}

.expertise-list {

    list-style     : none;
  margin-bottom: 2rem;
     }

.expertise-list li {
    padding: 0.75rem 0;
  position: relative;
  color: #374151;
    padding-left: 2rem;
   border-bottom :     1px solid #e5e7eb;
}

.expertise-list li::before {
  content: "→";
   position: absolute;
   left: 0;
    color: #2563eb;
	 font-weight: bold;
}

.expertise-text p {
  color: #6b7280;
  font-size: 1.1rem;
   line-height: 1.7;
}



.expertise-image {
    flex  :  1;
}

.expertise-image img {
    width: 100%;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.commitment-section {
   padding: 80px 2rem;
  background: linear-gradient(135deg, #1f2937, #111827);
	color: white;
}

.commitment-content {
    text-align: center;
  max-width: 1000px;
  margin: 0 auto;
} 

.commitment-content h2 {
  font-size: 2.5rem;

   margin-bottom     :     1.5rem;
}

.commitment-content > p {
   font-size: 1.2rem;
    opacity     :      0.9;
   margin-bottom: 3rem;
} 

.commitment-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
   margin-top: 3rem;
}

.feature-item {
  background: rgba(255, 255, 255, 0.1);
               padding: 2rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.feature-item h4 {
  font-size: 1.25rem;
   margin-bottom: 1rem;
}

.feature-item p {
	 opacity     :       0.9;
   line-height: 1.6;


}

.thankyou-hero {
    padding: 120px 2rem 60px;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
   text-align   :      center;


}

.thankyou-content {
   max-width: 700px;
   margin: 0 auto;
}

.thankyou-icon {
	margin-bottom: 2rem;
}

.success-checkmark {
   width :   80px;
    height: 80px;
                    margin: 0 auto 2rem;
    position: relative;
}

.success-checkmark .check-icon {
  width: 80px;
    height: 80px;
  position: relative;
   border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #059669);
      margin: 0 auto;
}


.success-checkmark .check-icon::after {
  content: '';
    position: absolute;
  width: 100%;
   height: 100%;
    border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #059669);
    animation: checkmark-pulse 2s infinite;
}

.success-checkmark .icon-line {
	position: absolute;
    background: white;
  height: 3px;
    border-radius: 2px;
  top: 50%;
    left: 50%; 
	
}

.success-checkmark .line-tip {
 width: 12px;
  transform: translate(-50%, -50%) rotate(45deg);
	transform-origin: left;
  animation: checkmark-line-tip 0.75s;
}

.success-checkmark .line-long {


   width: 25px;
  transform: translate(-50%, -50%) rotate(-45deg);
   transform-origin: left;
  animation: checkmark-line-long 0.75s;


}

.thankyou-content h1 {
   font-size: 2.5rem;
    color: #1f2937;
   margin-bottom: 1.5rem;
  font-weight     :     700;
}

.thankyou-message {
    font-size: 1.1rem;
	    color: #6b7280;
	   line-height: 1.7;
		margin-bottom: 2rem;
}

.next-steps {
  padding: 80px 2rem; 

}

.next-steps h2 
 {
   text-align  :        center;
               font-size :  2.5rem;
		color: #1f2937;
   margin-bottom: 3rem;
	
}

.steps-timeline {
     max-width: 800px;
 margin: 0 auto;
}

.timeline-step {
    display: flex;
   align-items: flex-start;
   gap: 2rem;
     margin-bottom: 3rem;
   position: relative;
}

.timeline-step::before
{
  content: '';
  position : absolute;
                    left: 25px;
   top: 50px;
   width: 2px;
  height: calc(100% + 1rem);
   background :      #e5e7eb;
   z-index: 1;
}

.timeline-step:last-child::before


{
     display: none;
}

.step-marker {
    width: 50px;
    height: 50px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
	 color: white;
   border-radius:50%;
    display: flex;
   align-items: center;
  justify-content: center;
    font-weight:        700;
	font-size   :        1.2rem;
  position: relative;
   z-index: 2;


}

.step-content {
  flex: 1;
  background: white;
    padding: 1.5rem;
	 border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.step-content h3 {
   font-size: 1.25rem;
   color: #1f2937;
	margin-bottom: 0.5rem;
}

.step-content p {
    color: #6b7280;
  line-height: 1.6;
}

.helpful-resources
{
  padding: 80px 2rem;
  background :    #f8fafc;
}

.helpful-resources h2 {
       text-align: center;
 font-size :2.5rem;
  color: #1f2937;
   margin-bottom: 1rem;


}

.helpful-resources > p {

	   text-align: center;
               color: #6b7280;
  font-size: 1.1rem;
                    margin-bottom: 3rem;
	}

.resources-grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap   :2rem;
    max-width: 800px;
    margin: 0 auto;
}

.resource-card {
  background: white;
  border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-5px);
}

.resource-card img 
 {
	height: 180px;
    width:      100%;
   object-fit  :       cover;
}

.resource-content {
    padding: 1.5rem;

}

.resource-content h3 {
  font-size: 1.25rem;
  color: #1f2937;
    margin-bottom   :   1rem;
}


.resource-content p

{
  color: #6b7280;
      line-height: 1.6;
}

.contact-reminder {
        padding: 80px 2rem;
}

.reminder-content {
   max-width: 800px;
  margin: 0 auto;
    text-align: center;


}

.reminder-content h2 {
  font-size: 2.5rem;
       color: #1f2937;
    margin-bottom: 1.5rem;
}

.reminder-content > p {
    color: #6b7280;
   font-size: 1.1rem;
   line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-details {
    display: flex;
  justify-content: center;
   gap: 3rem;
   margin-bottom     :   3rem;
     flex-wrap: wrap;
}

.contact-item {
	text-align: center;
}

.contact-item strong {

	                    margin-bottom: 0.5rem;
  color: #1f2937;
	display: block;

}

.back-actions {


  display: flex;
    gap: 1rem;
    justify-content: center;
   flex-wrap    :  wrap;


}

.btn-primary, .btn-secondary {
    padding: 14px 28px;
  text-decoration: none;
  font-weight: 600;
                    border-radius: 8px;
	transition: all 0.3s ease;
   display    : inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
   border: 2px solid #2563eb;
  color: #2563eb;
  background: transparent;
}

.btn-secondary:hover {
   background: #2563eb;
    color: white;
}@keyframes checkmark-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

@keyframes checkmark-line-tip {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }
    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }
    100% {
        width: 25px;
        left: 14px;
        top: 45px;
    }
}

@keyframes checkmark-line-long {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    84% {
        width: 55px;
        right: 0px;
        top: 35px;
    }
    100% {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .mission-content,
    .experience-content,
    .expertise-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .experience-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .timeline-step::before {
        display: none;
    }
    
    .contact-details {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .back-actions {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }
}