       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background: #FFFFFF;
            background: linear-gradient(to bottom right, #c5c5c5 0%, #f0f0f0 50%, #ffffff 100%);
            background-attachment: fixed;
            background-size: cover;
            min-height: 100vh;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            position: relative;
        }

        /* Header Section */
        .header {
            margin-bottom: 80px;
        }

        .language-toggle {
            position: absolute;
            top: 15px;
            right: 20px;
            display: flex;
            background: #fff;
            border-radius: 25px;
            padding: 4px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            border: 1px solid #e0e0e0;
        }

        .toggle-option {
            position: relative;
            padding: 8px 16px;
            font-size: 14px;
            font-weight: 500;
            color: #666;
            cursor: pointer;
            border-radius: 20px;
            transition: all 0.3s ease;
            z-index: 2;
            min-width: 40px;
            text-align: center;
        }

        .toggle-option.active {
            color: #000000;
        }

        .toggle-slider {
            position: absolute;
            top: 4px;
            left: 4px;
            height: calc(100% - 8px);
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 20px;
            transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
            z-index: 1;
            box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
        }

        .logo {
            margin-bottom: 65px;
        }

        .logo img {
            max-width: 200px;
            height: auto;
            margin-top: 65px;
        }

        .main-title {
            font-size: 40px;
            font-size: 2rem;
            font-weight: normal;
            color: #2c2c2c;
            line-height: 1.2;
        }

        .main-title em {
            font-style: italic;
        }

        .subtitle {
            font-size: 40px;
            font-size: 2rem;
            font-weight: normal;
            color: #2c2c2c;
            margin-bottom: 65px;
        }

        .start-btn {
            padding: 12px 24px;
            font-size: 20px;
            font-weight: 500;
            color: #000000;
            background-color: white;
            border: 2px solid #bfbfbf;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Montserrat', sans-serif;
        }

        .start-btn:hover {
            background-color: #f2f2f2;
            border-color: #999999;
        }

        /* Form Section - New Layout */
        .visual-section {
            max-width: 1000px;
            margin: 50px auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
        }

        .form-container {
            background: white;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            border: 1px solid #e0e0e0;
            height: 450px;
        }

        .preview-container {
            background: white;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            border: 1px solid #e0e0e0;
            text-align: center;
            min-height: 400px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 450px;
        }

        /* Full-width pledge section styles */
        .pledge-section-full {
            max-width: 975px;
            margin: 50px auto;
            padding: 30px 20px;
            background: white;
            border-radius: 16px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            border: 1px solid #e0e0e0;
        }

        /* Keep ALL original form styles exactly as they were */
        .section-title {
            font-size: 16px;
            font-weight: 600;
            text-align: center;
            margin-bottom: 8px;
            color: #2c2c2c;
        }

        .section-subtitle {
            text-align: center;
            font-size: 10px;
            opacity: 0.8;
            margin-bottom: 15px;
            color: #666;
        }

        .form-group {
            margin-bottom: 12px;
        }

        .form-label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 4px;
            color: #2c2c2c;
            text-align: left;
        }

        .form-select, .form-input, .form-textarea {
            width: 100%;
            padding: 8px 10px;
            background: rgba(255, 255, 255, 0.9);
            border: 2px solid #ddd;
            border-radius: 6px;
            color: #2c2c2c;
            font-size: 11px;
            transition: all 0.3s ease;
            font-family: 'Montserrat', sans-serif;
        }

        .form-select:focus, .form-input:focus, .form-textarea:focus {
            outline: none;
            background: rgba(255, 255, 255, 1);
            border-color: #007bff;
            box-shadow: 0 0 8px rgba(0, 123, 255, 0.2);
        }

        .form-select option {
            background: #fff;
            color: #2c2c2c;
        }

        .form-textarea {
            min-height: 50px;
            resize: vertical;
        }

        /* Upload Area - Light theme */
        .upload-area {
            border: 2px dashed #ddd;
            border-radius: 8px;
            padding: 15px;
            text-align: center;
            transition: all 0.3s;
            cursor: pointer;
            background: rgba(248, 249, 250, 0.8);
            margin-bottom: 8px;
        }

        .upload-area:hover {
            border-color: #007bff;
            background: rgba(0, 123, 255, 0.05);
        }

        .upload-area.dragover {
            border-color: #007bff;
            background: rgba(0, 123, 255, 0.1);
            transform: scale(1.01);
        }

        .upload-icon {
            width: 20px;
            height: 20px;
            margin-bottom: 6px;
            fill: #666;
        }

        .upload-area h6 {
            font-size: 11px;
            margin-bottom: 4px;
            color: #2c2c2c;
        }

        .upload-area p {
            font-size: 10px;
            opacity: 0.7;
            color: #666;
        }

        .preview-image {
            max-width: 80px;
            max-height: 80px;
            border-radius: 6px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        /* Preview Container Styles */
        .future-self-preview {
            text-align: center;
        }

        .preview-placeholder {
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 60px;
        }

        .preview-title {
            font-size: 22px;
            font-weight: 600;
            color: #2c2c2c;
            margin-bottom: 10px;
        }

        .preview-subtitle {
            font-size: 14px;
            color: #666;
            margin-bottom: 20px;
        }

        .ai-powered-text {
            font-size: 12px;
            color: #007bff;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        /* SDG Section - Light theme */
        .sdg-section {
            background: rgba(248, 249, 250, 0.8);
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 12px;
            margin: 12px 0;
        }

        .sdg-container {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            justify-content: center;
            margin-bottom: 8px;
        }

        .sdg-item {
            background: linear-gradient(135deg, #007bff, #0056b3);
            color: white;
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 600;
            text-align: center;
            box-shadow: 0 2px 6px rgba(0, 123, 255, 0.3);
            transition: transform 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            min-width: 200px;
        }

        .sdg-item:hover {
            transform: translateY(-1px);
        }

        .sdg-icon {
            width: 48px;
            height: 48px;
            border-radius: 4px;
            flex-shrink: 0;
        }

        .sdg-content {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .sdg-number {
            display: inline-block;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            width: 16px;
            height: 16px;
            line-height: 16px;
            font-size: 12px;
            font-weight: 700;
            text-align:center;
        }

        /* Banner for special occupations */
        .tata-jagore-banner {
            background: linear-gradient(135deg, #28a745, #20c997);
            color: white;
            padding: 10px;
            border-radius: 8px;
            margin: 10px 0;
            font-size: 12px;
            font-weight: 600;
            text-align: center;
            box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
        }

        /* AI Status */
        .ai-status {
            display: none;
            text-align: center;
            padding: 15px;
            background: rgba(248, 249, 250, 0.8);
            border-radius: 8px;
            border: 1px solid #e0e0e0;
            margin: 12px 0;
        }

        .generated-image-container {
            display: none;
            text-align: center;
            width: 100%;
        }

        .inspire-text {
            font-size: 11px;
            margin: 10px 0;
            color: #007bff;
            font-weight: 600;
        }

        /* Buttons - Light theme */
        .action-buttons {
            display: flex;
            gap: 8px;
            justify-content: center;
            flex-wrap: wrap;
            margin: 12px 0;
        }

        .btn {
            padding: 6px 12px;
            border: none;
            border-radius: 16px;
            font-size: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .btn-primary {
            background: linear-gradient(45deg, #007bff, #0056b3);
            color: white;
        }

        .btn-secondary {
            background: rgba(248, 249, 250, 0.9);
            color: #2c2c2c;
            border: 2px solid #e0e0e0;
        }

        .btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
        }

        /* Sample Pledge */
        .sample-pledge {
            background: rgba(255, 193, 7, 0.1);
            border-left: 3px solid #ffc107;
            padding: 8px;
            margin: 8px 0;
            border-radius: 4px;
            font-style: italic;
            font-size: 10px;
        }

        .sample-label {
            font-weight: 600;
            color: #856404;
            margin-bottom: 2px;
            font-size: 9px;
        }

        /* Checkbox */
        .checkbox-group {
            display: flex;
            align-items: center;
            gap: 6px;
            margin: 12px 0;
        }

        .checkbox {
            width: 14px;
            height: 14px;
            cursor: pointer;
        }

        .checkbox-label {
            cursor: pointer;
            font-size: 10px;
            opacity: 0.9;
        }

        /* Submit Button */
        .submit-btn {
            width: 100%;
            padding: 10px;
            background: linear-gradient(45deg, #007bff, #0056b3);
            background: #000;
            border: none;
            border-radius: 6px;
            color: white;
            font-size: 12px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .submit-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(0, 123, 255, 0.4);
        }

        .submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        /* Loading Animation */
        .loading {
            display: none;
            text-align: center;
            padding: 12px;
        }

        .spinner {
            width: 20px;
            height: 20px;
            border: 2px solid rgba(0, 123, 255, 0.3);
            border-top: 2px solid #007bff;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 6px;
        }

        /* Success Message */
        .success-message {
            display: none;
            text-align: center;
            padding: 15px;
            background: rgba(40, 167, 69, 0.1);
            border: 2px solid #28a745;
            border-radius: 8px;
            margin-top: 12px;
        }

        /* Character Counter */
        .char-counter {
            font-size: 9px;
            opacity: 0.7;
            margin-top: 2px;
            color: #666;
            text-align: right;
        }

        /* Success State */
        .success-icon {
            font-size: 18px;
            margin-bottom: 6px;
        }

        .success-text {
            font-size: 11px;
            font-weight: 600;
            color: #155724;
        }

        #shareBtn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 8px 16px;
            font-size: 11px;
            font-weight: 500;
            font-family: 'Montserrat', sans-serif;
            color: #2c2c2c;
            background-color: #ffffff;
            border: 2px solid #ddd;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            margin-top: 20px;
        }

        #submitAnotherBtn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 8px 16px;
            font-size: 11px;
            font-weight: 500;
            font-family: 'Montserrat', sans-serif;
            color: #ffffff;
            background-color: #007bff;
            border: 2px solid #007bff;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            text-decoration: none;
        }

        #submitAnotherBtn:hover {
            background-color: #0056b3;
            border-color: #0056b3;
            transform: translateY(-1px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        }

        #submitAnotherBtn svg {
            width: 12px;
            height: 12px;
            fill: currentColor;
            transition: transform 0.2s ease;
        }

        .hidden {
            display: none !important;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .visual-section {
                grid-template-columns: 1fr;
                gap: 20px;
                margin: 30px auto;
                padding: 0 15px;
            }

            .form-container, .preview-container {
                padding: 20px;
            }

            .pledge-section-full {
                margin: 20px auto;
                padding: 20px 15px;
            }

            .section-title {
                font-size: 14px;
            }

            .main-title, .subtitle {
                font-size: 28px;
            }

            .preview-placeholder {
                width: 150px;
                height: 150px;
                font-size: 40px;
            }

            .upload-area {
                padding: 12px;
            }

            .upload-icon {
                width: 16px;
                height: 16px;
            }

            .sdg-mobile-icon {
                width: 80px !important;
                height: 80px !important;
            }
            .mobile-banner {
                width: 250px !important;
            }

        }

        /* Bottom Section */
        .bottom-section {
            position: relative;
            margin-top: 100px;
            text-align: center;
        }

        .explore {
            position: relative;
            text-align: center;
            width: 100%;
            margin: 65px 0;
            padding: 0 20px;
        }

        /* Video styles (keeping original) */
        .featured-video {
            width: 100%;
            max-width: 958px;
            margin: 30px auto;
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 539px;
        }

        .featured-video:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
        }

        .featured-video video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .featured-video img {
            width: 100%;
            height: 350px;
            object-fit: cover;
            display: block;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .play-button {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .play-button:hover {
            background: rgba(255, 255, 255, 1);
            transform: scale(1.1);
        }

        .play-button svg {
            width: 35px;
            height: 35px;
            fill: #2c2c2c;
            margin-left: 4px;
        }

        .video-info {
            position: absolute;
            bottom: 20px;
            left: 20px;
            right: 20px;
            color: white;
        }

        .video-title {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 8px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
        }

        .video-duration {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 500;
        }

        .video-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin: 40px auto;
            max-width: 1000px;
            padding: 0 20px;
        }

        .video-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .video-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .video-thumbnail {
            position: relative;
            width: 100%;
            height: 180px;
            overflow: hidden;
        }

        .video-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .video-card:hover .video-thumbnail img {
            transform: scale(1.05);
        }

        .video-card .video-overlay {
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .video-card:hover .video-overlay {
            opacity: 1;
        }

        .video-card .play-button {
            width: 60px;
            height: 60px;
        }

        .video-card .play-button svg {
            width: 25px;
            height: 25px;
        }

        .video-card .video-duration {
            bottom: 10px;
            right: 10px;
            font-size: 11px;
        }

        .video-content {
            padding: 20px;
        }

        .video-content h3 {
            font-size: 16px;
            font-weight: 600;
            color: #2c2c2c;
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .video-meta {
            display: flex;
            display: none;
            align-items: center;
            gap: 15px;
            color: #666;
            font-size: 12px;
        }

        .video-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: #f8f9fa;
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 500;
            color: #495057;
        }

        /* Lightbox Styles */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 10000;
            justify-content: center;
            align-items: center;
            animation: fadeIn 0.3s ease;
        }

        .lightbox.active {
            display: flex;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .lightbox-content {
            position: relative;
            width: 90%;
            max-width: 900px;
            max-height: 90%;
            background: #000;
            border-radius: 8px;
            overflow: hidden;
            animation: slideIn 0.3s ease;
        }

        @keyframes slideIn {
            from { 
                transform: scale(0.8);
                opacity: 0;
            }
            to { 
                transform: scale(1);
                opacity: 1;
            }
        }

        .lightbox-video {
            width: 100%;
            aspect-ratio: 16/9;
            background: #000;
        }

        .lightbox-video iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .lightbox-close {
            position: fixed;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: white;
            font-size: 30px;
            cursor: pointer;
            padding: 10px;
            z-index: 10002;
            transition: opacity 0.3s ease;
        }

        .lightbox-close:hover {
            opacity: 0.7;
        }

        .lightbox-info {
            padding: 20px;
            background: #1a1a1a;
            color: white;
        }

        .lightbox-title {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .lightbox-description {
            font-size: 14px;
            color: #ccc;
            line-height: 1.5;
        }

        .description {
            max-width: 700px;
            margin: 0 auto 60px;
            font-size: 18px;
            color: #2c2c2c;
            line-height: 1.6;
        }

        .description p {
            margin-bottom: 20px;
        }

        .thank-you {
            font-size: 16px;
            color: #2c2c2c;
            margin-top: 80px;
        }

        /* Footer */
        .footer {
            background: rgba(255, 255, 255, 0);
            padding: 40px 0px;
            text-align: center;
            color: white;
            border-top: 1px solid #ff6b35;
            position: relative;
            z-index: 10;
            bottom: 0;
            margin-top: 50px;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 15px;
        }

        .footer-links a {
            color: #ff6b35;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #000;
        }

        .footer p {
            font-size: 0.8rem;
            color: #000;
            margin: 0;
        }

        /* Social Media Icons Styles */
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 20px 0;
        }

        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: #fff;
            border-radius: 50%;
            transition: all 0.3s ease;
            text-decoration: none;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .social-icon:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .social-icon svg {
            width: 24px;
            height: 24px;
            transition: transform 0.3s ease;
        }

        .social-icon:hover svg {
            transform: scale(1.1);
        }

        /* Instagram gradient */
        .social-icon.instagram {
            background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
        }

        .social-icon.instagram svg {
            fill: white;
        }

        /* Facebook blue */
        .social-icon.facebook {
            background: #1877f2;
        }

        .social-icon.facebook svg {
            fill: white;
        }

        /* YouTube red */
        .social-icon.youtube {
            background: #ff0000;
        }

        .social-icon.youtube svg {
            fill: white;
        }

        @media (max-width: 768px) {
            .social-icons {
                gap: 15px;
            }
            
            .social-icon {
                width: 40px;
                height: 40px;
            }
            
            .social-icon svg {
                width: 20px;
                height: 20px;
            }

            .footer-links {
                flex-direction: column;
                gap: 15px;
            }
        }

        /* Success Page Overlay - Full Screen */
.success-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    background: linear-gradient(to bottom right, #c5c5c5 0%, #f0f0f0 50%, #ffffff 100%);
    z-index: 10000;
    overflow-y: auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

.success-overlay.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.success-content-wrapper {
    width: 100%;
    max-width: 800px;
    text-align: center;
    color: #2c2c2c;
}

/* Success Header */
.success-header {
    margin-bottom: 40px;
}

.success-icon-large {
    font-size: 64px;
    margin-bottom: 20px;
    display: block;
}

.success-title-large {
    font-size: 32px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

/* Share Button */
.share-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    border: 2px solid #bfbfbf;
    color: #2c2c2c;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-bottom: 60px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.share-button:hover {
    background: #f2f2f2;
    border-color: #999999;
    transform: translateY(-2px);
}

/* Generated Image Section */
.generated-image-section {
    margin-bottom: 40px;
}

.generated-image-container-success {
    width: 300px;
    height: 300px;
    margin: 0 auto 30px;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.generated-image-container-success img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.success-image-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.success-image-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

/* Image Action Buttons */
.image-action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.image-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 2px solid #e0e0e0;
    color: #2c2c2c;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.image-action-btn:hover {
    background: #f8f9fa;
    border-color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

/* SDG Section */
.sdg-section-success {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.sdg-title-success {
    font-size: 20px;
    font-weight: 600;
    color: #007bff;
    margin-bottom: 20px;
    text-align: center;
}

.sdg-container-success {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.sdg-item-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 15px;
    border: 1px solid #e0e0e0;
    min-width: 120px;
}

.sdg-icon-success {
    width: 60px;
    height: 60px;
    border-radius: 8px;
}

.sdg-number-success {
    background: #007bff;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.sdg-title-text {
    color: #2c2c2c;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

.sdg-learn-more-btn {
    background: white;
    border: 1px solid #e0e0e0;
    color: #2c2c2c;
    padding: 8px 16px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sdg-learn-more-btn:hover {
    background: #f8f9fa;
    border-color: #007bff;
    transform: translateY(-1px);
}

/* Pro Tip Section */
.pro-tip-success {
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid #ffc107;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
}

.pro-tip-success .tip-icon {
    font-size: 24px;
    margin-bottom: 10px;
    display: block;
}

.pro-tip-success .tip-title {
    color: #856404;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.pro-tip-success .tip-text {
    color: #2c2c2c;
    font-size: 14px;
    line-height: 1.5;
}

/* Bottom Actions */
.bottom-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.bottom-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #000;
    border: 2px solid #000;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bottom-action-btn:hover {
    background: #333;
    border-color: #333;
    transform: translateY(-2px);
}