* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
.logo a img {
  height: 50px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}

.logo a:hover img {
  transform: scale(1.05);
  opacity: 0.9;
}

 /* Navbar */

.navbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo img {
  width: 70px;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  background: none;
  border: none;
  color: #333;
}

.nav-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  transition: max-height 0.4s ease-in-out;
}

.nav-left,
.nav-right {
  display: flex;
  gap: 15px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  padding: 5px;
  font-size: 0.9rem;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 0;
  background-color: #FF6600
;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #f4f6f9;
  color: #333;
}

 .accreditation{
  margin-top: 50px;
   font-size: 13px;
   color: #999;
  text-align: center;
  
  
  }

h1, h2, h3, h4 {
  font-weight: 600;
}

a{
    text-decoration: none;
    color: inherit;
}

a:hover{
    color: #ff6600;
}

.po-header {
  position: relative;
  height: 60vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.po-header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.po-header p{ 
    max-width: 1000px;
    margin-top:16px;
    
}

.slide-btn {
    margin-top: 16px;
  padding: 8px 15px;
  background-color: #FF6600;
  color: #fff;
  border: 2px solid #FF6600;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
  transition: all 0.3s ease;
}
.slide-btn2 {
    margin-top: 16px;
  padding: 8px 15px;
  background-color: #400080;
  color: #fff;
  border: 2px solid #400080 ;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
  transition: all 0.3s ease;
}

.slide-btn:hover, .slide-btn2:hover {
  transform: scale(1.1);
}

.header-content-buttons{
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    justify-content: center;
}

.header-content {
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  font-size: 1rem;
  color: #666;
  margin-bottom: 40px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}
.intro-section {
  padding: 40px 0;
  background-color: #f8f9fa;
  text-align: center;
}

.intro-section .container {
  max-width: 800px;
  margin: auto;
}

.intro-section h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

.intro-section h3 {
  margin-top: 20px;
  margin-bottom: 15px;
  color: #555;
}

.intro-section p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 10px;
}

.step-box {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.step-box:hover {
  transform: translateY(-5px);
}

/* Responsive Navbar */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    position: absolute;
    top: 15px;
    right: 20px;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-left,
  .nav-right {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .nav-links a {
    width: 100%;
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
  }
}



 /* Make WhatsApp and Email buttons side-by-side */
.cta-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.whatsapp-btn,
.email-btn {
  background-color: #400080;
  color: white;
  padding: 10px 16px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.email-btn {
  background-color: #777;
}

.whatsapp-btn:hover {
  background-color: #128c7e;
}

.email-btn:hover {
  background-color: #005fa3;
}

  
  .circle {
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background-color: #FF6600

;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
  }
  
  .step-box h4 {
    margin-bottom: 10px;
    font-size: 1rem;
  }
  
  .step-box p {
    font-size: 0.9rem;
    color: #555;
  }
  
  .po-form {
  max-width: 1000px;
  margin: 40px auto;
  background: #fff;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1rem;
  color: #333;
}

.po-form h2 {
  text-align: center;
  font-weight: 700;
  font-size: 1.8rem;
  color: #400080; /* Deep purple */
  margin-bottom: 25px;
}

.po-form label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
  color: #555;
}

.po-form input[type="text"],
.po-form input[type="email"],
.po-form input[type="number"],
.po-form input[type="tel"],
.po-form textarea,
.po-form input[type="file"] {
  width: 100%;
  padding: 12px 15px;
  border: 1.8px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.po-form input[type="text"]:focus,
.po-form input[type="email"]:focus,
.po-form input[type="number"]:focus,
.po-form textarea:focus,
.po-form input[type="file"]:focus {
  outline: none;
  border-color:  #400080


; /* Purple focus */
  box-shadow: 0 0 5px rgba(106, 27, 154, 0.5);
}

.po-form textarea {
  resize: vertical;
  min-height: 100px;
}

.po-form small {
  color: #777;
  font-size: 0.85rem;
  margin-top: 3px;
  display: block;
}

.po-form .note {
  font-style: italic;
  font-size: 0.9rem;
  color: #666;
  margin-top: 10px;
  text-align: center;
}

.po-form button[type="submit"] {
  background:#FF6600;
  color: #fff;
  font-weight: 700;
  padding: 14px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background 0.3s ease;
  width: 100%;
  margin-top: 20px;
}

.po-form button[type="submit"]:hover {
  background: linear-gradient(45deg, #9c27b0, #ce93d8);
}

.po-form h3 {
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #400080;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .po-form {
    padding: 25px 20px;
    margin: 20px 10px;
  }
}

  
  .note {
    font-size: 0.85rem;
    color: #666;
    margin-top: 10px;
  }
  
  button[type="submit"] {
    background-color: #FF6600;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 10px;
    width: fit-content;
  }
  
  button[type="submit"]:hover {
    background-color: #FF6600
;
  }
  
  @media (max-width: 768px) {
    .po-header {
      height: 60vh;
      text-align: center;
      padding: 0 10px;
    }
  
    .container {
      padding: 20px 15px;
    }
  
    .section-title {
      font-size: 1.5rem;
    }
  
    .section-subtitle {
      font-size: 0.95rem;
    }
  
    .steps-grid {
      grid-template-columns: 1fr; 
    }
  
    .step-box {
      padding: 20px 15px;
    }
  
    .po-form {
      gap: 10px;
    }
  
    button[type="submit"] {
      width: 100%;
      text-align: center;
    }
  }

  /* Responsive */
  @media (max-width: 768px) {
    .features-grid {
      grid-template-columns: 1fr;
    }
  }
  .footer {
    background-color: #400080;
    color: #fff;
    padding: 50px 20px 20px;
    font-size: 0.95rem;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
    border-bottom: 1px solid #222;
  }

  .empowering{
    margin-bottom: 10px;
  }
  
  .footer-col {
    flex: 1;
    min-width: 220px;
  }
  
  .footer-logo {
    width: 200px;
    margin-bottom: 10px;
  }
  
  .footer-col h4 {
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #fff;
  }
  
  .footer-col ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-col ul li {
    margin-bottom: 8px;
  }
  
  .footer-col ul li a {
    text-decoration: none;
    color: #ccc;
    transition: color 0.3s;
  }
  
  .footer-col ul li a:hover {
    color: #FF6600;
    text-decoration: underline;
  }
  
  .subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }
  
  .subscribe-form input {
    padding: 8px 10px;
    border: none;
    border-radius: 4px;
  }
  
  .subscribe-form button {
    background-color: #FF6600;
    color: white;
    padding: 8px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    width: 275px;
  }
  
  .subscribe-form button:hover {
    background-color: #FF6600;
  }
  
  .footer-bottom {
    padding-top: 15px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px ;
    justify-content: space-between;
    align-items: center;
    margin: 0 10% ;
  }
  
  .footer-bottom p {
   margin: 0 ;
    font-size: 0.85rem;
  }
  
  .footer-links a {
    color: #999;
    margin-left: 15px;
    font-size: 0.85rem;
    text-decoration: none;
  }
  
  .footer-links a:hover {
    color: #FF6600;
    text-decoration: underline;
  }
  
  /* Social Icons */
  .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
  }
  
  .social-icons a {
    color: #ccc;
    font-size: 1.2rem;
    transition: color 0.3s;
  }
  
  .social-icons a:hover {
    color: #fff;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
  
    .footer-col {
      align-items: center;
    }
  
    .footer-bottom {
      flex-direction: column;
    
      text-align: center;
      border-top: 1px solid #4a1e64;
    }
  
    .footer-links {
      margin-top: 10px;
    }

    .subscribe-form{
      margin-bottom: 10px;
    }
    
  }


  @media (max-width: 768px) {
  .bottom-part img{
    display: none;
  }
  
}

