 /* Header Styles - Unique Classes */
        .wc-header-container {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            padding: 1.2rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .wc-header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .wc-brand-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #f3416a;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .wc-nav-menu {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .wc-nav-link {
            text-decoration: none;
            color: #555;
            font-weight: 500;
            transition: color 0.3s ease;
            cursor: pointer;
        }

        .wc-nav-link:hover {
            color: #f3416a;
        }

        /* Main Container */
        .wc-main-wrapper {
            max-width: 1200px;
            margin: 3rem auto;
            padding: 0 2rem;
        }

        /* Hero Section */
        .wc-hero-section {
            text-align: center;
            color: white;
            margin-bottom: 3rem;
        }

        .wc-hero-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }

        .wc-hero-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        /* Tool Container */
        .wc-tool-container {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            margin-bottom: 3rem;
        }

        /* Stats Grid */
        .wc-stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .wc-stat-card {
            background: linear-gradient(135deg, #f3416a 0%, #ff6b9d 100%);
            color: white;
            padding: 1.5rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(243, 65, 106, 0.3);
            transition: transform 0.3s ease;
        }

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

        .wc-stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            display: block;
            margin-bottom: 0.5rem;
        }

        .wc-stat-label {
            font-size: 0.9rem;
            opacity: 0.9;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Text Area */
        .wc-textarea-wrapper {
            position: relative;
            margin-bottom: 1.5rem;
        }

        .wc-input-field {
            width: 100%;
            min-height: 300px;
            padding: 1.5rem;
            border: 2px solid #e0e0e0;
            border-radius: 15px;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            transition: border-color 0.3s ease;
            line-height: 1.6;
        }

        .wc-input-field:focus {
            outline: none;
            border-color: #f3416a;
        }

        .wc-input-field::placeholder {
            color: #aaa;
        }

        /* Button Group */
        .wc-button-group {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .wc-primary-btn {
            background: linear-gradient(135deg, #f3416a 0%, #ff6b9d 100%);
            color: white;
            border: none;
            padding: 0.9rem 2rem;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(243, 65, 106, 0.3);
        }

        .wc-primary-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(243, 65, 106, 0.4);
        }

        .wc-secondary-btn {
            background: white;
            color: #f3416a;
            border: 2px solid #f3416a;
            padding: 0.9rem 2rem;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .wc-secondary-btn:hover {
            background: #f3416a;
            color: white;
        }

        /* Additional Stats */
        .wc-additional-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 2px solid #f0f0f0;
        }

        .wc-extra-stat {
            display: flex;
            justify-content: space-between;
            padding: 1rem;
            background: #f9f9f9;
            border-radius: 10px;
        }

        .wc-extra-stat-label {
            font-weight: 600;
            color: #555;
        }

        .wc-extra-stat-value {
            color: #f3416a;
            font-weight: 700;
        }

        /* About Section */
        .wc-about-section {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            margin-bottom: 3rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .wc-section-title {
            font-size: 2.5rem;
            color: #f3416a;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .wc-about-content {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 1.5rem;
        }

        .wc-feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .wc-feature-card {
            padding: 2rem;
            background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
            border-radius: 15px;
            border-left: 4px solid #f3416a;
            transition: transform 0.3s ease;
        }

        .wc-feature-card:hover {
            transform: translateX(10px);
        }

        .wc-feature-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .wc-feature-title {
            font-size: 1.3rem;
            color: #333;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .wc-feature-description {
            color: #666;
            line-height: 1.6;
        }

        /* FAQ Section */
        .wc-faq-section {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            margin-bottom: 3rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .wc-faq-item {
            margin-bottom: 1.5rem;
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            overflow: hidden;
        }

        .wc-faq-question {
            background: #f9f9f9;
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: #333;
            transition: background 0.3s ease;
        }

        .wc-faq-question:hover {
            background: #f3416a;
            color: white;
        }

        .wc-faq-toggle {
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .wc-faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background: white;
        }

        .wc-faq-answer.wc-active {
            max-height: 500px;
        }

        .wc-faq-answer-content {
            padding: 1.5rem;
            color: #555;
            line-height: 1.8;
        }

        /* Footer */
        .wc-footer-container {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 2rem 0;
            margin-top: 3rem;
        }

        .wc-footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            text-align: center;
        }

        .wc-footer-text {
            color: #555;
            margin-bottom: 1rem;
        }

        .wc-footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .wc-footer-link {
            color: #f3416a;
            text-decoration: none;
            font-weight: 500;
            transition: opacity 0.3s ease;
        }

        .wc-footer-link:hover {
            opacity: 0.7;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .wc-hero-title {
                font-size: 2rem;
            }

            .wc-nav-menu {
                gap: 1rem;
            }

            .wc-tool-container, .wc-about-section, .wc-faq-section {
                padding: 1.5rem;
            }

            .wc-stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }