* {
   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: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
         padding: 0 20px;

}

.main-navigation {


   position: fixed;
  top: 0;
    width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
   z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.nav-container {
   display: flex;
    align-items  :       center;
    margin: 0 auto;
   justify-content    : space-between;
   padding: 1rem 20px;
  max-width: 1200px;
}

.brand-logo .logo-img {
  height: 45px;
  width: auto;
}

.nav-links {
         display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
   text-decoration: none;
    color   :       #2c3e50;
   font-weight: 500;
    transition: color 0.3s ease;
  position  :      relative;
}

.nav-links a:hover {

	  color: #667eea;}


.nav-links a::after {
  content: '';
   position: absolute;
   width: 0;
    height: 2px;
  bottom: -5px;
  left: 0;
        background: #667eea;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
  display: none;
	flex-direction: column;
    cursor: pointer;
   gap: 4px;
}

.mobile-menu-toggle span {
	width: 25px;
   height: 3px;
   background: #2c3e50;
  transition: all 0.3s ease;
}

.hero-section {
	 margin-top: 80px;
	 padding :        80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
          color: white;
	display: flex;
  align-items: center;
   min-height: 70vh;
}

.hero-section .content-wrapper {
      display: grid;
    grid-template-columns: 1fr 1fr;
 gap: 60px;
  align-items: center;
}

.hero-content h1 {
   font-size   :     3.2rem;
   font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
   opacity: 0.9;
				 font-size: 1.25rem;
   line-height: 1.7;
    margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
    gap:      1rem;
  flex-wrap: wrap;
}

.primary-btn, .secondary-btn {
   padding: 15px 30px;
    text-decoration :    none;
    border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  text-align    :       center;
}

.primary-btn   {
  background: #ff6b6b;
   color: white;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.primary-btn:hover {
   background: #ff5252;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

.secondary-btn {
   background: transparent;
  color  :white;
  border: 2px solid white;
}

.secondary-btn:hover {
	background: white;
  color: #667eea;
  transform: translateY(-2px);
}

.hero-visual img {
  width: 100%;
  height: auto;
   border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: rotate(2deg);
    transition: transform 0.3s ease;
}

.hero-visual img:hover {
  transform: rotate(0deg) scale(1.02);
}

.introduction-segment {
   padding: 100px 0;
    background: white;
}

.introduction-segment h2{


   text-align: center;
   font-size: 2.5rem;
    margin-bottom    :        60px;
      color: #2c3e50;


}

.intro-grid {
  display: grid;
  grid-template-columns:       1fr 1fr;
  gap: 50px;
   align-items: center;
}

.intro-text p {
   font-size: 1.1rem;
  margin-bottom :      1.5rem;
   color :   #555;
	line-height: 1.8; 
	
}

.intro-image img {
  width: 100%;
   border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}  

.services-overview {
          padding: 100px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.services-overview h2 {

         text-align: center;
    font-size: 2.5rem;
  margin-bottom    :       60px;
    color: #2c3e50; 
	

}

.services-grid {
   display     :     grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
   background: white;
  padding: 40px;
   border-radius :        15px;
    text-align :   center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}  

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-card img {

    width: 100%;
   height: 200px;
    object-fit: cover;
   border-radius: 10px;
	margin-bottom: 25px;


}

.service-card h3
{
	margin-bottom   :      20px;
  font-size: 1.5rem;
    color: #2c3e50;
}

.service-card p {
   color: #666;

	   line-height: 1.7;
}

.methodology-showcase {
    padding: 100px 0;
  background    :white;
     }

.methodology-showcase h2 {
   text-align: center;
   font-size: 2.5rem;
  margin-bottom: 60px;
    color: #2c3e50;
}

.method-steps {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap :  40px;
}

.step-item {
  text-align: center;
   padding: 30px;
   border-radius: 10px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color  :   white;
  transition: transform 0.3s ease;
}

.step-item:hover {
  transform: translateY(-5px);
}

.step-item h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.step-item p {
    line-height: 1.6;
          opacity  :   0.9;
}

.cta-section {
   padding: 80px 0;
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
  color   :white;
    text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
	 margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
  font-size: 1.2rem;
   margin-bottom     :       40px;
   opacity: 0.9;
   max-width: 800px;
   margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
   padding: 20px 40px;
    background: white;
   color: #ff6b6b;
  text-decoration: none;
   border-radius    :10px;
   font-weight: 700;
  font-size   :    1.1rem;
   transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.contact-section     {
     padding: 100px 0;
   background: white; 
	


}

.contact-section h2 {
               text-align: center;
    font-size: 2.5rem;
   margin-bottom: 60px;
    color: #2c3e50;
}

.contact-grid {
	display: grid;
  grid-template-columns: 1fr 2fr;
                    gap   :60px;
}

.contact-info h3 {
	   margin-bottom: 30px; 
	   color   : #2c3e50; 
	    font-size: 1.5rem;
	

}

.contact-item {
   margin-bottom: 25px;
}

.contact-item strong {
    color: #667eea;
    display: block;
  margin-bottom: 5px;
} 

.contact-form {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 40px;
    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom  :    25px;
}

.form-group label {
    display: block;
   margin-bottom: 8px;
  font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
   padding   :   12px 15px;
               border: 2px solid #e0e0e0;
    border-radius: 8px;
  font-size: 1rem;
    transition   :  border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline     :   none;
   border-color: #667eea;
}

.submit-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding:       15px 30px;
  border: none;
    border-radius: 8px;
   font-size: 1.1rem;
   font-weight   :  600;
  cursor: pointer;
   transition: all 0.3s ease;
    width: 100%; 

}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);


}

.main-footer {
    background: #2c3e50;
    color: white;
  padding: 60px 0 20px;
}

.footer-content {
	 max-width: 1200px;
   margin: 0 auto;
       padding: 0 20px;
   display: grid;
  grid-template-columns:   1fr 2fr;
    gap: 60px;
}

.footer-logo {
   height: 50px;
    width: auto;
  filter: brightness(0) invert(1);
}

.footer-info    {
       display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
	}

.footer-section h4 {
   margin-bottom: 20px;
  color: #667eea;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li


{
  margin-bottom: 10px;
}

.footer-section a {
	color: #ecf0f1;
  text-decoration: none;
   transition: color 0.3s ease;
}

.footer-section a:hover {
   color: #667eea;
}

.footer-bottom {
    max-width:  1200px;
    margin: 40px auto 0;
  padding: 20px;
    border-top: 1px solid #34495e;
      text-align: center;
    color: #95a5a6;
}@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hero-section .content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .method-steps {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .primary-btn, .secondary-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

.nav-links a.active {
    color: #667eea;
    font-weight: 600;
}

.nav-links a.active::after {
    width: 100%;
}

.page-hero {
    margin-top: 80px;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ffffff" opacity="0.05"><polygon points="0,0 1000,0 1000,100 0,80"/></svg>');
    background-size: cover;
}

.page-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-hero .hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.about-intro {
    padding: 100px 0;
    background: white;
}

.intro-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 700;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.intro-visual img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.intro-visual img:hover {
    transform: rotate(0deg) scale(1.02);
}

.mission-vision {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.mission-item, .vision-item {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mission-item h3, .vision-item h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.mission-item p, .vision-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.our-approach {
    padding: 100px 0;
    background: white;
}

.our-approach h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2c3e50;
}

.approach-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.approach-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.approach-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.expertise-areas {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.expertise-areas h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2c3e50;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.expertise-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.expertise-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.expertise-card p {
    color: #666;
    line-height: 1.6;
}

.our-story {
    padding: 100px 0;
    background: white;
}

.our-story h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2c3e50;
}

.story-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
    text-align: right;
}

.timeline-item:nth-child(odd) .story-content {
    margin-right: 60px;
}

.timeline-item:nth-child(even) .story-content {
    margin-left: 60px;
}

.year {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.story-content {
    flex: 1;
    padding: 20px 25px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.story-content h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 600;
}

.story-content p {
    color: #666;
    line-height: 1.6;
}

.values-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.value-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-item p {
    line-height: 1.6;
    opacity: 0.9;
}

.why-quantum {
    padding: 100px 0;
    background: white;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.why-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.why-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transform: rotate(2deg);
}

.why-image img:hover {
    transform: rotate(0deg) scale(1.02);
}

.thankyou-main {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.thankyou-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.success-content {
    background: white;
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.success-icon {
    margin-bottom: 40px;
}

.checkmark-animation {
    display: inline-block;
}

.checkmark-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #4CAF50;
    position: relative;
    animation: checkmark-pop 0.6s ease-in-out;
}

.checkmark-check {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 25px;
    height: 15px;
    border: 3px solid white;
    border-top: none;
    border-right: none;
    transform: translate(-50%, -60%) rotate(-45deg);
    animation: checkmark-draw 0.4s ease-in-out 0.2s forwards;
    opacity: 0;
}

@keyframes checkmark-pop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@keyframes checkmark-draw {
    0% { opacity: 0; transform: translate(-50%, -60%) rotate(-45deg) scale(0); }
    100% { opacity: 1; transform: translate(-50%, -60%) rotate(-45deg) scale(1); }
}.success-content h1
{
       font-size: 2.8rem;
  color: #2c3e50;
    margin-bottom: 20px;
   font-weight: 700;
}

.success-message{
  font-size: 1.2rem;
    color: #666;
  margin-bottom   :  50px;
  line-height: 1.6;

}

.next-steps {
    margin-bottom: 50px;
}

.next-steps h2 {
	font-size: 2rem; 
	 color: #2c3e50; 
	    margin-bottom: 40px;
}

.steps-grid {


	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
               margin-bottom:      40px;

}

.step-card {
  padding: 30px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
   border-left: 4px solid #667eea;
   transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-number {
	 width: 40px;
  height: 40px;
                    background: #667eea;
  color: white;
  border-radius: 50%;
   display     :flex;
	 align-items   :        center;
    justify-content: center;
   font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 20px;
}

.step-card h3 {
		font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.step-card p {
   color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

.additional-info {
    margin-bottom     :      50px;
}

.additional-info h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 30px;
}

.info-content {
    display: grid;
	grid-template-columns  :     1fr 1fr;
    gap: 40px;
  align-items: center;
}

.info-text p {
  font-size: 1.1rem;
  line-height   :        1.7;
  color: #555;
   margin-bottom: 1.5rem;
   text-align: left;
}

.info-visual img {
	 width: 100%;
  border-radius     :  12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.action-buttons {
  display: flex;

		 gap: 20px;

	   justify-content: center;

	    margin-bottom: 50px;

	   flex-wrap: wrap;
}

.contact-reminder {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #ff6b6b;
}

.contact-reminder h3    {
    font-size: 1.5rem;
  color: #2c3e50;
 margin-bottom :        15px;
   font-weight  : 600;
}

.contact-reminder p {
   color: #666;
	margin-bottom: 15px;
}

.contact-details p {
	  font-weight: 500;
    color: #555;
  margin-bottom: 8px;}@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    .intro-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .approach-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .story-timeline::before {
        left: 40px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        text-align: left !important;
    }
    
    .timeline-item .story-content {
        margin-left: 60px !important;
        margin-right: 0 !important;
    }
    
    .why-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .success-content {
        padding: 40px 30px;
    }
    
    .success-content h1 {
        font-size: 2.2rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .info-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-btn, .secondary-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 1.8rem;
    }
    
    .page-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .success-content {
        padding: 30px 20px;
    }
    
    .success-content h1 {
        font-size: 1.9rem;
    }
    
    .success-message {
        font-size: 1.1rem;
    }
    
    .contact-reminder {
        padding: 20px;
    }
}