@media (min-width:769px) {
  .bottom-part{
    display: flex;
    flex-direction: row;
    padding-left: 10%;
    background-color: #f4f6f9;
   
   
  }
  
  .bottom-part img{
    width: 350px;
    height: 350px;
   
    
  }
}
.bottom-part{
  display: flex;
  flex-direction: row;
  padding-left: 10%;
  background-color: #f4f6f9;
 
}

.bottom-part img{
  width: 350px;
  height: 350px;
  border-radius: 25px;
  margin-top: 115px;
 
}
  
  /* Social Icons */
  .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
  }
  
  .social-icons a {
    color: #ccc;
    font-size: 1.2rem;
    transition: color 0.3s;
  }
  
  .social-icons a:hover {
    color: #fff;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
  
    .footer-col {
      align-items: center;
    }
  
    .footer-bottom {
      flex-direction: column;
      gap: 10px;
      text-align: center;
    }
  
    .footer-links {
      margin-top: 10px;
    }
    
  }
  @media (max-width: 768px) {
    .menu-toggle {
      display: block;
    }
  
    .nav-links {
      flex-direction: column;
      align-items: flex-start;
      width: 100%;
      display: none;
      background-color: #fff;
      padding: 10px 20px;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .nav-left,
    .nav-right {
      flex-direction: column;
      width: 100%;
      gap: 10px;
      margin: 10px 0;
    }
  
    .nav-links a {
      width: 100%;
      padding: 10px 0;
      border-bottom: 1px solid #eee;
    }
  }
  
   /* WhatsApp CTA Button */
.whatsapp-cta {
  position: fixed;
  right: 20px;
  bottom: 30px;
  z-index: 999;
}

.whatsapp-cta a {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #25d366;
  color: white;
  padding: 10px 15px;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: background 0.3s ease;
}

.whatsapp-cta a:hover {
  background-color: #128c7e;
}

.whatsapp-cta i {
  font-size: 20px;
}
.faq-section {
  background-color: #f4f6f9;
  padding: 40px 20px;
  text-align: center;
}

.faq-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
  margin-right: 28%;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-item:hover {
  background-color: #f1f1f1;
}

.faq-question {
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  color: #333;
  font-size: 0.95rem;
  padding-top: 0;
}

.faq-item.active .faq-answer {
  max-height: max-content; 
  opacity: 1;
  padding-top: 10px;
}

@media screen and (max-width: 600px) {
  .faq-section {
    padding: 20px 10px;
  }

  .faq-section h2 {
    font-size: 1.5rem;
  }

  .faq-question {
    font-size: 1rem;
  }

  .faq-answer {
    font-size: 0.9rem;
  }
}



/* popup.css */

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.popup-box {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 20px;
    padding: 40px 35px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.25),
        0 15px 30px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.popup-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #25D366, #128C7E);
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 0.6s ease-out 0.2s both;
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transform: translate3d(0,0,0);
    }
    40%, 43% {
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transform: translate3d(0, -15px, 0);
    }
    70% {
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transform: translate3d(0, -7px, 0);
    }
    90% {
        transform: translate3d(0,-2px,0);
    }
}

