 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
     line-height: 1.6;
     color: #333;
     background: #f8f8f8;
 }

 /* Navigation */
 nav {
     background: #e74c3c;
     padding: 1rem 2rem;
     position: fixed;
     width: 100%;
     top: 0;
     z-index: 1000;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
 }

 .nav-container {
     max-width: 1400px;
     margin: 0 auto;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .nav-brand {
     display: flex;
     align-items: center;
     gap: 0.8rem;
     color: white;
     text-decoration: none;
 }

 .nav-logo {
     width: 40px;
     height: 40px;
     background: white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 25px;
 }

 .nav-logo img {
     width: 30px;
     height: 30px;
 }

 .nav-brand-text {
     font-size: 1.3rem;
     font-weight: 500;
     letter-spacing: 1px;
 }

 .nav-menu {
     list-style: none;
     display: flex;
     gap: 2rem;
     align-items: center;
 }

 .nav-menu li {
     position: relative;
 }

 .nav-menu a {
     color: white;
     text-decoration: none;
     font-weight: 500;
     transition: opacity 0.3s;
     display: flex;
     align-items: center;
     gap: 0.3rem;
 }

 .nav-menu a:hover {
     opacity: 0.8;
 }

 /* Dropdown Styles */
 .dropdown {
     position: relative;
 }

 .features-text {
    font-weight: 600;
}

 .dropdown-toggle {
     cursor: pointer;
     display: flex;
     align-items: center;
     gap: 0.3rem;
     padding: 0.5rem;
     user-select: none;
     color: white;
 }

 .dropdown-arrow {
     font-size: 0.7rem;
     transition: transform 0.3s;
 }

 .dropdown.active .dropdown-arrow {
     transform: rotate(180deg);
 }

 .dropdown-menu {
     position: absolute;
     top: 100%;
     left: 50%;
     transform: translateX(-50%);
     background: white;
     min-width: 250px;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
     border-radius: 10px;
     opacity: 0;
     visibility: hidden;
     transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
     margin-top: 0.5rem;
     padding: 0.5rem 0;
     transform: translateX(-50%) translateY(-10px);
     max-height: 0;
     overflow: hidden;
 }

 .dropdown.active .dropdown-menu {
     opacity: 1;
     visibility: visible;
     transform: translateX(-50%) translateY(0);
     max-height: 500px;
 }

 .dropdown-menu li {
     list-style: none;
 }

 .dropdown-menu a {
     display: block;
     padding: 0.8rem 1.5rem;
     color: #666;
     text-decoration: none;
     transition: background 0.3s, color 0.3s;
     border-radius: 5px;
     margin: 0 0.5rem;
 }

 .dropdown-menu a:hover {
     background: #f8f8f8;
     color: #e74c3c;
 }

 .menu-toggle {
     display: none;
     background: none;
     border: none;
     font-size: 1.5rem;
     color: white;
     cursor: pointer;
 }

 /*Main Content*/
 .contact-content {
     max-width: 1200px;
     margin: 0 auto;
     padding: 120px 2rem 60px;
     min-height: calc(100vh - 400px);
 }

 .contact-card {
     background: white;
     border-radius: 20px;
     padding: 3rem;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
     position: relative;
     min-height: 400px;
 }

 .contact-content-wrapper {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 3rem;
     margin-bottom: 2rem;
     align-items: center;
 }

 .contact-left h1 {
     color: #e74c3c;
     font-size: 2.5rem;
     margin-bottom: 1rem;
     align-items: center;
 }

 .contact-left p {
     color: #999;
     font-size: 1.1rem;
     margin-bottom: 2rem;
     align-items: center;
 }

 .contact-info {
     margin-top: 0;
 }

 .contact-right-top {
     display: flex;
     flex-direction: column;
     gap: 1.5rem;
 }

 .info-item {
     display: flex;
     align-items: center;
     gap: 0.8rem;
     margin-bottom: 0;
 }

 .info-icon {
     font-size: 1.3rem;
 }

 .info-text {
     color: #333;
     display: flex;
     gap: 0.5rem;
 }

 .info-label {
     font-weight: 600;
     color: #333;
 }

 .info-value {
     color: #333;
 }

 .social-media {
     display: flex;
     align-items: center;
     gap: 1rem;
 }

 .social-label {
     font-weight: 600;
     color: #333;
     display: flex;
     align-items: center;
     gap: 0.5rem;
 }

 .social-icons {
     display: flex;
     gap: 0.8rem;
 }

 .social-icon {
     width: 35px;
     height: 35px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 5px;
     text-decoration: none;
     transition: transform 0.3s;
     overflow: hidden;
 }

 .social-icon img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .social-icon:hover {
     transform: scale(1.1);
 }


 .contact-bottom {
     position: absolute;
     bottom: 0;
     right: 0;
     max-width: 300px;
 }

 .cat-illustration {
     width: 100%;
     height: auto;
     display: block;
 }

 /* ── FAQ  ── */
.faq-item {
    border-bottom: 1px solid #f0f0f0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.faq-q-text {
    font-size: .9rem;
    font-weight: 700;
    color: #1e1e1e;
    line-height: 1.4;
}

.faq-item.open .faq-q-text {
    color: #e74c3c;
}

.faq-arrow {
    font-size: .7rem;
    color: #bbb;
    flex-shrink: 0;
    transition: transform .25s;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
    color: #e74c3c;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
    font-size: .85rem;
    color: #666;
    line-height: 1.75;
    padding: 0;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding-bottom: 16px;
}

 /* Footer */
 footer {
     background: #e74c3c;
     color: white;
     padding: 3rem 2rem 2rem;
     margin-top: 4rem;
 }

 .footer-content {
     max-width: 1200px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 3rem;
     margin-bottom: 2rem;
 }

 .footer-section h3 {
     margin-bottom: 1rem;
     font-size: 1.2rem;
 }

 .footer-section ul {
     list-style: none;
 }

 .footer-section ul li {
     margin-bottom: 0.5rem;
 }

 .footer-section a {
     color: rgba(255, 255, 255, 0.8);
     text-decoration: none;
     transition: color 0.3s;
 }

 .footer-section a:hover {
     color: white;
 }

 .footer-brand {
     display: flex;
     align-items: center;
     gap: 0.8rem;
     font-size: 1.5rem;
     font-weight: 600;
     margin-bottom: 1rem;
 }

 .footer-brand-icon {
     font-size: 2rem;
     background: white;
     width: 50px;
     height: 50px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .footer-brand-icon img {
    width: 30px;
    height: 30px;
}

 .copyright {
     text-align: center;
     padding-top: 2rem;
     border-top: 1px solid rgba(255, 255, 255, 0.2);
     opacity: 0.8;
 }

 /* Responsive */
 @media (max-width: 968px) {
     .contact-content-wrapper {
         grid-template-columns: 1fr;
     }

     .contact-card {
         text-align: center;
         padding-bottom: 220px;
     }

     .contact-bottom {
         max-width: 250px;
         right: 50%;
         transform: translateX(50%);
     }

     .info-item {
         justify-content: center;
     }

     .social-media {
         justify-content: center;
     }

     .cat-illustration {
         font-size: 150px;
     }
 }

 @media (max-width: 768px) {
     .nav-menu {
         display: none;
         flex-direction: column;
         position: absolute;
         top: 100%;
         left: 0;
         width: 100%;
         background: #e74c3c;
         padding: 1rem 0;
         box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
     }

     .nav-menu.active {
         display: flex;
     }

     .menu-toggle {
         display: block;
     }

     .dropdown {
         width: 100%;
         display: flex;
         flex-direction: column;
         align-items: center;
     }

     .dropdown-toggle {
         justify-content: center;
     }

     /* MOBILE DROPDOWN */
     .dropdown-menu {
         position: static !important;
         transform: none !important;
         box-shadow: none !important;
         padding: 0 !important;
         margin: 0.5rem 0 !important;
         background: transparent !important;
         width: 100% !important;
         min-width: 100% !important;
         border-radius: 0 !important;
         display: none;
     }

     .dropdown.active .dropdown-menu {
         display: flex !important;
         flex-direction: column;
         align-items: center;
         opacity: 1 !important;
         visibility: visible !important;
         max-height: none !important;
     }

     .dropdown-menu li {
         width: 90%;
         max-width: 300px;
         margin: 0;
     }

     .dropdown-menu a {
         padding: 1rem 1.5rem !important;
         margin: 0.3rem 0 !important;
         background: rgba(255, 255, 255, 0.2) !important;
         display: block !important;
         border-radius: 10px !important;
         width: 100% !important;
         text-align: center !important;
         font-size: 0.95rem !important;
         color: white !important;
     }

     .dropdown-menu a:hover {
         background: rgba(255, 255, 255, 0.3) !important;
     }

     .contact-card {
         padding: 2rem;
         padding-bottom: 200px;
     }

     .contact-content-wrapper {
         gap: 2rem;
     }

     .contact-left h1 {
         font-size: 2rem;
     }

     .cat-illustration {
         font-size: 150px;
     }

     .contact-bottom {
         max-width: 200px;
     }

     .cat-emoji {
         font-size: 120px;
     }
 }

 @media (max-width: 480px) {
     .contact-card {
         padding: 1.5rem;
         padding-bottom: 180px;
     }

     .contact-left h1 {
         font-size: 1.8rem;
     }

     .cat-illustration {
         font-size: 120px;
     }

     .contact-bottom {
         max-width: 180px;
     }

     .social-icon {
         width: 30px;
         height: 30px;
     }

     .cat-emoji {
         font-size: 100px;
     }
 }