/* ===== Sitemap Generator Tool Specific Styles ===== */
        .sitemap-generator-wrapper {
            font-family: 'Inter', sans-serif;
        }
        
        .sitemap-generator-wrapper * {
            box-sizing: border-box;
        }

        /* Hero Section */
        .sitemap-hero-section {
            background: linear-gradient(135deg, #18212b 0%, #2a3a4d 50%, #18212b 100%);
            padding: 60px 0 80px;
            position: relative;
            overflow: hidden;
        }
        
        .sitemap-hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d7692b' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.5;
        }
        
        .sitemap-hero-content {
            position: relative;
            z-index: 2;
        }
        
        .sitemap-hero-title {
            font-family: 'Poppins', sans-serif;
            font-size: 2.8rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .sitemap-hero-title span {
            color: #d7692b;
        }
        
        .sitemap-hero-subtitle {
            font-size: 1.2rem;
            color: #f5af6ef0;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }
        
        .sitemap-rating-badge {
            display: inline-flex;
            align-items: center;
            background: rgba(215, 105, 43, 0.2);
            border: 1px solid #d7692b;
            border-radius: 50px;
            padding: 10px 25px;
            margin-bottom: 20px;
        }
        
        .sitemap-rating-stars {
            color: #ffc107;
            margin-right: 10px;
            font-size: 1.1rem;
        }
        
        .sitemap-rating-text {
            color: #ffffff;
            font-weight: 600;
            font-size: 0.95rem;
        }
        
        .sitemap-rating-text span {
            color: #f5af6ef0;
        }

        /* Main Tool Section */
        .sitemap-tool-section {
            padding: 60px 0;
            background: #f8f9fa;
        }
        
        .sitemap-tool-card {
            background: #ffffff;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(24, 33, 43, 0.15);
            padding: 40px;
            margin-top: -120px;
            position: relative;
            z-index: 10;
            border: none;
        }
        
        .sitemap-form-group {
            margin-bottom: 25px;
        }
        
        .sitemap-form-label {
            font-weight: 600;
            color: #18212b;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            font-size: 0.95rem;
        }
        
        .sitemap-form-label i {
            color: #d7692b;
            margin-right: 8px;
        }
        
        .sitemap-input {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e9ecef;
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: #f8f9fa;
        }
        
        .sitemap-input:focus {
            border-color: #d7692b;
            box-shadow: 0 0 0 4px rgba(215, 105, 43, 0.15);
            outline: none;
            background: #ffffff;
        }
        
        .sitemap-input::placeholder {
            color: #adb5bd;
        }
        
        .sitemap-select {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e9ecef;
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: #f8f9fa;
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23d7692b' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 15px center;
        }
        
        .sitemap-select:focus {
            border-color: #d7692b;
            box-shadow: 0 0 0 4px rgba(215, 105, 43, 0.15);
            outline: none;
            background-color: #ffffff;
        }
        
        .sitemap-btn-generate {
            background: linear-gradient(135deg, #d7692b 0%, #e8854a 100%);
            color: #ffffff;
            border: none;
            padding: 16px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(215, 105, 43, 0.4);
            width: 100%;
        }
        
        .sitemap-btn-generate:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(215, 105, 43, 0.5);
            background: linear-gradient(135deg, #c55d24 0%, #d7692b 100%);
        }
        
        .sitemap-btn-generate:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }
        
        .sitemap-btn-generate i {
            margin-right: 10px;
        }

        /* Options Panel */
        .sitemap-options-panel {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 15px;
            padding: 25px;
            margin-top: 20px;
            border: 1px solid #dee2e6;
        }
        
        .sitemap-options-title {
            font-weight: 700;
            color: #18212b;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            font-size: 1.1rem;
        }
        
        .sitemap-options-title i {
            color: #d7692b;
            margin-right: 10px;
        }
        
        .sitemap-checkbox-group {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .sitemap-checkbox-item {
            display: flex;
            align-items: center;
            background: #ffffff;
            padding: 12px 18px;
            border-radius: 10px;
            border: 2px solid #e9ecef;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .sitemap-checkbox-item:hover {
            border-color: #d7692b;
        }
        
        .sitemap-checkbox-item input[type="checkbox"] {
            width: 20px;
            height: 20px;
            margin-right: 10px;
            accent-color: #d7692b;
            cursor: pointer;
        }
        
        .sitemap-checkbox-label {
            font-weight: 500;
            color: #495057;
            font-size: 0.95rem;
            cursor: pointer;
        }

        /* Progress Section */
        .sitemap-progress-section {
            margin-top: 30px;
            display: none;
        }
        
        .sitemap-progress-section.active {
            display: block;
        }
        
        .sitemap-progress-card {
            background: linear-gradient(135deg, #18212b 0%, #2a3a4d 100%);
            border-radius: 15px;
            padding: 30px;
            color: #ffffff;
        }
        
        .sitemap-progress-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .sitemap-progress-title {
            font-weight: 600;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
        }
        
        .sitemap-progress-title i {
            color: #d7692b;
            margin-right: 10px;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .sitemap-progress-text {
            color: #f5af6ef0;
            font-size: 0.95rem;
        }
        
        .sitemap-progress-bar-container {
            background: rgba(255,255,255,0.1);
            border-radius: 10px;
            height: 12px;
            overflow: hidden;
            margin-bottom: 20px;
        }
        
        .sitemap-progress-bar {
            background: linear-gradient(90deg, #d7692b 0%, #f5af6ef0 100%);
            height: 100%;
            border-radius: 10px;
            width: 0%;
            transition: width 0.5s ease;
            animation: progressPulse 1.5s ease-in-out infinite;
        }
        
        @keyframes progressPulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }
        
        .sitemap-progress-info {
            display: flex;
            justify-content: center;
            align-items: center;
            color: #adb5bd;
            font-size: 0.9rem;
        }
        
        .sitemap-progress-info i {
            margin-right: 8px;
            color: #d7692b;
        }

        /* Results Section */
        .sitemap-results-section {
            margin-top: 30px;
            display: none;
        }
        
        .sitemap-results-section.active {
            display: block;
        }
        
        .sitemap-results-card {
            background: #ffffff;
            border-radius: 15px;
            border: 2px solid #28a745;
            padding: 30px;
        }
        
        .sitemap-results-header {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 2px solid #e9ecef;
        }
        
        .sitemap-results-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #28a745 0%, #34ce57 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .sitemap-results-icon i {
            color: #ffffff;
            font-size: 1.5rem;
        }
        
        .sitemap-results-title {
            font-weight: 700;
            font-size: 1.4rem;
            color: #18212b;
            margin-bottom: 5px;
        }
        
        .sitemap-results-subtitle {
            color: #6c757d;
            font-size: 0.95rem;
            margin: 0;
        }
        
        .sitemap-results-subtitle a {
            color: #d7692b;
            text-decoration: none;
        }
        
        .sitemap-results-subtitle a:hover {
            text-decoration: underline;
        }
        
        .sitemap-results-stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 15px;
            margin-bottom: 25px;
        }
        
        .sitemap-stat-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
        }
        
        .sitemap-stat-value {
            font-weight: 700;
            font-size: 1.6rem;
            color: #d7692b;
            margin-bottom: 5px;
        }
        
        .sitemap-stat-label {
            color: #6c757d;
            font-size: 0.8rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* What's Next Section */
        .sitemap-next-steps {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 25px;
            text-align: center;
            border: 1px solid #e9ecef;
        }
        
        .sitemap-next-steps h4 {
            color: #18212b;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .sitemap-step-arrow {
            color: #d7692b;
            font-size: 1.5rem;
            margin: 15px 0;
        }
        
        .sitemap-step-text {
            color: #495057;
            font-size: 0.95rem;
            margin-bottom: 10px;
        }
        
        .sitemap-step-text a {
            color: #d7692b;
            font-weight: 600;
            text-decoration: none;
        }
        
        .sitemap-step-text a:hover {
            text-decoration: underline;
        }

        /* Action Buttons */
        .sitemap-action-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 25px;
            justify-content: center;
        }
        
        .sitemap-btn-download {
            background: linear-gradient(135deg, #d7692b 0%, #e8854a 100%);
            color: #ffffff;
            border: none;
            padding: 14px 30px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            box-shadow: 0 4px 15px rgba(215, 105, 43, 0.4);
            text-decoration: none;
        }
        
        .sitemap-btn-download:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(215, 105, 43, 0.5);
            color: #ffffff;
        }
        
        .sitemap-btn-download i {
            margin-right: 8px;
        }
        
        .sitemap-btn-secondary {
            background: #18212b;
            color: #ffffff;
            border: none;
            padding: 14px 30px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            text-decoration: none;
        }
        
        .sitemap-btn-secondary:hover {
            background: #2a3a4d;
            transform: translateY(-2px);
            color: #ffffff;
        }
        
        .sitemap-btn-secondary i {
            margin-right: 8px;
        }
        
        .sitemap-btn-outline {
            background: transparent;
            color: #6c757d;
            border: 2px solid #dee2e6;
            padding: 12px 25px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            text-decoration: none;
        }
        
        .sitemap-btn-outline:hover {
            border-color: #d7692b;
            color: #d7692b;
        }
        
        .sitemap-btn-outline i {
            margin-right: 8px;
        }

        /* Sitemap Preview */
        .sitemap-preview-section {
            margin-top: 25px;
            padding-top: 25px;
            border-top: 2px solid #e9ecef;
        }
        
        .sitemap-preview-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .sitemap-preview-title {
            font-weight: 600;
            color: #18212b;
            display: flex;
            align-items: center;
            font-size: 1.1rem;
        }
        
        .sitemap-preview-title i {
            color: #d7692b;
            margin-right: 10px;
        }
        
        .sitemap-btn-view-full {
            background: linear-gradient(135deg, #d7692b 0%, #e8854a 100%);
            color: #ffffff;
            border: none;
            padding: 10px 20px;
            font-size: 0.9rem;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            text-decoration: none;
        }
        
        .sitemap-btn-view-full:hover {
            background: linear-gradient(135deg, #c55d24 0%, #d7692b 100%);
            color: #ffffff;
        }
        
        .sitemap-btn-view-full i {
            margin-right: 6px;
        }

        /* URL Table */
        .sitemap-url-table-container {
            overflow-x: auto;
            border-radius: 12px;
            border: 1px solid #e9ecef;
        }
        
        .sitemap-url-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 600px;
        }
        
        .sitemap-url-table th {
            background: #18212b;
            color: #ffffff;
            padding: 15px;
            text-align: left;
            font-weight: 600;
            font-size: 0.9rem;
            white-space: nowrap;
        }
        
        .sitemap-url-table td {
            padding: 12px 15px;
            border-bottom: 1px solid #e9ecef;
            font-size: 0.9rem;
            color: #495057;
        }
        
        .sitemap-url-table tr:hover td {
            background: #f8f9fa;
        }
        
        .sitemap-url-link {
            color: #d7692b;
            text-decoration: none;
            word-break: break-all;
        }
        
        .sitemap-url-link:hover {
            text-decoration: underline;
        }
        
        .sitemap-priority-badge {
            display: inline-block;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .sitemap-priority-high {
            background: rgba(215, 105, 43, 0.15);
            color: #d7692b;
        }
        
        .sitemap-priority-medium {
            background: rgba(245, 175, 110, 0.3);
            color: #c76a2a;
        }
        
        .sitemap-priority-low {
            background: rgba(108, 117, 125, 0.15);
            color: #6c757d;
        }
        
        .sitemap-load-more {
            text-align: center;
            padding: 20px;
        }

        /* Broken Links Section */
        .sitemap-broken-links {
            margin-top: 25px;
            padding: 20px;
            background: #fff3cd;
            border-radius: 12px;
            border: 1px solid #ffc107;
        }
        
        .sitemap-broken-links-title {
            color: #856404;
            font-weight: 600;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .sitemap-broken-links-title i {
            margin-right: 10px;
        }
        
        .sitemap-broken-link-item {
            background: #ffffff;
            padding: 10px 15px;
            border-radius: 8px;
            margin-bottom: 8px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
        }
        
        .sitemap-broken-link-url {
            color: #856404;
            word-break: break-all;
        }
        
        .sitemap-broken-link-status {
            background: #dc3545;
            color: #ffffff;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            flex-shrink: 0;
            margin-left: 10px;
        }

        /* XML Preview Modal */
        .sitemap-xml-preview {
            background: #18212b;
            border-radius: 12px;
            padding: 20px;
            max-height: 400px;
            overflow-y: auto;
            margin-top: 15px;
        }
        
        .sitemap-xml-preview::-webkit-scrollbar {
            width: 8px;
        }
        
        .sitemap-xml-preview::-webkit-scrollbar-track {
            background: #2a3a4d;
            border-radius: 4px;
        }
        
        .sitemap-xml-preview::-webkit-scrollbar-thumb {
            background: #d7692b;
            border-radius: 4px;
        }
        
        .sitemap-xml-code {
            color: #f5af6ef0;
            font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
            font-size: 0.85rem;
            white-space: pre-wrap;
            word-break: break-all;
            margin: 0;
        }

        /* Ad Spaces */
        .sitemap-ad-space {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border: 2px dashed #dee2e6;
            border-radius: 15px;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            color: #adb5bd;
            position: sticky;
            top: 20px;
        }
        
        .sitemap-ad-space i {
            font-size: 3rem;
            margin-bottom: 15px;
            color: #d7692b;
            opacity: 0.5;
        }
        
        .sitemap-ad-space span {
            font-weight: 500;
            font-size: 0.95rem;
        }

        /* Modal Popup */
        .sitemap-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(24, 33, 43, 0.9);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            padding: 20px;
        }
        
        .sitemap-modal-overlay.active {
            display: flex;
        }
        
        .sitemap-modal-content {
            background: #ffffff;
            border-radius: 20px;
            max-width: 500px;
            width: 100%;
            padding: 40px;
            text-align: center;
            position: relative;
            animation: modalSlideIn 0.3s ease;
        }
        
        .sitemap-modal-content.modal-lg {
            max-width: 900px;
            max-height: 90vh;
            overflow-y: auto;
            text-align: left;
        }
        
        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: scale(0.9) translateY(-20px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }
        
        .sitemap-modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 40px;
            height: 40px;
            background: #f8f9fa;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }
        
        .sitemap-modal-close:hover {
            background: #d7692b;
            color: #ffffff;
        }
        
        .sitemap-modal-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        
        .sitemap-modal-icon.success {
            background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(40, 167, 69, 0.2) 100%);
        }
        
        .sitemap-modal-icon.success i {
            color: #28a745;
            font-size: 2.5rem;
        }
        
        .sitemap-modal-icon.error {
            background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(220, 53, 69, 0.2) 100%);
        }
        
        .sitemap-modal-icon.error i {
            color: #dc3545;
            font-size: 2.5rem;
        }
        
        .sitemap-modal-icon.warning {
            background: linear-gradient(135deg, rgba(215, 105, 43, 0.1) 0%, rgba(215, 105, 43, 0.2) 100%);
        }
        
        .sitemap-modal-icon.warning i {
            color: #d7692b;
            font-size: 2.5rem;
        }
        
        .sitemap-modal-title {
            font-weight: 700;
            font-size: 1.5rem;
            color: #18212b;
            margin-bottom: 10px;
        }
        
        .sitemap-modal-message {
            color: #6c757d;
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 25px;
        }
        
        .sitemap-modal-btn {
            background: linear-gradient(135deg, #d7692b 0%, #e8854a 100%);
            color: #ffffff;
            border: none;
            padding: 14px 40px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .sitemap-modal-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(215, 105, 43, 0.4);
        }

        /* Features Section */
        .sitemap-features-section {
            padding: 60px 0;
            background: #ffffff;
        }
        
        .sitemap-section-title {
            font-family: 'Poppins', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: #18212b;
            text-align: center;
            margin-bottom: 15px;
        }
        
        .sitemap-section-title span {
            color: #d7692b;
        }
        
        .sitemap-section-subtitle {
            color: #6c757d;
            text-align: center;
            margin-bottom: 40px;
            font-size: 1.1rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .sitemap-feature-card {
            background: #ffffff;
            border-radius: 15px;
            padding: 30px 25px;
            text-align: center;
            box-shadow: 0 5px 25px rgba(24, 33, 43, 0.08);
            transition: all 0.3s ease;
            border: 2px solid transparent;
            height: 100%;
        }
        
        .sitemap-feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(24, 33, 43, 0.15);
            border-color: #d7692b;
        }
        
        .sitemap-feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(215, 105, 43, 0.1) 0%, rgba(245, 175, 110, 0.2) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        
        .sitemap-feature-icon i {
            font-size: 1.8rem;
            color: #d7692b;
        }
        
        .sitemap-feature-title {
            font-weight: 700;
            font-size: 1.1rem;
            color: #18212b;
            margin-bottom: 12px;
        }
        
        .sitemap-feature-text {
            color: #6c757d;
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* How It Works Section */
        .sitemap-howto-section {
            padding: 60px 0;
            background: linear-gradient(135deg, #18212b 0%, #2a3a4d 100%);
        }
        
        .sitemap-howto-section .sitemap-section-title {
            color: #ffffff;
        }
        
        .sitemap-howto-section .sitemap-section-subtitle {
            color: #adb5bd;
        }
        
        .sitemap-step-card {
            background: rgba(255,255,255,0.05);
            border-radius: 15px;
            padding: 30px 20px;
            text-align: center;
            position: relative;
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .sitemap-step-card:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-5px);
        }
        
        .sitemap-step-number {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #d7692b 0%, #f5af6ef0 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.3rem;
            color: #ffffff;
            margin: 0 auto 20px;
        }
        
        .sitemap-step-title {
            font-weight: 600;
            font-size: 1.1rem;
            color: #ffffff;
            margin-bottom: 12px;
        }
        
        .sitemap-step-text {
            color: #adb5bd;
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* FAQ Section */
        .sitemap-faq-section {
            padding: 60px 0;
            background: #f8f9fa;
        }
        
        .sitemap-accordion-item {
            background: #ffffff;
            border-radius: 12px;
            margin-bottom: 15px;
            border: none;
            box-shadow: 0 2px 10px rgba(24, 33, 43, 0.05);
            overflow: hidden;
        }
        
        .sitemap-accordion-button {
            width: 100%;
            padding: 20px 25px;
            background: #ffffff;
            border: none;
            text-align: left;
            font-weight: 600;
            font-size: 1.05rem;
            color: #18212b;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .sitemap-accordion-button:hover {
            background: #f8f9fa;
        }
        
        .sitemap-accordion-button.active {
            background: #d7692b;
            color: #ffffff;
        }
        
        .sitemap-accordion-button i {
            transition: transform 0.3s ease;
            flex-shrink: 0;
            margin-left: 15px;
        }
        
        .sitemap-accordion-button.active i {
            transform: rotate(180deg);
        }
        
        .sitemap-accordion-body {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .sitemap-accordion-body.active {
            padding: 20px 25px;
            max-height: 500px;
        }
        
        .sitemap-accordion-body p {
            color: #6c757d;
            line-height: 1.8;
            margin: 0;
        }

        /* Content Section */
        .sitemap-content-section {
            padding: 60px 0;
            background: #ffffff;
        }
        
        .sitemap-content-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 5px 25px rgba(24, 33, 43, 0.08);
        }
        
        .sitemap-content-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.6rem;
            font-weight: 700;
            color: #18212b;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }
        
        .sitemap-content-title i {
            color: #d7692b;
            margin-right: 15px;
            font-size: 1.4rem;
        }
        
        .sitemap-content-text {
            color: #495057;
            line-height: 1.9;
            font-size: 1rem;
        }
        
        .sitemap-content-text h3 {
            font-weight: 700;
            color: #18212b;
            margin-top: 25px;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }
        
        .sitemap-content-text ul {
            padding-left: 20px;
        }
        
        .sitemap-content-text li {
            margin-bottom: 10px;
        }
        
        .sitemap-content-text li::marker {
            color: #d7692b;
        }
        
        .sitemap-highlight-box {
            background: linear-gradient(135deg, rgba(215, 105, 43, 0.1) 0%, rgba(245, 175, 110, 0.1) 100%);
            border-left: 4px solid #d7692b;
            padding: 20px 25px;
            border-radius: 0 12px 12px 0;
            margin: 25px 0;
        }
        
        .sitemap-highlight-box p {
            margin: 0;
            color: #495057;
        }

        /* Related Tools Section */
        .sitemap-related-section {
            padding: 60px 0;
            background: #f8f9fa;
        }
        
        .sitemap-related-card {
            background: #ffffff;
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            text-decoration: none;
            display: block;
            height: 100%;
        }
        
        .sitemap-related-card:hover {
            border-color: #d7692b;
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(24, 33, 43, 0.1);
        }
        
        .sitemap-related-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #d7692b 0%, #f5af6ef0 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
        }
        
        .sitemap-related-icon i {
            color: #ffffff;
            font-size: 1.5rem;
        }
        
        .sitemap-related-title {
            font-weight: 600;
            color: #18212b;
            font-size: 1rem;
        }

        /* Loader */
        .sitemap-loader {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255,255,255,0.3);
            border-radius: 50%;
            border-top-color: #ffffff;
            animation: spin 1s linear infinite;
            margin-right: 10px;
        }

        /* Responsive Design */
        @media (max-width: 991px) {
            .sitemap-hero-title {
                font-size: 2.2rem;
            }
            
            .sitemap-tool-card {
                padding: 30px 20px;
            }
            
            .sitemap-ad-space {
                display: none;
            }
        }
        
        @media (max-width: 767px) {
            .sitemap-hero-section {
                padding: 40px 0 60px;
            }
            
            .sitemap-hero-title {
                font-size: 1.8rem;
            }
            
            .sitemap-hero-subtitle {
                font-size: 1rem;
            }
            
            .sitemap-tool-card {
                margin-top: -80px;
                padding: 25px 15px;
            }
            
            .sitemap-section-title {
                font-size: 1.5rem;
            }
            
            .sitemap-checkbox-group {
                flex-direction: column;
            }
            
            .sitemap-action-buttons {
                flex-direction: column;
            }
            
            .sitemap-action-buttons button,
            .sitemap-action-buttons a {
                width: 100%;
                justify-content: center;
            }
            
            .sitemap-results-header {
                flex-direction: column;
                text-align: center;
            }
            
            .sitemap-results-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .sitemap-preview-header {
                flex-direction: column;
                align-items: flex-start;
            }
        }