.popup-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
}

.popup-message {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 25px;
}

.whatsapp-highlight {
    font-weight: 800;
    color: #25D366;
    font-size: 1.15rem;
    text-shadow: 0 1px 2px rgba(37, 211, 102, 0.2);
    display: inline-block;
    padding: 8px 12px;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(18, 140, 126, 0.1));
    border-radius: 8px;
    border: 1px solid rgba(37, 211, 102, 0.2);
    margin: 5px 0;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 5px rgba(37, 211, 102, 0.2); }
    to { box-shadow: 0 0 15px rgba(37, 211, 102, 0.4); }
}

.close-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.close-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.close-btn:hover::before {
    left: 100%;
}

.close-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5);
}

.close-btn:active {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.demo-trigger {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    color: #667eea;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.demo-trigger:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 480px) {
    .popup-box {
        padding: 30px 25px;
        margin: 20px;
    }
    
    .popup-title {
        font-size: 1.3rem;
    }
    
    .popup-message {
        font-size: 1rem;
    }
    
    .whatsapp-highlight {
        font-size: 1.1rem;
        padding: 6px 10px;
    }
}
@keyframes popup-fade {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.faq-right {
  flex: 1 1 40%;
  min-width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
}

@media (max-width: 768px) {
  .bottom-part img{
    display: none;
  }
  
}

@media (min-width:769px) {
  .bottom-part{
    display: flex;
    flex-direction: row;
    padding-left: 10%;
    background-color: #f4f6f9;
   
  }
  
  .bottom-part img{
    width: 350px;
    height: 350px;
    border-radius: 100%;
   
  }
}
.bottom-part{
  display: flex;
  flex-direction: row;
  padding-left: 10%;
  background-color: #f4f6f9;
 
}

.bottom-part img{
  width: 350px;
  height: 350px;
  border-radius: 25px;
  
}

/* ==========  GRID-STYLE RADIO BUTTONS  ========== */
.radio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
}

.radio-card {
  position: relative;
  display: flex;
  align-items: center;
  padding: 15px 20px;
  border: 2px solid #dde1e5;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #ffffff;
}

.radio-card:hover {
  border-color: #764ba2;
  background-color: #f8fcff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.radio-card input[type="radio"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #bdc3c7;
  border-radius: 50%;
  margin-right: 12px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.radio-card input[type="radio"]:checked {
  border-color: #764ba2;
  background-color: #764ba2;
}

.radio-card input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ffffff;
}

.radio-card input[type="radio"]:checked ~ .radio-label {
  color: #764ba2;
  font-weight: 600;
}

.radio-card:has(input[type="radio"]:checked) {
  border-color:#764ba2;
  background-color: #f8fcff;
  box-shadow: 0 2px 8px rgba(52, 152, 219, 0.2);
}

.radio-label {
  font-size: 0.95rem;
  color: #2c3e50;
  cursor: pointer;
  transition: color 0.2s ease;
  user-select: none;
}

.po-form button[type="submit"]:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(52, 152, 219, 0.3);
}

/* ==========  RESPONSIVE DESIGN  ========== */
@media (max-width: 768px) {
  .po-form-section {
    padding: 40px 15px;
    margin: 20px 0;
  }

  .po-form-section h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  .radio-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .container {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .po-form-section h2 {
    font-size: 1.3rem;
  }

  .po-form-section h3 {
    font-size: 1rem;
  }

  .po-form input[type="text"],
  .po-form input[type="tel"],
  .po-form input[type="email"],
  .po-form textarea {
    padding: 10px 12px;
    font-size: 0.95rem;
  }

  .radio-card {
    padding: 12px 15px;
  }

  .radio-label {
    font-size: 0.9rem;
  }

  .po-form button[type="submit"] {
    padding: 12px 25px;
    font-size: 1rem;
  }
}