  /* CSS Reset and Variables */
        :root {
            --primary: #2c3e50;
            --secondary: #3498db;
            --accent: #e74c3c;
            --light: #ecf0f1;
            --dark: #2c3e50;
            --text: #333;
            --text-light: #7f8c8d;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            color: var(--text);
            background-color: #f9f9f9;
            line-height: 1.6;
        }
        
        /* Container */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header & Navigation */
        header {
            background-color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 18px;
        }
        
        .logo-text {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
        }
        
        .logo-text span {
            color: var(--secondary);
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }
        
        .nav-links a:hover {
            color: var(--secondary);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--secondary);
            transition: var(--transition);
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--primary);
        }
        
        /* Hero Section */
        .hero {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary), #1a2530);
            color: white;
            text-align: center;
        }
        
        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            color: var(--light);
        }
        
        .cta-button {
            display: inline-block;
            background-color: var(--accent);
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
        }
        
        .cta-button:hover {
            background-color: #c0392b;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
        }
        
        /* Tools Section */
        .tools-section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .section-title p {
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .tools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .tool-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
            padding: 30px 20px;
        }
        
        .tool-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }
        
        .tool-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 30px;
        }
        
        .tool-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        .tool-card p {
            color: var(--text-light);
            margin-bottom: 20px;
        }
        
        .tool-button {
            display: inline-block;
            background-color: var(--secondary);
            color: white;
            padding: 10px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
        }
        
        .tool-button:hover {
            background-color: #2980b9;
        }
        
        /* Features Section */
        .features-section {
            padding: 80px 0;
            background-color: var(--light);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .feature-item {
            display: flex;
            gap: 20px;
        }
        
        .feature-icon {
            flex-shrink: 0;
            width: 60px;
            height: 60px;
            background-color: var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
        }
        
        .feature-content h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--primary);
        }
        
        .feature-content p {
            color: var(--text-light);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--light);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #bdc3c7;
            font-size: 0.9rem;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: var(--shadow);
                text-align: center;
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            
            .hero {
                padding: 60px 0;
            }
            
            .tools-section, .features-section {
                padding: 60px 0;
            }
            
            .tool-card {
                padding: 20px 15px;
            }
            
            .feature-item {
                flex-direction: column;
                text-align: center;
            }
        }
        
        @media (max-width: 350px) {
            .logo-text {
                font-size: 20px;
            }
            
            .hero h1 {
                font-size: 1.7rem;
            }
            
            .tools-grid {
                grid-template-columns: 1fr;
            }
            
            .tool-card {
                padding: 15px 10px;
            }
        }

           /* CSS Variables */
        :root {
            --primary-color: #2c3e50;
            --secondary-color: #3498db;
            --accent-color: #e74c3c;
            --light-color: #ecf0f1;
            --dark-color: #2c3e50;
            --text-color: #333333;
            --text-light: #7f8c8d;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
            --border-radius: 8px;
        }

        /* Base Styles */
        section {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            color: var(--text-color);
            background-color: #f9f9f9;
            line-height: 1.6;
        }

        /* Container */
        .about-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* About Hero Section */
        .about-hero-section {
            padding: 100px 0 60px;
            background: linear-gradient(135deg, var(--primary-color), #1a2530);
            color: white;
            text-align: center;
        }

        .about-hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .about-hero-title {
            font-size: 2.8rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .about-hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 30px;
            color: var(--light-color);
            font-weight: 300;
        }

        .about-hero-divider {
            width: 80px;
            height: 4px;
            background: var(--accent-color);
            margin: 0 auto 30px;
            border-radius: 2px;
        }

        /* Mission Section */
        .about-mission-section {
            padding: 80px 0;
            background-color: white;
        }

        .about-section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .about-section-title h2 {
            font-size: 2.2rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            font-weight: 700;
        }

        .about-section-title p {
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.1rem;
        }

        .about-mission-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .about-mission-card {
            background: var(--light-color);
            border-radius: var(--border-radius);
            padding: 30px;
            text-align: center;
            transition: var(--transition);
            box-shadow: var(--shadow);
        }

        .about-mission-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }

        .about-mission-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 30px;
        }

        .about-mission-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        .about-mission-card p {
            color: var(--text-light);
        }

        /* Story Section */
        .about-story-section {
            padding: 80px 0;
            background-color: #f5f7fa;
        }

        .about-story-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
            align-items: center;
        }

        .about-story-text h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: var(--primary-color);
            font-weight: 700;
        }

        .about-story-text p {
            margin-bottom: 20px;
            color: var(--text-color);
        }

        .about-story-highlight {
            background: var(--secondary-color);
            color: white;
            padding: 25px;
            border-radius: var(--border-radius);
            margin-top: 30px;
            position: relative;
        }

        .about-story-highlight:before {
            content: "";
            position: absolute;
            top: -20px;
            left: 20px;
            font-size: 80px;
            color: rgba(255, 255, 255, 0.2);
            font-family: Georgia, serif;
            line-height: 1;
        }

        .about-story-image {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .about-story-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }

        .about-story-image:hover img {
            transform: scale(1.05);
        }
        
        .contact-section {
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f9f9f9;
            min-height: 100vh;
        }

        .contact-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .contact-hero-section {
            padding: 80px 0 40px;
            background: linear-gradient(135deg, #2c3e50, #1a2530);
            color: white;
            text-align: center;
        }

        .contact-hero-content {
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-hero-title {
            font-size: 2.5rem;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .contact-hero-subtitle {
            font-size: 1.1rem;
            margin-bottom: 25px;
            color: #ecf0f1;
            font-weight: 300;
            line-height: 1.6;
        }

        .contact-hero-divider {
            width: 60px;
            height: 4px;
            background: #e74c3c;
            margin: 0 auto;
            border-radius: 2px;
        }

        .contact-content-section {
            padding: 60px 0;
            background-color: white;
        }

        .contact-content-wrapper {
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-form-container {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .contact-form-title {
            font-size: 1.8rem;
            margin-bottom: 30px;
            color: #2c3e50;
            font-weight: 700;
            text-align: center;
        }

        .contact-form-group {
            margin-bottom: 25px;
        }

        .contact-form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #2c3e50;
            font-size: 0.95rem;
        }

        .contact-form-input,
        .contact-form-textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background-color: #f8f9fa;
        }

        .contact-form-input:focus,
        .contact-form-textarea:focus {
            border-color: #3498db;
            outline: none;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
            background-color: white;
        }

        .contact-form-textarea {
            resize: vertical;
            min-height: 120px;
        }

        .contact-form-error {
            color: #e74c3c;
            font-size: 0.85rem;
            margin-top: 5px;
            display: block;
            font-weight: 500;
        }

        .contact-submit-button {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            background: linear-gradient(135deg, #3498db, #2980b9);
            color: white;
            padding: 15px;
            border: none;
            border-radius: 6px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
        }

        .contact-submit-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
        }

        .contact-submit-button:disabled {
            background: #bdc3c7;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        .contact-submit-spinner {
            width: 20px;
            height: 20px;
            border: 2px solid transparent;
            border-top: 2px solid white;
            border-radius: 50%;
            animation: contact-spin 1s linear infinite;
        }

        @keyframes contact-spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .contact-success-message {
            background: #d4edda;
            color: #155724;
            padding: 25px;
            border-radius: 8px;
            text-align: center;
            border-left: 4px solid #28a745;
            margin-top: 20px;
        }

        .contact-success-icon {
            width: 50px;
            height: 50px;
            background: #28a745;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: bold;
            margin: 0 auto 15px;
        }

        .contact-error-message {
            background: #f8d7da;
            color: #721c24;
            padding: 25px;
            border-radius: 8px;
            text-align: center;
            border-left: 4px solid #dc3545;
            margin-top: 20px;
        }

        .contact-error-icon {
            font-size: 40px;
            margin-bottom: 15px;
        }

        @media (max-width: 768px) {
            .contact-hero-title {
                font-size: 2rem;
            }
            
            .contact-hero-subtitle {
                font-size: 1rem;
            }
            
            .contact-form-container {
                padding: 30px;
            }
            
            .contact-form-title {
                font-size: 1.6rem;
            }
        }

        @media (max-width: 480px) {
            .contact-container {
                padding: 0 15px;
            }
            
            .contact-hero-section {
                padding: 60px 0 30px;
            }
            
            .contact-hero-title {
                font-size: 1.8rem;
            }
            
            .contact-content-section {
                padding: 40px 0;
            }
            
            .contact-form-container {
                padding: 25px;
            }
            
            .contact-form-title {
                font-size: 1.5rem;
            }
            
            .contact-form-input,
            .contact-form-textarea {
                padding: 10px 12px;
            }
        }

        @media (max-width: 350px) {
            .contact-hero-title {
                font-size: 1.6rem;
            }
            
            .contact-hero-subtitle {
                font-size: 0.95rem;
            }
            
            .contact-form-container {
                padding: 20px;
            }
            
            .contact-form-title {
                font-size: 1.4rem;
            }
        }

        /* Team Section */
        .about-team-section {
            padding: 80px 0;
            background-color: white;
        }

        .about-team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .about-team-member {
            text-align: center;
            background: white;
            border-radius: var(--border-radius);
            padding: 30px 20px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .about-team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .about-team-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 40px;
            font-weight: bold;
        }

        .about-team-member h3 {
            font-size: 1.3rem;
            margin-bottom: 5px;
            color: var(--primary-color);
        }

        .about-team-role {
            color: var(--secondary-color);
            margin-bottom: 15px;
            font-weight: 500;
        }

        .about-team-bio {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        /* Values Section */
        .about-values-section {
            padding: 80px 0;
            background-color: var(--primary-color);
            color: white;
        }

        .about-values-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .about-values-title h2 {
            font-size: 2.2rem;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .about-values-title p {
            max-width: 600px;
            margin: 0 auto;
            color: rgba(255, 255, 255, 0.8);
        }

        .about-values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .about-value-item {
            text-align: center;
            padding: 30px 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: var(--border-radius);
            transition: var(--transition);
        }

        .about-value-item:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
        }

        .about-value-icon {
            font-size: 40px;
            margin-bottom: 20px;
            color: var(--accent-color);
        }

        .about-value-item h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
        }

        .about-value-item p {
            color: rgba(255, 255, 255, 0.8);
        }

        /* CTA Section */
        .about-cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            color: white;
            text-align: center;
        }

        .about-cta-content {
            max-width: 700px;
            margin: 0 auto;
        }

        .about-cta-title {
            font-size: 2.2rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .about-cta-text {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.9);
        }

        .about-cta-button {
            display: inline-block;
            background-color: var(--accent-color);
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
        }

        .about-cta-button:hover {
            background-color: #c0392b;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .about-hero-title {
                font-size: 2.2rem;
            }
            
            .about-hero-subtitle {
                font-size: 1.1rem;
            }
            
            .about-section-title h2 {
                font-size: 1.8rem;
            }
            
            .about-story-text h2 {
                font-size: 1.8rem;
            }
            
            .about-cta-title {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 480px) {
            .about-container {
                padding: 0 15px;
            }
            
            .about-hero-section {
                padding: 80px 0 40px;
            }
            
            .about-hero-title {
                font-size: 1.8rem;
            }
            
            .about-mission-section, 
            .about-story-section, 
            .about-team-section, 
            .about-values-section, 
            .about-cta-section {
                padding: 60px 0;
            }
            
            .about-mission-card,
            .about-team-member,
            .about-value-item {
                padding: 20px 15px;
            }
        }

        @media (max-width: 350px) {
            .about-hero-title {
                font-size: 1.6rem;
            }
            
            .about-hero-subtitle {
                font-size: 1rem;
            }
            
            .about-section-title h2 {
                font-size: 1.6rem;
            }
            
            .about-mission-grid,
            .about-team-grid,
            .about-values-grid {
                grid-template-columns: 1fr;
            }
            
            .about-story-content {
                grid-template-columns: 1fr;
            }
        }

        /* CSS Variables */
        :root {
            --primary-color: #2c3e50;
            --secondary-color: #3498db;
            --accent-color: #e74c3c;
            --light-color: #ecf0f1;
            --dark-color: #2c3e50;
            --text-color: #333333;
            --text-light: #7f8c8d;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
            --border-radius: 8px;
        }

        /* Base Styles */
        section {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            color: var(--text-color);
            background-color: #f9f9f9;
            line-height: 1.6;
        }

        /* Container */
        .privacy-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Privacy Hero Section */
        .privacy-hero-section {
            padding: 100px 0 60px;
            background: linear-gradient(135deg, var(--primary-color), #1a2530);
            color: white;
            text-align: center;
        }

        .privacy-hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .privacy-hero-title {
            font-size: 2.8rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .privacy-hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 30px;
            color: var(--light-color);
            font-weight: 300;
        }

        .privacy-hero-divider {
            width: 80px;
            height: 4px;
            background: var(--accent-color);
            margin: 0 auto 30px;
            border-radius: 2px;
        }

        .privacy-last-updated {
            background: rgba(255, 255, 255, 0.1);
            display: inline-block;
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 0.9rem;
            margin-top: 20px;
        }

        /* Privacy Content Section */
        .privacy-content-section {
            padding: 80px 0;
            background-color: white;
        }

        .privacy-content-wrapper {
            max-width: 900px;
            margin: 0 auto;
        }

        .privacy-section {
            margin-bottom: 50px;
        }

        .privacy-section-title {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--primary-color);
            font-weight: 700;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--light-color);
        }

        .privacy-section-content {
            color: var(--text-color);
        }

        .privacy-section-content p {
            margin-bottom: 15px;
        }

        .privacy-section-content ul, .privacy-section-content ol {
            margin-bottom: 15px;
            padding-left: 20px;
        }

        .privacy-section-content li {
            margin-bottom: 8px;
        }

        .privacy-highlight-box {
            background: var(--light-color);
            border-left: 4px solid var(--secondary-color);
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }

        .privacy-warning-box {
            background: #fff3cd;
            border-left: 4px solid #ffc107;
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }

        .privacy-info-box {
            background: #d1ecf1;
            border-left: 4px solid var(--secondary-color);
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }

        .privacy-data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            box-shadow: var(--shadow);
            border-radius: var(--border-radius);
            overflow: hidden;
        }

        .privacy-data-table th {
            background: var(--primary-color);
            color: white;
            text-align: left;
            padding: 15px;
            font-weight: 600;
        }

        .privacy-data-table td {
            padding: 12px 15px;
            border-bottom: 1px solid #e0e0e0;
        }

        .privacy-data-table tr:nth-child(even) {
            background: #f8f9fa;
        }

        .privacy-data-table tr:hover {
            background: #e9ecef;
        }

        .privacy-contact-info {
            background: var(--light-color);
            padding: 25px;
            border-radius: var(--border-radius);
            margin-top: 30px;
        }

        .privacy-contact-info h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-size: 1.4rem;
        }

        .privacy-contact-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
        }

        .privacy-contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .privacy-contact-icon {
            width: 40px;
            height: 40px;
            background: var(--secondary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
        }

        /* Quick Navigation */
        .privacy-quick-nav {
            background: var(--light-color);
            padding: 25px;
            border-radius: var(--border-radius);
            margin-bottom: 40px;
            position: sticky;
            top: 20px;
            z-index: 100;
        }

        .privacy-quick-nav h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-size: 1.4rem;
        }

        .privacy-nav-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 10px;
        }

        .privacy-nav-link {
            color: var(--secondary-color);
            text-decoration: none;
            padding: 8px 0;
            transition: var(--transition);
            border-bottom: 1px solid transparent;
        }

        .privacy-nav-link:hover {
            color: var(--primary-color);
            border-bottom: 1px solid var(--secondary-color);
        }

        /* FAQ Section */
        .privacy-faq-section {
            margin-top: 60px;
            padding-top: 40px;
            border-top: 1px solid #e0e0e0;
        }

        .privacy-faq-title {
            font-size: 1.8rem;
            margin-bottom: 25px;
            color: var(--primary-color);
            font-weight: 700;
        }

        .privacy-faq-item {
            margin-bottom: 20px;
            border: 1px solid #e0e0e0;
            border-radius: var(--border-radius);
            overflow: hidden;
        }

        .privacy-faq-question {
            background: var(--light-color);
            padding: 15px 20px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }

        .privacy-faq-question:hover {
            background: #dfe6e9;
        }

        .privacy-faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: var(--transition);
        }

        .privacy-faq-item.active .privacy-faq-answer {
            padding: 20px;
            max-height: 500px;
        }

        .privacy-faq-toggle {
            font-size: 1.2rem;
            transition: var(--transition);
        }

        .privacy-faq-item.active .privacy-faq-toggle {
            transform: rotate(45deg);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .privacy-hero-title {
                font-size: 2.2rem;
            }
            
            .privacy-hero-subtitle {
                font-size: 1.1rem;
            }
            
            .privacy-section-title {
                font-size: 1.6rem;
            }
            
            .privacy-data-table {
                display: block;
                overflow-x: auto;
            }
        }

        @media (max-width: 480px) {
            .privacy-container {
                padding: 0 15px;
            }
            
            .privacy-hero-section {
                padding: 80px 0 40px;
            }
            
            .privacy-hero-title {
                font-size: 1.8rem;
            }
            
            .privacy-content-section {
                padding: 60px 0;
            }
            
            .privacy-quick-nav, .privacy-contact-info {
                padding: 20px;
            }
            
            .privacy-nav-links, .privacy-contact-details {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 350px) {
            .privacy-hero-title {
                font-size: 1.6rem;
            }
            
            .privacy-hero-subtitle {
                font-size: 1rem;
            }
            
            .privacy-section-title {
                font-size: 1.4rem;
            }
            
            .privacy-highlight-box, .privacy-warning-box, .privacy-info-box {
                padding: 15px;
            }
        }

         /* CSS Variables */
        :root {
            --primary-color: #2c3e50;
            --secondary-color: #3498db;
            --accent-color: #e74c3c;
            --light-color: #ecf0f1;
            --dark-color: #2c3e50;
            --text-color: #333333;
            --text-light: #7f8c8d;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
            --border-radius: 8px;
        }


        /* Container */
        .terms-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Terms Hero Section */
        .terms-hero-section {
            padding: 100px 0 60px;
            background: linear-gradient(135deg, var(--primary-color), #1a2530);
            color: white;
            text-align: center;
        }

        .terms-hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .terms-hero-title {
            font-size: 2.8rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .terms-hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 30px;
            color: var(--light-color);
            font-weight: 300;
        }

        .terms-hero-divider {
            width: 80px;
            height: 4px;
            background: var(--accent-color);
            margin: 0 auto 30px;
            border-radius: 2px;
        }

        .terms-last-updated {
            background: rgba(255, 255, 255, 0.1);
            display: inline-block;
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 0.9rem;
            margin-top: 20px;
        }

        /* Terms Content Section */
        .terms-content-section {
            padding: 80px 0;
            background-color: white;
        }

        .terms-content-wrapper {
            max-width: 900px;
            margin: 0 auto;
        }

        .terms-section {
            margin-bottom: 50px;
        }

        .terms-section-title {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--primary-color);
            font-weight: 700;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--light-color);
        }

        .terms-section-content {
            color: var(--text-color);
        }

        .terms-section-content p {
            margin-bottom: 15px;
        }

        .terms-section-content ul, .terms-section-content ol {
            margin-bottom: 15px;
            padding-left: 20px;
        }

        .terms-section-content li {
            margin-bottom: 8px;
        }

        .terms-important-box {
            background: #fff3cd;
            border-left: 4px solid #ffc107;
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }

        .terms-warning-box {
            background: #f8d7da;
            border-left: 4px solid #dc3545;
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }

        .terms-info-box {
            background: #d1ecf1;
            border-left: 4px solid var(--secondary-color);
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }

        .terms-definition-list {
            margin: 20px 0;
        }

        .terms-definition-item {
            margin-bottom: 15px;
            padding-left: 15px;
            border-left: 3px solid var(--secondary-color);
        }

        .terms-definition-term {
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 5px;
        }

        .terms-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            box-shadow: var(--shadow);
            border-radius: var(--border-radius);
            overflow: hidden;
        }

        .terms-table th {
            background: var(--primary-color);
            color: white;
            text-align: left;
            padding: 15px;
            font-weight: 600;
        }

        .terms-table td {
            padding: 12px 15px;
            border-bottom: 1px solid #e0e0e0;
        }

        .terms-table tr:nth-child(even) {
            background: #f8f9fa;
        }

        .terms-table tr:hover {
            background: #e9ecef;
        }

        /* Quick Navigation */
        .terms-quick-nav {
            background: var(--light-color);
            padding: 25px;
            border-radius: var(--border-radius);
            margin-bottom: 40px;
            position: sticky;
            top: 20px;
            z-index: 100;
        }

        .terms-quick-nav h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-size: 1.4rem;
        }

        .terms-nav-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 10px;
        }

        .terms-nav-link {
            color: var(--secondary-color);
            text-decoration: none;
            padding: 8px 0;
            transition: var(--transition);
            border-bottom: 1px solid transparent;
        }

        .terms-nav-link:hover {
            color: var(--primary-color);
            border-bottom: 1px solid var(--secondary-color);
        }

        /* Acceptance Section */
        .terms-acceptance-section {
            background: var(--light-color);
            padding: 30px;
            border-radius: var(--border-radius);
            margin-top: 40px;
            text-align: center;
        }

        .terms-acceptance-title {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-size: 1.4rem;
        }

        .terms-acceptance-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .terms-accept-button {
            background: var(--secondary-color);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }

        .terms-accept-button:hover {
            background: #2980b9;
            transform: translateY(-2px);
        }

        .terms-decline-button {
            background: transparent;
            color: var(--text-light);
            border: 1px solid var(--text-light);
            padding: 10px 25px;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }

        .terms-decline-button:hover {
            background: var(--text-light);
            color: white;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .terms-hero-title {
                font-size: 2.2rem;
            }
            
            .terms-hero-subtitle {
                font-size: 1.1rem;
            }
            
            .terms-section-title {
                font-size: 1.6rem;
            }
            
            .terms-table {
                display: block;
                overflow-x: auto;
            }
            
            .terms-acceptance-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .terms-accept-button, .terms-decline-button {
                width: 200px;
            }
        }

        @media (max-width: 480px) {
            .terms-container {
                padding: 0 15px;
            }
            
            .terms-hero-section {
                padding: 80px 0 40px;
            }
            
            .terms-hero-title {
                font-size: 1.8rem;
            }
            
            .terms-content-section {
                padding: 60px 0;
            }
            
            .terms-quick-nav {
                padding: 20px;
            }
            
            .terms-nav-links {
                grid-template-columns: 1fr;
            }
            
            .terms-important-box, .terms-warning-box, .terms-info-box {
                padding: 15px;
            }
        }

        @media (max-width: 350px) {
            .terms-hero-title {
                font-size: 1.6rem;
            }
            
            .terms-hero-subtitle {
                font-size: 1rem;
            }
            
            .terms-section-title {
                font-size: 1.4rem;
            }
            
            .terms-acceptance-section {
                padding: 20px;
            }
        }

        .img2pdf-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .img2pdf-header {
            background-color: white;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .img2pdf-navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .img2pdf-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }
        
        .img2pdf-logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #3498db, #2c3e50);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 18px;
        }
        
        .img2pdf-logo-text {
            font-size: 24px;
            font-weight: 700;
            color: #2c3e50;
        }
        
        .img2pdf-logo-text span {
            color: #3498db;
        }
        
        .img2pdf-nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        
        .img2pdf-nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .img2pdf-nav-links a:hover {
            color: #3498db;
        }
        
        .img2pdf-nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #3498db;
            transition: all 0.3s ease;
        }
        
        .img2pdf-nav-links a:hover::after {
            width: 100%;
        }
        
        .img2pdf-mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #2c3e50;
        }
        
        .img2pdf-hero-section {
            padding: 80px 0 40px;
            background: linear-gradient(135deg, #2c3e50, #1a2530);
            color: white;
            text-align: center;
        }
        
        .img2pdf-hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .img2pdf-hero-title {
            font-size: 2.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .img2pdf-hero-subtitle {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            color: #ecf0f1;
        }
        
        .img2pdf-free-badge {
            display: inline-block;
            background: #27ae60;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-left: 10px;
            vertical-align: middle;
        }
        
        .img2pdf-converter-section {
            padding: 60px 0;
            background-color: white;
        }
        
        .img2pdf-converter-wrapper {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .img2pdf-converter-card {
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            margin-bottom: 40px;
        }
        
        .img2pdf-converter-header {
            background: linear-gradient(135deg, #3498db, #2c3e50);
            color: white;
            padding: 20px;
            text-align: center;
        }
        
        .img2pdf-converter-title {
            font-size: 1.8rem;
            margin-bottom: 10px;
        }
        
        .img2pdf-converter-subtitle {
            font-size: 1rem;
            opacity: 0.9;
        }
        
        .img2pdf-converter-body {
            padding: 30px;
        }
        
        .img2pdf-upload-area {
            border: 2px dashed #bdc3c7;
            border-radius: 8px;
            padding: 40px 20px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            margin-bottom: 30px;
        }
        
        .img2pdf-upload-area:hover {
            border-color: #3498db;
            background-color: #f8f9fa;
        }
        
        .img2pdf-upload-area.drag-over {
            border-color: #27ae60;
            background-color: #e8f5e8;
        }
        
        .img2pdf-upload-icon {
            font-size: 60px;
            margin-bottom: 20px;
            color: #3498db;
        }
        
        .img2pdf-upload-text h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: #2c3e50;
        }
        
        .img2pdf-upload-text p {
            color: #7f8c8d;
            margin-bottom: 20px;
        }
        
        .img2pdf-file-input {
            display: none;
        }
        
        .img2pdf-upload-button {
            display: inline-block;
            background-color: #3498db;
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }
        
        .img2pdf-upload-button:hover {
            background-color: #2980b9;
            transform: translateY(-2px);
        }
        
        .img2pdf-file-list {
            margin-top: 30px;
        }
        
        .img2pdf-file-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px;
            background: #ecf0f1;
            border-radius: 8px;
            margin-bottom: 10px;
        }
        
        .img2pdf-file-info {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .img2pdf-file-icon {
            width: 40px;
            height: 40px;
            background: #3498db;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
        }
        
        .img2pdf-file-details h4 {
            font-size: 1rem;
            margin-bottom: 5px;
        }
        
        .img2pdf-file-details p {
            font-size: 0.8rem;
            color: #7f8c8d;
        }
        
        .img2pdf-file-actions {
            display: flex;
            gap: 10px;
        }
        
        .img2pdf-action-btn {
            background: none;
            border: none;
            cursor: pointer;
            font-size: 1.2rem;
            color: #7f8c8d;
            transition: all 0.3s ease;
        }
        
        .img2pdf-action-btn:hover {
            color: #e74c3c;
        }
        
        .img2pdf-options-section {
            margin: 30px 0;
        }
        
        .img2pdf-options-title {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #2c3e50;
            text-align: center;
        }
        
        .img2pdf-options-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }
        
        .img2pdf-option-group {
            margin-bottom: 20px;
        }
        
        .img2pdf-option-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #2c3e50;
        }
        
        .img2pdf-option-select, .img2pdf-option-input {
            width: 100%;
            padding: 10px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .img2pdf-option-select:focus, .img2pdf-option-input:focus {
            border-color: #3498db;
            outline: none;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
        }
        
        .img2pdf-convert-section {
            text-align: center;
            margin: 40px 0;
        }
        
        .img2pdf-convert-button {
            display: inline-block;
            background-color: #e74c3c;
            color: white;
            padding: 15px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
        }
        
        .img2pdf-convert-button:hover {
            background-color: #c0392b;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
        }
        
        .img2pdf-convert-button:disabled {
            background-color: #bdc3c7;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }
        
        .img2pdf-result-section {
            display: none;
            margin-top: 40px;
            padding: 30px;
            background: #e8f5e8;
            border-radius: 8px;
            text-align: center;
            border-left: 4px solid #27ae60;
        }
        
        .img2pdf-result-icon {
            font-size: 50px;
            margin-bottom: 20px;
            color: #27ae60;
        }
        
        .img2pdf-result-title {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: #2c3e50;
        }
        
        .img2pdf-result-download {
            display: inline-block;
            background-color: #27ae60;
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 20px;
            transition: all 0.3s ease;
        }
        
        .img2pdf-result-download:hover {
            background-color: #219653;
            transform: translateY(-2px);
        }
        
        .img2pdf-features-section {
            padding: 60px 0;
            background-color: #ecf0f1;
        }
        
        .img2pdf-section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .img2pdf-section-title h2 {
            font-size: 2rem;
            color: #2c3e50;
            margin-bottom: 15px;
        }
        
        .img2pdf-section-title p {
            color: #7f8c8d;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .img2pdf-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .img2pdf-feature-card {
            background: white;
            border-radius: 8px;
            padding: 30px 20px;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .img2pdf-feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }
        
        .img2pdf-feature-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, #3498db, #2c3e50);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 30px;
        }
        
        .img2pdf-feature-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #2c3e50;
        }
        
        .img2pdf-feature-card p {
            color: #7f8c8d;
        }
        
        .img2pdf-footer {
            background-color: #2c3e50;
            color: white;
            padding: 60px 0 20px;
        }
        
        .img2pdf-footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .img2pdf-footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #ecf0f1;
        }
        
        .img2pdf-footer-links {
            list-style: none;
        }
        
        .img2pdf-footer-links li {
            margin-bottom: 10px;
        }
        
        .img2pdf-footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .img2pdf-footer-links a:hover {
            color: white;
        }
        
        .img2pdf-copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #bdc3c7;
            font-size: 0.9rem;
        }
        
        @media (max-width: 768px) {
            .img2pdf-nav-links {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
                text-align: center;
            }
            
            .img2pdf-nav-links.active {
                display: flex;
            }
            
            .img2pdf-mobile-menu-btn {
                display: block;
            }
            
            .img2pdf-hero-title {
                font-size: 2rem;
            }
            
            .img2pdf-hero-subtitle {
                font-size: 1rem;
            }
            
            .img2pdf-converter-body {
                padding: 20px;
            }
            
            .img2pdf-options-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 480px) {
            .img2pdf-container {
                padding: 0 15px;
            }
            
            .img2pdf-hero-section {
                padding: 60px 0 30px;
            }
            
            .img2pdf-converter-section {
                padding: 40px 0;
            }
            
            .img2pdf-hero-title {
                font-size: 1.8rem;
            }
            
            .img2pdf-file-item {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .img2pdf-file-info {
                flex-direction: column;
            }
        }
        
        @media (max-width: 350px) {
            .img2pdf-logo-text {
                font-size: 20px;
            }
            
            .img2pdf-hero-title {
                font-size: 1.6rem;
            }
            
            .img2pdf-features-grid {
                grid-template-columns: 1fr;
            }
            
            .img2pdf-converter-body {
                padding: 15px;
            }
        }