/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: #ffffff;
    color: #333333;
    padding: 0.75rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    border-bottom: 1px solid #e9ecef;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.8;
}

.header-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    cursor: pointer;
}

.logo i {
    color: #e74c3c;
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.nav {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0 1rem;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav a {
    color: #333333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

.nav a:hover,
.nav a.active {
    color: #000000;
}

/* Top Contact Section */
.top-contact-section {
    background-color: #f8f9fa;
    padding: 0.75rem 0;
    margin-top: 4.5rem;
    border-bottom: 1px solid #000000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.top-contact-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.top-contact-info {
    text-align: right;
    background-color: #f8f9fa;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.hours {
    color: #000000;
    margin-bottom: 0.1rem;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.phone {
    font-weight: 600;
    color: #000000;
    font-size: 0.8rem;
    letter-spacing: 0.01em;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Body overlay when menu is open */
body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

body.menu-open {
    overflow: hidden;
}

/* Startup Checklist Page Styles */
.startup-checklist-main {
    background-color: #ffffff;
    color: #333333;
    padding: 8rem 0 5rem;
    min-height: 100vh;
}

.things-to-know {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    padding: 4rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #333333;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-header .subtitle {
    font-size: 1.2rem;
    color: #666666;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.divider {
    width: 100px;
    height: 3px;
    background-color: #000000;
    margin: 2rem auto 0;
    border-radius: 2px;
}

.qa-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.qa-block {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #000000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qa-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.qa-block h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.qa-block p {
    color: #666666;
    font-size: 1rem;
    line-height: 1.6;
}

.qa-block strong {
    color: #000000;
}

/* Bank Products Section */
.bank-products {
    background-color: #f8f9fa;
    border: 1px solid #000000;
    color: #333333;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
}

.bank-products h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333333;
}

.bank-products-content p {
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.bank-products .btn-learn-more {
    background-color: #000000;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.bank-products .btn-learn-more:hover {
    background-color: #333333;
}

/* Get Started Page Styles */
.get-started-main {
    background-color: #ffffff;
    color: #333333;
    padding: 8rem 0 5rem;
    min-height: 100vh;
}

.get-started-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Left Column - Packages Include */
.packages-include h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333333;
}

.features-list {
    list-style: none;
    margin-bottom: 3rem;
}

.features-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
    color: #333333;
    position: relative;
    padding-left: 2rem;
    font-size: 1rem;
    line-height: 1.5;
}

.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: bold;
    font-size: 1.2rem;
}

.features-list li:last-child {
    border-bottom: none;
}

.cta-section {
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cta-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333333;
}

.call-text {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #666666;
}

.phone-number {
    font-size: 2rem;
    font-weight: 800;
    color: #000000;
}

/* Right Column - Contact Form */
.contact-form-section {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #333333;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    color: #333333;
    padding: 0.75rem;
    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: #000000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999999;
}

.form-group select option {
    background-color: #ffffff;
    color: #333333;
}

.privacy-notice {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 6px;
    margin: 1rem 0;
    border: 1px solid #e9ecef;
}

.privacy-notice p {
    color: #666666;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.recaptcha-section {
    text-align: center;
    margin: 1rem 0;
}

.recaptcha-links {
    margin-top: 0.5rem;
}

.recaptcha-links a {
    color: #000000;
    text-decoration: none;
    font-size: 0.85rem;
    margin: 0 0.5rem;
}

.recaptcha-links a:hover {
    text-decoration: underline;
}

.btn-submit {
    background-color: #27ae60;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: #229954;
}

/* Hero Section */
.hero {
    background-color: #f8f9fa;
    color: #333333;
    padding: 8rem 0 4rem;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #333333;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #666666;
}

.hero-highlight {
    font-size: 1.1rem;
    color: #000000;
    font-weight: 600;
}

/* Packages Section */
.packages {
    padding: 5rem 0;
    background-color: #ffffff;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.package-card {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.package-card.featured {
    border: 3px solid #000000;
    transform: scale(1.05);
}

.package-card.featured::before {
    content: "MOST POPULAR";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000000;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #000000;
}

.package-header h3 {
    font-size: 1.5rem;
    color: #333333;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000000;
}

.price span {
    font-size: 1rem;
    color: #000000;
    font-weight: 400;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
    color: #333333;
    position: relative;
    padding-left: 1.5rem;
}

.package-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.package-features li:last-child {
    border-bottom: none;
}

.btn-learn-more {
    width: 100%;
    background-color: #000000;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-learn-more:hover {
    background-color: #333333;
}

/* Benefits Section */
.benefits {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.benefits-content h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333333;
    margin-bottom: 1rem;
}

.benefits-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666666;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
}

.benefit-icon {
    background-color: #000000;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    color: #333333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.benefit-content p {
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Call to Action */
.cta {
    background-color: #000000;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.btn-get-started {
    background-color: #000000;
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-get-started:hover {
    background-color: #333333;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background-color: #f8f9fa;
    color: #333333;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.testimonial blockquote {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #666666;
}

.testimonial cite {
    color: #000000;
    font-weight: 600;
    font-style: normal;
}

/* Footer */
.footer {
    background-color: #f8f9fa;
    color: #333333;
    padding: 3rem 0 1rem;
    border-top: 1px solid #e9ecef;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #000000;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-logo i {
    color: #000000;
    margin-right: 0.5rem;
}

.footer-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.footer-nav a {
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover,
.footer-nav a.active {
    color: #000000;
}

.btn-office-login {
    background-color: #000000 !important;
    color: #ffffff !important;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none !important;
    letter-spacing: 0.5px;
}

.btn-office-login:hover {
    background-color: #333333;
    color: #ffffff !important;
}

.footer-bottom {
    text-align: center;
    color: #666666;
    font-size: 0.9rem;
}

/* FAQ Page Styles */
.faq-main {
    background-color: #ffffff;
    color: #333333;
    padding: 8rem 0 5rem;
    min-height: 100vh;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #333333;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.faq-section {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.faq-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #000000;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid #000000;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background-color: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333333;
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: #000000;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #f8f9fa;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 1.5rem;
}

.faq-answer p {
    color: #666666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #000000;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
    z-index: 1000;
}

.scroll-to-top:hover {
    background-color: #333333;
}

.scroll-to-top.show {
    display: flex;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        justify-content: space-between;
        align-items: center;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #ffffff;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        padding-top: 80px;
        overflow-y: auto;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0;
        margin: 0;
    }
    
    .nav ul li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav ul li a,
    .nav ul li .btn-office-login {
        display: block;
        padding: 15px 20px;
        width: 100%;
        text-align: left;
        color: #333;
        border-radius: 0;
    }
    
    .nav ul li a:hover,
    .nav ul li a.active {
        background: #f8f9fa;
        color: #000;
    }
    
    .btn-office-login {
        background: #000 !important;
        color: #fff !important;
        margin: 10px 20px;
        width: calc(100% - 40px) !important;
        text-align: center !important;
    }
    
    .top-contact-info {
        padding: 15px 20px;
        background: #f8f9fa;
        border-radius: 0;
        border: none;
        box-shadow: none;
        text-align: left;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-nav ul {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Get Started Page Mobile */
    .get-started-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .packages-include h2 {
        font-size: 2rem;
    }
    
    .cta-section {
        padding: 1.5rem;
    }
    
    .contact-form-section {
        padding: 1.5rem;
    }
    
    /* Startup Checklist Mobile */
    .things-to-know {
        padding: 2rem;
    }
    
    .section-header h1 {
        font-size: 2.5rem;
    }
    
    .qa-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .bank-products {
        padding: 2rem;
    }
    
    .bank-products h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .package-card {
        padding: 1.5rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    /* Get Started Page Small Mobile */
    .get-started-main {
        padding: 6rem 0 3rem;
    }
    
    .packages-include h2 {
        font-size: 1.8rem;
    }
    
    .features-list li {
        font-size: 0.9rem;
        padding-left: 1.5rem;
    }
    
    .cta-section h3 {
        font-size: 1.5rem;
    }
    
    .phone-number {
        font-size: 1.5rem;
    }
    
    .contact-form-section {
        padding: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.9rem;
    }
    
    /* Startup Checklist Small Mobile */
    .things-to-know {
        padding: 1.5rem;
    }
    
    .section-header h1 {
        font-size: 2rem;
    }
    
    .section-header .subtitle {
        font-size: 1rem;
    }
    
    .qa-block {
        padding: 1.5rem;
    }
    
    .qa-block h3 {
        font-size: 1.1rem;
    }
    
    .bank-products {
        padding: 1.5rem;
    }
    
    .bank-products h2 {
        font-size: 1.8rem;
    }
    
    /* Startup Checklist Small Mobile */
    .things-to-know {
        padding: 1.5rem;
    }
    
    .section-header h1 {
        font-size: 2rem;
    }
    
    .section-header .subtitle {
        font-size: 1rem;
    }
    
    .qa-block {
        padding: 1.5rem;
    }
    
    .qa-block h3 {
        font-size: 1.1rem;
    }
    
    .bank-products {
        padding: 1.5rem;
    }
    
    .bank-products h2 {
        font-size: 1.8rem;
    }
    
    /* FAQ Page Small Mobile */
    .faq-header h1 {
        font-size: 2rem;
    }
    
    .faq-section {
        padding: 1.5rem;
    }
    
    .faq-section h2 {
        font-size: 1.5rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 1rem;
    }
}

/* Contact Us Page Styles */
.contact-main {
    background-color: #ffffff;
    color: #333333;
    padding: 8rem 0 5rem;
    min-height: 100vh;
}

.contact-header {
    text-align: center;
    margin-bottom: 5rem;
    padding-top: 2rem;
}

.contact-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 1.5rem;
}

.contact-header p {
    font-size: 1.2rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-bottom: 5rem;
    margin-top: 3rem;
}

.contact-info {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.info-section {
    margin-bottom: 3.5rem;
}

.info-section h2 {
    font-size: 1.8rem;
    color: #333333;
    margin-bottom: 1.5rem;
}

.info-section p {
    color: #666666;
    line-height: 1.6;
}

.contact-details {
    margin-bottom: 3.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-icon {
    background: #000000;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.2rem;
}

.contact-text h3 {
    font-size: 1.1rem;
    color: #333333;
    margin-bottom: 0.4rem;
}

.contact-text p {
    color: #666666;
    line-height: 1.4;
    margin: 0;
    font-size: 0.95rem;
}

.social-links {
    border-top: 1px solid #000000;
    padding-top: 2.5rem;
    margin-top: 1rem;
}

.social-links h3 {
    font-size: 1.3rem;
    color: #333333;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #000000;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #000000;
    transform: translateY(-2px);
}

.social-icon i {
    font-size: 1.1rem;
}

.contact-form-section {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form-section h2 {
    font-size: 1.8rem;
    color: #333333;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: #333333;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 1rem;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    color: #333333;
    background: #ffffff;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #000000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999999;
}

.form-group select option {
    background: #ffffff;
    color: #333333;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
    color: #666666;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 0.75rem;
    width: auto;
}

.privacy-notice {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    margin: 1rem 0;
}

.privacy-notice p {
    color: #666666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.privacy-notice a {
    color: #000000;
    text-decoration: none;
}

.privacy-notice a:hover {
    text-decoration: underline;
}

.recaptcha-section {
    margin: 1rem 0;
}

.btn-submit {
    background: linear-gradient(135deg, #000000, #333333);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-submit i {
    font-size: 1rem;
}

.additional-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.info-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.card-icon {
    background: linear-gradient(135deg, #000000, #333333);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.card-icon i {
    font-size: 2rem;
}

.info-card h3 {
    font-size: 1.4rem;
    color: #333333;
    margin-bottom: 1rem;
}

.info-card p {
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-header h1 {
        font-size: 2.5rem;
    }
    
    .contact-info,
    .contact-form-section {
        padding: 2rem;
    }
    
    .additional-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        margin-right: 1rem;
    }
    
    .contact-icon i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-main {
        padding: 6rem 0 3rem;
    }
    
    .contact-header h1 {
        font-size: 2rem;
    }
    
    .contact-info,
    .contact-form-section {
        padding: 1.5rem;
    }
    
    .btn-submit {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* Form Validation Styles */
.field-error {
    color: #000000;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    font-weight: 500;
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
    font-weight: 500;
    animation: slideIn 0.3s ease;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Form Focus States */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #000000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

/* Loading State for Submit Button */
.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-submit:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* ======================
   NEW HOMEPAGE STYLES
   ====================== */

/* Updated Hero Section */
.hero {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #ffffff !important;
    padding: 8rem 0 5rem;
    text-align: center;
    margin-top: 60px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #ffffff !important;
}

.hero-content h1 em {
    font-style: italic;
    text-decoration: underline;
    text-decoration-thickness: 3px;
}

.hero-content h2.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff !important;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: #ffffff;
    color: #e74c3c;
}

.btn-primary:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

/* Trust Bar */
.trust-bar {
    background-color: #f8f9fa;
    padding: 1.5rem 0;
    border-bottom: 1px solid #dee2e6;
}

.trust-text {
    text-align: center;
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
    margin: 0;
}

/* Why Choose Sure-Fire Section */
.why-choose {
    padding: 5rem 0;
    background-color: #ffffff;
}

.why-choose h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.advantage-card {
    text-align: center;
    padding: 2rem;
}

.advantage-icon {
    font-size: 3.5rem;
    color: #e74c3c;
    margin-bottom: 1.5rem;
}

.advantage-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.advantage-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
}

/* Updated Packages Section */
.packages {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.packages h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.package-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.package-card.featured {
    border-color: #e74c3c;
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.package-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: #e74c3c;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.package-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.package-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.package-subtitle {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #e74c3c;
    margin: 1rem 0;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
    display: block;
    margin-top: 0.25rem;
}

.package-key-feature {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.package-key-feature strong {
    color: #856404;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.package-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li i {
    color: #28a745;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.package-features strong {
    color: #e74c3c;
}

.btn-learn-more {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: #e74c3c;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    border: none;
    cursor: pointer;
}

.btn-learn-more:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Updated Testimonials */
.testimonials {
    padding: 5rem 0;
    background-color: #ffffff;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #e74c3c;
}

.testimonial blockquote {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial cite {
    font-size: 0.95rem;
    color: #666;
    font-style: normal;
    display: block;
}

.testimonial cite strong {
    color: #e74c3c;
    font-weight: 600;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content h2.hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card.featured {
        transform: scale(1);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .why-choose h2,
    .packages h2,
    .testimonials h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 6rem 0 3rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .advantage-icon {
        font-size: 2.5rem;
    }

    .package-header h3 {
        font-size: 1.5rem;
    }

    .price {
        font-size: 2rem;
    }
}
