    /* Tools Page Specific Styles */
    .tools-hero-section {
        background-color: #94CEB7;
        position: relative;
        padding: 60px 0 80px;
        overflow: hidden;
        border-bottom: 3px solid #000;
    }

    .tools-hero-section img.shaps {
        animation: float 20s infinite;
        right: 45%;
        top: 24%;
        position: absolute;
    }

    .tools-hero-text {
        position: relative;
    }

    .tools-hero-text h1 {
        font-size: 48px;
        font-weight: 800;
        color: #244C45;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .tools-hero-text p {
        font-size: 18px;
        color: #555;
        margin-bottom: 30px;
        line-height: 1.6;
    }

    .tools-stats {
        display: flex;
        gap: 30px;
        margin-top: 30px;
    }

    .stat-item {
        text-align: center;
        background: white;
        border: 3px solid #000;
        border-radius: 15px;
        padding: 20px;
        box-shadow: 5px 5px 0 0 rgba(0, 0, 0, 1);
        transition: transform 0.3s ease;
        position: relative;
    }

    .stat-item:hover {
        transform: translateY(-5px);
    }

    .stat-number {
        display: block;
        font-size: 28px;
        font-weight: 800;
        color: #244C45;
    }

    .stat-label {
        display: block;
        font-size: 14px;
        color: #666;
        margin-top: 5px;
    }

    .tools-hero-image {
        position: relative;
        text-align: center;
    }

    .tools-section {
        padding: 80px 0;
    }

    .tools-hero-image .main-image {
        max-width: 400px;
        width: 100%;
        height: auto;
    }

    .floating-elements {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .floating-tool {
        position: absolute;
        width: 60px;
        height: 60px;
        background: white;
        border: 3px solid #000;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 5px 5px 0 0 rgba(0, 0, 0, 1);
        animation: float 3s ease-in-out infinite;
    }

    .floating-tool img {
        width: 35px;
        height: 35px;
    }

    .tool-1 {
        top: 20%;
        left: 10%;
        animation-delay: -0.5s;
    }

    .tool-2 {
        top: 60%;
        right: 15%;
        animation-delay: -1s;
    }

    .tool-3 {
        bottom: 20%;
        left: 20%;
        animation-delay: -1.5s;
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    /* Tools Grid */
    .tools-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 50px;
        margin-bottom: 80px;
        margin-top: 0px;
    }

    .tool-card {
        background: white;
        margin-top: 30px;
        border: 3px solid #000;
        border-radius: 20px;
        padding: 30px;
        position: relative;
        transition: all 0.3s ease;
        box-shadow: 10px 10px 0 0 rgba(0, 0, 0, 1);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .tool-card:hover {
        transform: translateY(-10px);
        box-shadow: 15px 15px 0 0 rgba(0, 0, 0, 1);
    }

    .tool-card.featured {
        position: relative;
    }

    .tool-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background: #ff6b6b;
        color: white;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 800;
        border: 2px solid #000;
        box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 1);
    }

    .tool-icon {
        width: 80px;
        height: 80px;
        background: #f8f9fa;
        border: 2px solid #000;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        box-shadow: 5px 5px 0 0 rgba(0, 0, 0, 1);
    }

    .tool-icon img {
        width: 45px;
        height: 45px;
    }

    .tool-content h3 {
        font-size: 24px;
        font-weight: 800;
        color: #244C45;
        margin-bottom: 15px;
    }

    .tool-content {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .tool-content p {
        font-size: 16px;
        color: #555;
        line-height: 1.6;
        margin-bottom: 20px;
        flex: 1;
    }

    .tool-features {
        flex: 1;
    }

    .tool-action {
        margin-top: auto;
    }

    .tool-features ul {
        list-style: none;
        padding: 0;
        margin-bottom: 25px;
    }

    .tool-features li {
        font-size: 14px;
        color: #666;
        margin-bottom: 8px;
        padding-left: 0;
    }

    .tool-btn {
        background: #244C45;
        color: white;
        border: 3px solid #000;
        border-radius: 25px;
        padding: 12px 25px;
        font-weight: 800;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 5px 5px 0 0 rgba(0, 0, 0, 1);
        width: 100%;
    }

    .tool-btn:hover {
        transform: translateY(-3px);
        box-shadow: 8px 8px 0 0 rgba(0, 0, 0, 1);
    }

    .featured-btn {
        background: #244C45;
        color: #ffffff;
    }

    /* How It Works Section */
    .how-it-works {
        margin: 80px 0;
        background: #f8f9fa;
        border-radius: 30px;
        padding: 60px 30px;
        border: 3px solid #000;
        box-shadow: 10px 10px 0 0 rgba(0, 0, 0, 1);
    }

    .steps-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }

    .step-item {
        text-align: center;
        position: relative;
    }

    .step-number {
        width: 60px;
        height: 60px;
        background: #244C45;
        color: white;
        border: 3px solid #000;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        font-weight: 800;
        margin: 0 auto 20px;
        box-shadow: 5px 5px 0 0 rgba(0, 0, 0, 1);
    }

    .step-content h4 {
        font-size: 20px;
        font-weight: 800;
        color: #244C45;
        margin-bottom: 10px;
    }

    .step-content p {
        font-size: 16px;
        color: #666;
        line-height: 1.5;
    }

    /* CTA Section */
    .tools-cta {
        background: #244C45;
        border-radius: 30px;
        padding: 50px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        overflow: hidden;
        border: 3px solid #000;
        box-shadow: 10px 10px 0 0 rgba(0, 0, 0, 1);
    }


    .cta-content {
        flex: 1;
        color: white;
    }

    .cta-content h3 {
        color: white;
        font-size: 32px;
        font-weight: 800;
        margin-bottom: 15px;
    }

    .cta-content p {
        color: white;

        font-size: 18px;
        margin-bottom: 30px;
        opacity: 0.9;
    }

    .cta-buttons {
        display: flex;
        gap: 20px;
        align-items: center;
    }

    .download-btn-main {
        background: #94CEB7;
        color: #000;
        border: 3px solid #000;
        border-radius: 25px;
        padding: 15px 30px;
        font-weight: 800;
        font-size: 16px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 5px 5px 0 0 rgba(0, 0, 0, 1);
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .download-btn-main:hover {
        transform: translateY(-3px);
        box-shadow: 8px 8px 0 0 rgba(0, 0, 0, 1);
    }

    .download-icon {
        width: 20px;
        height: 20px;
        fill: currentColor;
    }

    .back-home-btn {
        color: white;
        text-decoration: none;
        border: 2px solid white;
        border-radius: 25px;
        padding: 12px 25px;
        transition: all 0.3s ease;
        font-weight: 600;
    }

    .back-home-btn:hover {
        background: white;
        color: #244C45;
    }

    .cta-panda {
        width: 200px;
        flex-shrink: 0;
    }

    .cta-panda img {
        width: 100%;
        height: auto;
    }

    /* Download Modal Styles */
    .download-modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
    }

    .download-modal {
        background: white;
        border: 3px solid #000;
        border-radius: 20px;
        padding: 40px;
        text-align: center;
        max-width: 500px;
        width: 90%;
        box-shadow: 10px 10px 0 0 rgba(0, 0, 0, 1);
        position: relative;
    }

    .download-modal h3 {
        font-size: 24px;
        font-weight: 800;
        color: #244C45;
        margin-bottom: 15px;
    }

    .download-modal p {
        font-size: 16px;
        color: #666;
        margin-bottom: 30px;
    }

    .download-options {
        display: flex;
        gap: 20px;
        justify-content: center;
        margin-bottom: 30px;
        align-items: center;
    }

    .download-option {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .download-option[href*="play.google"] {
        width: 160px;
    }

    .download-option[href*="apple.com"] {
        width: 135px;
    }

    .download-option img {
        width: 100%;
        height: auto;
        object-fit: contain;
        transition: transform 0.3s ease;
    }

    .download-option:hover img {
        transform: scale(1.05);
    }

    .download-modal .close-modal-btn {
        position: absolute;
        top: 15px;
        right: 15px;
        background: #f8f9fa;
        color: #000;
        border: 2px solid #000;
        border-radius: 50%;
        width: 35px;
        height: 35px;
        font-size: 24px;
        line-height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        padding: 0;
        transition: all 0.3s ease;
        box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 1);
    }

    .download-modal .close-modal-btn:hover {
        background: #fff;
        transform: translateY(-2px);
        box-shadow: 4px 4px 0 0 rgba(0, 0, 0, 1);
    }

    .try-now-btn {
        background: #244C45;
        color: white;
        border: 3px solid #000;
        border-radius: 25px;
        padding: 10px 20px;
        font-size: 16px;
        font-weight: 800;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition: all 0.3s ease;
        box-shadow: 4px 4px 0 0 rgba(0, 0, 0, 1);
        text-decoration: none;
        width: auto;
        max-width: 200px;
        white-space: nowrap;
        margin-top: 20px;
    }

    .try-now-btn:hover {
        transform: translateY(-2px);
        box-shadow: 6px 6px 0 0 rgba(0, 0, 0, 1);
    }

    .btn-arrow {
        width: 20px;
        height: 20px;
        fill: currentColor;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .tools-hero-text h1 {
            font-size: 36px;
        }

        .tools-stats {
            justify-content: center;
        }

        .tools-grid {
            grid-template-columns: 1fr;
            gap: 20px;
            padding: 0 15px 15px 15px;
        }

        .tool-card {
            padding: 20px;
        }

        .steps-container {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .tools-cta {
            flex-direction: column;
            text-align: center;
            padding: 30px 20px;
        }

        .cta-buttons {
            flex-direction: column;
            width: 100%;
        }

        .download-btn-main,
        .back-home-btn {
            width: 100%;
            justify-content: center;
        }

        .cta-panda {
            width: 150px;
            margin-top: 20px;
        }

        .download-options {
            flex-direction: column;
            align-items: center;
        }
    }

    /* .super-enhanced-footer {
        position: relative;
        background-color: #e6faff;
        padding: 0 0 30px;
        color: #444;
        padding-top: 60px;
        font-family: 'Epilogue', sans-serif;
        overflow: hidden;
        border-top: 3px solid #000;
    }

    .footer-top {
        margin-bottom: 50px;
    }

    .footer-branding {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-logo {
        max-width: 250px;
        height: auto;
        margin-bottom: 15px;
    }

    .footer-tagline {
        display: inline-block;
        background-color: #94CEB7;
        border: 3px solid #000;
        border-radius: 30px;
        padding: 8px 20px;
        margin-bottom: 20px;
        box-shadow: 5px 5px 0 0 rgba(0, 0, 0, 1);
        transform: rotate(-2deg);
        transition: transform 0.3s ease;
    }

    .footer-tagline:hover {
        transform: rotate(0deg) translateY(-5px);
    }

    .tagline-text {
        font-weight: 800;
        font-size: 16px;
        color: #000;
    }

    .footer-description {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 20px;
        color: #444;
        max-width: 95%;
    }

    .contact-cards {
        display: flex;
        gap: 20px;
        margin-bottom: 30px;
    }

    .contact-card {
        flex: 1;
        background-color: #f4ffc9;
        border: 3px solid #000;
        border-radius: 20px;
        padding: 20px;
        display: flex;
        align-items: center;
        transition: all 0.3s ease;
        box-shadow: 5px 5px 0 0 rgba(0, 0, 0, 1);
    }

    .contact-card:hover {
        transform: translateY(-5px);
        box-shadow: 8px 8px 0 0 rgba(0, 0, 0, 1);
    }

    .contact-icon-container {
        width: 50px;
        height: 50px;
        background-color: white;
        border: 2px solid #000;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
    }

    .contact-icon {
        width: 25px;
        height: 25px;
    }

    .contact-info h5 {
        font-size: 18px;
        font-weight: 800;
        color: #244C45;
        margin-bottom: 5px;
    }

    .contact-info a {
        font-size: 16px;
        color: #444;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
    }

    .contact-info a:hover {
        color: #244C45;
    }

    .social-media-section {
        margin-top: 40px;
        text-align: center;
        padding: 20px;
    }

    .social-media-section h4 {
        font-size: 22px;
        font-weight: 800;
        color: #244C45;
        margin-bottom: 20px;
        position: relative;
        display: inline-block;
        padding-bottom: 10px;
    }

    .social-media-section h4:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: #94CEB7;
        border-radius: 5px;
    }

    .social-icons {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .social-icon {
        width: 50px;
        height: 50px;
        background-color: white;
        border: 2px solid #000;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        box-shadow: 4px 4px 0 0 rgba(0, 0, 0, 1);
    }

    .social-icon img {
        width: 25px;
        height: 25px;
    }

    .social-icon:hover {
        transform: translateY(-5px) rotate(10deg);
        box-shadow: 6px 6px 0 0 rgba(0, 0, 0, 1);
    }

    .footer-board-support {
        background-color: #ffeaea;
        border: 3px solid #000;
        border-radius: 20px;
        padding: 30px;
        margin-bottom: 50px;
        text-align: center;
        box-shadow: 10px 10px 0 0 rgba(0, 0, 0, 1);
    }

    .footer-board-support h4 {
        font-size: 22px;
        font-weight: 800;
        color: #244C45;
        margin-bottom: 25px;
    }
    
    .board-logos {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .board-logo-item {
        background-color: white;
        border: 2px solid #000;
        border-radius: 15px;
        padding: 10px 20px;
        min-width: 120px;
        transition: all 0.3s ease;
    }

    .board-logo-item span {
        font-weight: 800;
        font-size: 16px;
        color: #244C45;
    }

    .board-logo-item:hover {
        transform: translateY(-5px) rotate(2deg);
        background-color: #94CEB7;
    }

    .footer-bottom {
        padding-top: 30px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .copyright {
        font-size: 16px;
        color: #444;
        font-weight: 600;
        margin: 0;
    }

    .copyright-year {
        font-weight: 800;
    }

    .footer-policy-links {
        display: flex;
        justify-content: flex-end;
        gap: 15px;
        flex-wrap: wrap;
    }

    .footer-policy-links a {
        color: #444;
        text-decoration: none;
        font-size: 15px;
        font-weight: 600;
        transition: color 0.3s ease;
    }

    .footer-policy-links a:hover {
        color: #244C45;
    }

    .separator {
        color: #888;
    }

    .footer-decoration {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        pointer-events: none;
        z-index: 0;
    }

    .footer-shape-left {
        position: absolute;
        left: 5%;
        top: 20%;
        width: 200px;
        opacity: 0.1;
        animation: float 16s infinite;
    }

    .footer-shape-right {
        position: absolute;
        right: 5%;
        bottom: 20%;
        width: 200px;
        opacity: 0.1;
        animation: float 20s infinite reverse;
    } */