  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* Primary Brand Colors */
            --primary-orange: #ff6a00;
            --primary-pink: #ee0979;
            --primary-purple: #6a11cb;
            --primary-blue: #2575fc;

            /* Neutrals */
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --white: #ffffff;
        }

        body {
            font-family: "Segoe UI", Arial, sans-serif;
            background: #f4f7fb;
            color: #333;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* Header */
        header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 30px;
            background: #fff;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        header img {
            height: 55px;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 20px;
        }

        nav ul li a {
            text-decoration: none;
            font-weight: bold;
            color: #444;
            position: relative;
            transition: color 0.3s ease, transform 0.3s ease;
            padding: 5px 10px;
        }

        nav ul li a:hover {
            color: var(--primary-orange);
            transform: translateY(-2px);
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--primary-orange);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            transition: width 0.3s ease;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            font-size: 24px;
            background: none;
            border: none;
            color: #444;
            cursor: pointer;
            z-index: 1001;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .menu-toggle:hover {
            color: var(--primary-orange);
            transform: rotate(90deg);
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }

            nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #fff;
                box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
                transform: translateX(-100%);
                transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
                opacity: 0;
            }

            nav.active {
                display: block;
                transform: translateX(0);
                opacity: 1;
            }

            nav ul {
                flex-direction: column;
                padding: 20px;
                gap: 15px;
            }

            nav ul li {
                text-align: center;
                opacity: 0;
                transform: translateY(20px);
                transition: opacity 0.3s ease, transform 0.3s ease;
            }

            nav.active ul li {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Main content wrapper to push footer to bottom */
        .main-content {
            flex: 1 0 auto;
            width: 100%;
            padding: 20px 0;
        }

        /* Hero */
        .hero {
            background: linear-gradient(135deg, var(--primary-orange), var(--primary-pink));
            color: var(--white);
            text-align: center;
            padding: 70px 20px;
        }

        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 12px;
            animation: fadeInDown 1s ease;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
            position: relative;
            display: inline-block;
        }

        .hero h1::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 4px;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .hero p {
            font-size: 1.2rem;
            animation: fadeInUp 1.2s ease;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Tools Heading */
        .tools-heading {
            text-align: center;
            margin: 30px auto;
            animation: fadeInDown 1s ease;
            width: 100%;
            max-width: 1200px;
            padding: 0 20px;
        }

        .tools-heading h2 {
            font-size: 2.4rem;
            background: linear-gradient(135deg, var(--primary-orange), var(--primary-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 15px;
        }

        .tools-heading h2::after {
            content: "";
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-orange), var(--primary-pink));
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: 0;
            border-radius: 2px;
            transition: width 0.4s ease;
        }

        .tools-heading h2:hover::after {
            width: 140px;
        }

        .tools-heading p {
            font-size: 1rem;
            color: var(--gray);
            max-width: 650px;
            margin: 15px auto 0;
            line-height: 1.6;
        }

        /* Brand Highlight */
        .brand-highlight {
            color: var(--primary-orange);
            font-weight: 700;
        }

        /* Speech to Text Container */
        .speech-container {
            width: 100%;
            max-width: 1200px;
            margin: 30px auto;
            padding: 20px;
        }

        .speech-card {
            background: var(--white);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 30px;
            margin-bottom: 30px;
            transition: transform 0.3s ease;
            color: var(--dark);
            position: relative;
            overflow: hidden;
        }

        .speech-card::before {
            content: 'Toolnex AI';
            position: absolute;
            top: 10px;
            right: 10px;
            background: linear-gradient(135deg, var(--primary-orange), var(--primary-pink));
            color: white;
            padding: 5px 10px;
            border-radius: 15px;
            font-size: 0.7rem;
            font-weight: bold;
        }

        .speech-card:hover {
            transform: translateY(-5px);
        }

        .speech-title {
            font-size: 1.5rem;
            color: var(--primary-orange);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            position: relative;
            padding-bottom: 10px;
        }

        .speech-title::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-orange), var(--primary-pink));
            bottom: 0;
            left: 0;
            border-radius: 2px;
            transition: width 0.3s ease;
        }

        .speech-card:hover .speech-title::after {
            width: 80px;
        }

        /* Controls Section */
        .controls-section {
            margin-bottom: 25px;
        }

        .controls-group {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 20px;
            position: relative;
        }

        @media (min-width: 768px) {
            .controls-group {
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
            }
        }

        /* Language Selector */
        .language-selector {
            display: flex;
            align-items: center;
            gap: 15px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .selector-label {
            font-weight: 600;
            color: var(--dark);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .option-select {
            flex: 1;
            min-width: 100%;
            padding: 14px;
            border-radius: 10px;
            border: 2px solid #e1e5eb;
            background-color: var(--white);
            color: var(--dark);
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        @media (min-width: 576px) {
            .option-select {
                min-width: 200px;
                flex: 0 1 auto;
            }
        }

        .option-select:focus {
            outline: none;
            border-color: var(--primary-orange);
            box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.1);
        }

        .option-select option {
            background-color: var(--white);
            color: var(--dark);
        }

        /* Control Buttons */
        .control-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 20px 0;
            justify-content: center;
        }

        @media (min-width: 768px) {
            .control-buttons {
                justify-content: flex-start;
            }
        }

        .control-btn {
            padding: 15px 25px;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            min-width: 180px;
            flex: 1;
        }

        @media (min-width: 576px) {
            .control-btn {
                flex: 0 1 auto;
            }
        }

        #startBtn {
            background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
            color: white;
        }

        #stopBtn {
            background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
            color: white;
        }

        #copyBtn {
            background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
            color: white;
        }

        #clearBtn {
            background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
            color: white;
        }

        .control-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .control-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }

        /* Status Indicator */
        .status-indicator {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 15px;
            background: rgba(255, 106, 0, 0.05);
            border-radius: 10px;
            margin: 15px 0;
            border: 1px solid rgba(255, 106, 0, 0.1);
        }

        .status-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ccc;
        }

        .status-dot.active {
            background: #4CAF50;
            animation: pulse 1.5s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }

        /* Transcript Area */
        .transcript-area {
            background: var(--light);
            border-radius: 15px;
            padding: 25px;
            margin-top: 20px;
            border-left: 5px solid var(--primary-orange);
            transition: all 0.3s ease;
        }

        .transcript-header {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: space-between;
            margin-bottom: 20px;
            color: var(--primary-orange);
            font-size: 1.2rem;
            gap: 10px;
        }

        @media (min-width: 768px) {
            .transcript-header {
                flex-direction: row;
                align-items: center;
                font-size: 1.4rem;
            }
        }

        .transcript-header-left {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .transcript-info {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            justify-content: flex-start;
            width: 100%;
        }

        @media (min-width: 768px) {
            .transcript-info {
                justify-content: flex-end;
                width: auto;
            }
        }

        .info-badge {
            background: rgba(255, 106, 0, 0.15);
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            border: 1px solid rgba(255, 106, 0, 0.3);
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
        }

        .info-badge i {
            font-size: 0.9rem;
        }

        textarea {
            width: 100%;
            min-height: 250px;
            padding: 20px;
            border: 2px solid #e1e5eb;
            border-radius: 10px;
            font-size: 1rem;
            line-height: 1.6;
            resize: vertical;
            background: var(--white);
            font-family: inherit;
            transition: border-color 0.3s ease;
        }

        textarea:focus {
            outline: none;
            border-color: var(--primary-orange);
            box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.1);
        }

        .transcript-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 20px;
            padding: 15px;
            background: rgba(255, 106, 0, 0.05);
            border-radius: 10px;
            border: 1px solid rgba(255, 106, 0, 0.1);
        }

        .stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 10px 15px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            min-width: 120px;
        }

        .stat-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-orange);
        }

        .stat-label {
            font-size: 0.85rem;
            color: var(--gray);
            margin-top: 5px;
        }

        /* Actions */
        .actions {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 10px;
            margin-top: 25px;
        }

        @media (min-width: 576px) {
            .actions {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
                gap: 15px;
            }
        }

        .action-btn {
            padding: 12px 25px;
            background-color: rgba(255, 106, 0, 0.1);
            border: 2px solid rgba(255, 106, 0, 0.3);
            border-radius: 10px;
            color: var(--primary-orange);
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            min-width: 140px;
        }

        @media (min-width: 576px) {
            .action-btn {
                width: auto;
                padding: 12px 25px;
                flex: 0 1 auto;
            }
        }

        .action-btn:hover {
            background-color: rgba(255, 106, 0, 0.2);
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(255, 106, 0, 0.15);
        }

        /* Download Button */
        .download-btn {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }

        #downloadBtn {
            background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
            color: white;
            min-width: 250px;
            padding: 16px 30px;
        }

        /* Examples */
        .examples {
            margin-top: 25px;
            background: rgba(255, 106, 0, 0.05);
            border-radius: 15px;
            padding: 25px;
            border: 2px solid rgba(255, 106, 0, 0.1);
        }

        .examples h3 {
            color: var(--primary-orange);
            margin-bottom: 15px;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .example-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .example-tag {
            padding: 10px 20px;
            background: rgba(255, 106, 0, 0.1);
            border-radius: 20px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.2s ease;
            flex-grow: 1;
            text-align: center;
            min-width: calc(50% - 10px);
            color: var(--dark);
            border: 1px solid rgba(255, 106, 0, 0.2);
        }

        @media (min-width: 576px) {
            .example-tag {
                min-width: auto;
                flex-grow: 0;
                padding: 10px 20px;
            }
        }

        .example-tag:hover {
            background: rgba(255, 106, 0, 0.2);
            transform: scale(1.05);
            border-color: var(--primary-orange);
        }

        /* SEO Description Section */
        .seo-description {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }

        .seo-card {
            background: var(--white);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            border-left: 5px solid var(--primary-orange);
        }

        .seo-card h2 {
            color: var(--primary-orange);
            font-size: 1.8rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .seo-content {
            line-height: 1.7;
            color: var(--dark);
        }

        .seo-content p {
            margin-bottom: 15px;
        }

        .features-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
            margin: 25px 0;
        }

        .feature-item {
            background: var(--light);
            padding: 15px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
            border-left: 4px solid var(--primary-pink);
        }

        .feature-item i {
            color: var(--primary-orange);
            font-size: 1.2rem;
        }

        .use-cases {
            background: rgba(255, 106, 0, 0.05);
            padding: 25px;
            border-radius: 10px;
            margin-top: 25px;
            border: 1px solid rgba(255, 106, 0, 0.1);
        }

        .use-cases h3 {
            color: var(--primary-orange);
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        .use-case-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 10px;
        }

        .use-case-item {
            background: var(--white);
            padding: 12px 15px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
            font-size: 0.9rem;
        }

        /* SEO Benefits Section */
        .seo-benefits {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }

        .benefits-card {
            background: linear-gradient(135deg, rgba(255, 106, 0, 0.05), rgba(238, 9, 121, 0.05));
            border-radius: 15px;
            padding: 30px;
            border: 2px solid rgba(255, 106, 0, 0.1);
        }

        .benefits-card h3 {
            color: var(--primary-orange);
            font-size: 1.5rem;
            margin-bottom: 20px;
            text-align: center;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .benefit-item {
            background: var(--white);
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            text-align: center;
        }

        .benefit-icon {
            font-size: 2rem;
            color: var(--primary-orange);
            margin-bottom: 15px;
        }

        .benefit-item h4 {
            color: var(--dark);
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .benefit-item p {
            color: var(--gray);
            font-size: 0.9rem;
            line-height: 1.5;
        }

        /* How to Use Section */
        .how-to-use {
            width: 100%;
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
        }

        .how-to-use-card {
            background: var(--white);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 30px;
            margin-bottom: 30px;
            transition: transform 0.3s ease;
            color: var(--dark);
            position: relative;
            overflow: hidden;
        }

        .how-to-use-card::before {
            content: 'Toolnex AI';
            position: absolute;
            top: 10px;
            right: 10px;
            background: linear-gradient(135deg, var(--primary-orange), var(--primary-pink));
            color: white;
            padding: 5px 10px;
            border-radius: 15px;
            font-size: 0.7rem;
            font-weight: bold;
        }

        .how-to-use-card:hover {
            transform: translateY(-5px);
        }

        .how-to-use-card h2 {
            font-size: 1.8rem;
            color: var(--primary-orange);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            position: relative;
            padding-bottom: 10px;
        }

        .how-to-use-card h2::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-orange), var(--primary-pink));
            bottom: 0;
            left: 0;
            border-radius: 2px;
            transition: width 0.3s ease;
        }

        .how-to-use-card:hover h2::after {
            width: 140px;
        }

        .how-to-use-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .step {
            background: var(--light);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s ease;
            border-left: 4px solid var(--primary-orange);
            position: relative;
            overflow: hidden;
        }

        .step:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .step-number {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary-orange), var(--primary-pink));
            color: var(--white);
            border-radius: 50%;
            font-weight: bold;
            margin: 0 auto 15px;
            font-size: 1.2rem;
            box-shadow: 0 4px 10px rgba(255, 106, 0, 0.3);
        }

        .step h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--dark);
            position: relative;
            padding-bottom: 8px;
        }

        .step h3::after {
            content: '';
            position: absolute;
            width: 30px;
            height: 2px;
            background: var(--primary-orange);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 1px;
        }

        .step p {
            color: var(--gray);
            line-height: 1.5;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .tools-heading h2 {
                font-size: 1.8rem;
            }

            .speech-card {
                padding: 20px;
            }

            .how-to-use-steps {
                grid-template-columns: 1fr;
            }
            
            .features-list,
            .benefits-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .hero {
                padding: 40px 15px;
            }

            .hero h1 {
                font-size: 1.8rem;
            }

            .control-btn {
                min-width: 100%;
            }

            .action-btn {
                font-size: 0.9rem;
                padding: 10px 15px;
            }

            .example-tag {
                padding: 8px 15px;
                font-size: 0.85rem;
            }

            .step {
                padding: 15px;
            }

            .step-number {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }

            .step h3 {
                font-size: 1.1rem;
            }
            
            .seo-card,
            .benefits-card {
                padding: 20px;
            }
        }

        /* Speech Footer */
        .speech-footer {
            text-align: center;
            margin-top: 30px;
            padding: 20px;
            color: var(--gray);
            font-size: 0.9rem;
            border-top: 1px solid #eee;
        }

        .disclaimer {
            max-width: 800px;
            margin: 0 auto;
            font-size: 0.8rem;
            color: #95a5a6;
            margin-top: 10px;
            line-height: 1.4;
        }

        .Toolnex-powered {
            font-size: 0.9rem;
            color: var(--primary-orange);
            font-weight: 600;
            margin-top: 20px;
            text-align: center;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }

        /* Touch-friendly improvements */
        button, 
        .example-tag,
        .action-btn {
            -webkit-tap-highlight-color: transparent;
            user-select: none;
        }

        /* Notification */
        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            padding: 15px 25px;
            background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
            color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transform: translateX(150%);
            transition: transform 0.3s;
            z-index: 1000;
            max-width: 350px;
        }

        .notification.show {
            transform: translateX(0);
        }

        .notification.error {
            background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
        }

        /* Enhanced Footer Styles */
        footer {
            background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
            color: var(--white);
            padding: 20px 15px;
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
            width: 100%;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #ff6a00, #ee0979, #00c4cc);
            z-index: 1;
        }

        .footer-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .footer-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .footer-logo {
            margin-bottom: 15px;
            transition: transform 0.5s ease;
        }

        .footer-logo:hover {
            transform: translateY(-5px);
        }

        .footer-logo img {
            height: 50px;
            transition: transform 0.3s ease;
            border-radius: 8px;
            background: var(--white);
            padding: 5px;
        }

        .footer-logo img:hover {
            transform: scale(1.05);
        }

        .footer-description {
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 15px;
            max-width: 100%;
            opacity: 0.9;
        }

        .footer-heading {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 8px;
            display: inline-block;
        }

        .footer-heading::after {
            content: '';
            position: absolute;
            width: 30px;
            height: 2px;
            background: linear-gradient(90deg, #ff6a00, #ee0979);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
            transition: width 0.4s ease;
        }

        .footer-heading:hover::after {
            width: 50px;
        }

        .footer-tools ul,
        .footer-quick-links ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            padding: 0;
            margin: 0;
        }

        .footer-tools ul li a,
        .footer-quick-links ul li a {
            color: var(--white);
            text-decoration: none;
            opacity: 0.9;
            transition: opacity 0.3s ease, color 0.3s ease;
        }

        .footer-tools ul li a:hover,
        .footer-quick-links ul li a:hover {
            opacity: 1;
            color: #ffcc00;
        }

        .footer-social {
            display: flex;
            gap: 12px;
            margin-top: 15px;
            justify-content: center;
            align-items: center;
        }

        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--white);
            font-size: 16px;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .footer-social a::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #ff6a00, #ee0979);
            border-radius: 50%;
            transform: scale(0);
            transition: transform 0.3s ease;
            z-index: -1;
        }

        .footer-social a:hover {
            transform: translateY(-3px);
            color: var(--white);
        }

        .footer-social a:hover::after {
            transform: scale(1);
        }

        .footer-social a i {
            transition: transform 0.3s ease;
        }

        .footer-social a:hover i {
            transform: scale(1.2);
        }

        .footer-contact {
            margin-top: 15px;
        }

        .footer-contact p {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
            opacity: 0.9;
            font-size: 0.9rem;
        }

        .footer-contact i {
            margin-right: 8px;
            color: #ffcc00;
            font-size: 16px;
        }

        .footer-bottom {
            text-align: center;
            margin-top: 20px;
            font-size: 0.85rem;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            padding-top: 15px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;
            grid-column: 1 / -1;
        }

        .footer-bottom p {
            margin-bottom: 12px;
            opacity: 0.9;
            width: 100%;
        }

        .footer-legal {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
            width: 100%;
        }

        .footer-legal a {
            color: var(--white);
            text-decoration: none;
            opacity: 0.8;
            transition: opacity 0.3s ease, color 0.3s ease;
            font-size: 0.85rem;
            position: relative;
            white-space: nowrap;
        }

        .footer-legal a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            background: #ffcc00;
            bottom: -2px;
            left: 0;
            transition: width 0.3s ease;
        }

        .footer-legal a:hover {
            opacity: 1;
            color: #ffcc00;
        }

        .footer-legal a:hover::after {
            width: 100%;
        }

        .footer-bubble {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            animation: float 8s infinite ease-in-out;
        }

        .footer-bubble:nth-child(1) {
            width: 60px;
            height: 60px;
            top: 20%;
            left: 5%;
            animation-delay: 0s;
        }

        .footer-bubble:nth-child(2) {
            width: 40px;
            height: 40px;
            top: 60%;
            left: 8%;
            animation-delay: 1s;
        }

        .footer-bubble:nth-child(3) {
            width: 50px;
            height: 50px;
            top: 30%;
            right: 5%;
            animation-delay: 2s;
        }

        .footer-bubble:nth-child(4) {
            width: 30px;
            height: 30px;
            top: 70%;
            right: 10%;
            animation-delay: 3s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-15px) rotate(10deg);
            }
        }

        /* Newsletter Form */
        .footer-newsletter {
            margin-top: 15px;
            width: 100%;
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 10px;
            align-items: center;
        }

        .newsletter-input {
            padding: 10px 15px;
            border: none;
            border-radius: 6px;
            background: rgba(255, 255, 255, 0.12);
            color: var(--white);
            font-size: 14px;
            transition: background 0.3s ease, box-shadow 0.3s ease;
            width: 100%;
            max-width: 250px;
        }

        .newsletter-input:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.18);
            box-shadow: 0 0 0 2px rgba(255, 204, 0, 0.5);
        }

        .newsletter-input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .newsletter-btn {
            padding: 10px 15px;
            border: none;
            border-radius: 6px;
            background: linear-gradient(135deg, #ff6a00, #ee0979);
            color: var(--white);
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            width: 100%;
            max-width: 250px;
        }

        .newsletter-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 106, 0, 0.4);
        }

        /* Responsive Design for Footer */
        @media (min-width: 769px) {
            .footer-container {
                grid-template-columns: repeat(4, 1fr);
            }

            .footer-bottom {
                grid-column: 1 / span 4;
            }
        }

        @media (max-width: 480px) {
            .footer-logo img {
                height: 40px;
            }

            .footer-heading {
                font-size: 1.1rem;
            }

            .footer-tools ul,
            .footer-quick-links ul {
                grid-template-columns: 1fr;
            }

            .footer-social a {
                width: 32px;
                height: 32px;
                font-size: 14px;
            }

            .footer-contact p {
                font-size: 0.8rem;
            }

            .footer-contact i {
                font-size: 14px;
            }

            .footer-legal a {
                font-size: 0.8rem;
            }

            .newsletter-input,
            .newsletter-btn {
                padding: 8px 12px;
                font-size: 12px;
                max-width: 200px;
            }
        }