        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            z-index: 0;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #f8f9fa;
            color: #333;
            overflow-x: hidden;
        }

        a
        {
            color: #dc2626;
        }

         a:hover {
            color: #dc2626;
        }
        
        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 16px 24px;
            border-bottom: 1px solid #e0e0e0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .nav-logo {
            font-size: 24px;
            font-weight: 700;
            color: #dc2626;
            text-decoration: none;
            letter-spacing: 2px;
        }
        
        .nav-links {
            display: flex;
            gap: 32px;
            align-items: center;
        }
        
        .nav-link {
            color: #4b5563;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s ease;
            font-weight: 500;
        }
        
        .nav-link:hover {
            color: #dc2626;
        }
        
        .nav-cta {
            background: #dc2626;
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(220, 38, 38, 0.2);
        }
        
        .nav-cta:hover {
            background: #b91c1c;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
        }
        
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #e0e0e0;
            font-size: 24px;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            margin-top: 60px;
            padding: 100px 24px;
            text-align: center;
            background: linear-gradient(135deg, #fee2e2 0%, #fef3c7 100%);
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23dc2626' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }
        
        .hero h1 {
            font-size: 56px;
            font-weight: 800;
            margin-bottom: 16px;
            color: #dc2626;
            letter-spacing: 3px;
            position: relative;
            z-index: 1;
        }
        
        .hero .tagline {
            font-size: 24px;
            color: #6366f1;
            font-weight: 500;
            letter-spacing: 4px;
            margin-bottom: 24px;
            text-transform: uppercase;
        }
        
        .hero p {
            font-size: 18px;
            color: #4b5563;
            max-width: 600px;
            margin: 0 auto 40px;
            line-height: 1.6;
            position: relative;
            z-index: 1;
        }
        
        .hero-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .hero-btn {
            padding: 14px 32px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .hero-btn-primary {
            background: #dc2626;
            color: white;
            box-shadow: 0 4px 15px rgba(220, 38, 38, 0.2);
        }
        
        .hero-btn-primary:hover {
            background: #b91c1c;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
        }
        
        .hero-btn-secondary {
            background: white;
            color: #dc2626;
            border: 2px solid #dc2626;
        }
        
        .hero-btn-secondary:hover {
            background: #dc2626;
            color: white;
        }
        
        /* About Section */
        .about {
            padding: 80px 24px;
            max-width: 1200px;
            margin: 0 auto;
            background: white;
        }
        
        .about h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 40px;
            text-align: center;
            color: #dc2626;
            letter-spacing: 1px;
        }
        
        .about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .about-card {
            background: #f9fafb;
            padding: 32px;
            border-radius: 12px;
            border: 1px solid #e5e7eb;
            transition: all 0.3s ease;
        }
        
        .about-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .about-card h3 {
            font-size: 24px;
            margin-bottom: 16px;
            color: #1f2937;
        }
        
        .about-card p {
            color: #6b7280;
            line-height: 1.6;
        }
        
        .danger-list {
            background: #fef2f2;
            padding: 32px;
            border-radius: 12px;
            border: 1px solid #fecaca;
            margin-bottom: 40px;
        }
        
        .danger-list h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: #dc2626;
        }
        
        .danger-list ul {
            list-style: none;
            padding: 0;
        }
        
        .danger-list li {
            padding: 12px 0;
            border-bottom: 1px solid #fecaca;
            color: #7f1d1d;
            display: flex;
            align-items: flex-start;
        }
        
        .danger-list li:last-child {
            border-bottom: none;
        }
        
        .danger-list li:before {
            content: "•";
            margin-right: 12px;
            font-size: 20px;
            flex-shrink: 0;
        }
        
        .danger-list a {
            color: #dc2626;
            text-decoration: none;
            font-weight: 600;
        }
        
        .danger-list a:hover {
            text-decoration: underline;
        }
        
        /* Resources Section */
        .resources {
            padding: 80px 24px;
            background: white;
        }
        
        .resources h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 40px;
            text-align: center;
            color: #dc2626;
            letter-spacing: 1px;
        }
        
        .resources-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
        }
        
        .resource-card {
            background: #f9fafb;
            padding: 24px;
            border-radius: 12px;
            border: 1px solid #e5e7eb;
            transition: all 0.3s ease;
            text-decoration: none;
            display: block;
        }
        
        .resource-card:hover {
            border-color: #dc2626;
            transform: translateY(-4px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .resource-card h3 {
            font-size: 20px;
            margin-bottom: 12px;
            color: #1f2937;
        }
        
        .resource-card p {
            color: #6b7280;
            font-size: 14px;
            line-height: 1.6;
        }
        
        .resource-tag {
            display: inline-block;
            background: #fee2e2;
            color: #dc2626;
            padding: 4px 12px;
            border-radius: 16px;
            font-size: 12px;
            margin-top: 12px;
            font-weight: 500;
        }
        
        /* Tracker Section */
        .tracker-section {
            padding: 40px 0 0;
            background: #f3f4f6;
        }
        
        .tracker-header {
            text-align: center;
            padding: 0 24px 20px;
        }
        
        .tracker-header h2 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 8px;
            color: #dc2626;
            letter-spacing: 1px;
        }
        
        .tracker-header p {
            font-size: 16px;
            color: #6b7280;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .tracker-container {
            display: flex;
            height: calc(100vh - 200px);
            position: relative;
        }
        
        .sidebar {
            width: 380px;
            background: white;
            border-right: 1px solid #e5e7eb;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease;
            box-shadow: 2px 0 10px rgba(0,0,0,0.05);
        }
        
        .sidebar-header {
            padding: 20px;
            background: #dc2626;
            color: white;
        }
        
        .sidebar-header h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 4px;
            letter-spacing: 1px;
        }
        
        .sidebar-header p {
            font-size: 14px;
            opacity: 0.9;
        }
        
        .view-toggle {
            position: absolute;
            bottom: 16px;
            right: 16px;
            z-index: 10;
            display: flex;
            gap: 8px;
            background: white;
            padding: 4px;
            border-radius: 25px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .view-btn {
            padding: 8px 16px;
            background: transparent;
            color: #6b7280;
            border: none;
            border-radius: 20px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        
        .view-btn.active {
            background: #dc2626;
            color: white;
        }
        
        .search-box {
            padding: 20px;
            background: #f9fafb;
            border-bottom: 1px solid #e5e7eb;
        }
        
        .filter-section {
            padding: 16px 20px;
            background: white;
            border-bottom: 1px solid #e5e7eb;
        }
        
        .filter-section h4 {
            color: #374151;
            font-size: 14px;
            margin-bottom: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .filter-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 8px;
        }
        
        .filter-item {
            text-align: center;
        }
        
        .filter-item label {
            display: block;
            font-size: 11px;
            color: #999;
            margin-bottom: 4px;
        }
        
        .filter-item select {
    width: 100%;
    padding: 6px;
    background: #1a1a1a;
    border: 1px solid #6365F1;
    border-radius: 4px;
    color: #e0e0e0;
    font-size: 12px;
        }
        
        .import-export-section {
            padding: 16px 20px;
            background: #ffffff;
            border-bottom: 1px solid #333;
            display: flex;
            gap: 8px;
        }
        
        .import-export-section button {
            flex: 1;
            padding: 10px;
            background: #444;
            color: #e0e0e0;
            border: none;
            border-radius: 6px;
            font-size: 12px;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .import-export-section button:hover {
            background: #555;
        }
        
        .file-input {
            display: none;
        }
        
        .search-input {
            width: 100%;
            padding: 12px 16px;
            background: #2a2a2a;
            border: 1px solid #444;
            border-radius: 8px;
            color: #e0e0e0;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        
        .search-input:focus {
            outline: none;
            border-color: #ff6b6b;
            background: #333;
        }
        
        .restaurant-list {
            flex: 1;
            overflow-y: auto;
            padding: 20px;
        }
        
        .restaurant-card {
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            padding: 16px;
            margin-bottom: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        }
        
        .restaurant-card:hover {
            border-color: #dc2626;
            box-shadow: 0 4px 12px rgba(220, 38, 38, 0.15);
            transform: translateY(-2px);
        }
        
        .restaurant-card.selected {
            border-color: #dc2626;
            background: #fef2f2;
        }
        
        .restaurant-name {
            font-weight: 600;
            font-size: 16px;
            margin-bottom: 4px;
        }
        
        .restaurant-address {
            font-size: 13px;
            color: #999;
            margin-bottom: 8px;
        }
        
        .soy-badges {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
        }
        
        .soy-badge {
            display: inline-block;
            padding: 4px 10px;
            border-radius: 16px;
            font-size: 11px;
            font-weight: 500;
        }
        
        .soy-yes {
            background: #dc2626;
            color: white;
        }
        
        .soy-maybe {
            background: #f59e0b;
            color: white;
        }
        
        .soy-no {
            background: #10b981;
            color: white;
        }
        
        .soy-unknown {
            background: #6b7280;
            color: white;
        }
        
        .map-container {
            flex: 1;
            position: relative;
        }
        
        #map {
            width: 100%;
            height: 100%;
        }
        
        .popup-content {
            max-width: 250px;
        }
        
        .popup-content h3 {
            margin-bottom: 6px;
            color: #333;
            font-size: 16px;
        }
        
        .popup-content h3 a {
            color: #333;
            text-decoration: none;
        }
        
        .popup-content h3 a:hover {
            color: #ff6b6b;
            text-decoration: underline;
        }
        
        .popup-content p {
            margin-bottom: 8px;
            color: #666;
            font-size: 12px;
        }
        
        .restaurant-image {
            width: 100%;
            height: 120px;
            object-fit: cover;
            border-radius: 6px;
            margin-bottom: 8px;
            background: #f0f0f0;
        }
        
        .image-placeholder {
            width: 100%;
            height: 120px;
            background: #f0f0f0;
            border-radius: 6px;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            font-size: 12px;
        }
        
        .restaurant-card-image {
            width: 60px;
            height: 60px;
            object-fit: cover;
            border-radius: 8px;
            margin-right: 12px;
            background: #333;
            flex-shrink: 0;
        }
        
        .restaurant-card-content {
            display: flex;
            align-items: center;
        }
        
        .restaurant-card-info {
            flex: 1;
        }
        
        .assessment-info {
            background: #f5f5f5;
            padding: 8px;
            border-radius: 6px;
            margin-top: 8px;
        }
        
        .form-group {
            margin-bottom: 8px;
        }
        
        .form-group label {
            display: block;
            font-size: 12px;
            font-weight: 500;
            margin-bottom: 3px;
            color: #333;
        }
        
        .form-group select,
        .form-group textarea,
        .form-group input {
            width: 100%;
            padding: 6px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 12px;
            background: white;
            color: #333;
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 50px;
        }
        
        .soy-assessment-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 8px;
            margin-bottom: 12px;
        }
        
        .soy-item {
            text-align: center;
            padding: 8px;
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 6px;
        }
        
        .soy-item label {
            display: block;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 4px;
            color: #555;
        }
        
        .soy-item select {
            width: 100%;
            padding: 4px;
            font-size: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }
        
        .save-btn {
            width: 100%;
            padding: 8px;
            background: #ff6b6b;
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .save-btn:hover {
            background: #ff5252;
        }
        
        .stats-bar {
            padding: 20px;
            background: #f9fafb;
            border-top: 1px solid #e5e7eb;
            display: flex;
            justify-content: space-around;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-value {
            font-size: 28px;
            font-weight: 700;
            color: #dc2626;
        }
        
        .stat-label {
            font-size: 12px;
            color: #6b7280;
            margin-top: 4px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .mobile-toggle {
            display: none;
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 56px;
            height: 56px;
            background: #dc2626;
            border-radius: 50%;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
            z-index: 1000;
        }
        
        .admin-controls {
            padding: 16px 20px;
            background: #f9fafb;
            border-bottom: 1px solid #e5e7eb;
        }
        
        .add-restaurant-btn {
            width: 100%;
            padding: 12px;
            background: #dc2626;
            color: white;
            border: none;
            border-radius: 25px;
            font-size: 14px;
            cursor: pointer;
            transition: background 0.3s ease;
            font-weight: 600;
        }
        
        .add-restaurant-btn:hover {
            background: #b91c1c;
        }
        
        .info-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 6px;
            padding: 3px 0;
            border-bottom: 1px solid #eee;
        }
        
        .info-label {
            font-weight: 500;
            color: #555;
            font-size: 12px;
        }
        
        .info-value {
            color: #333;
            font-weight: 600;
            font-size: 12px;
        }
        
        /* Footer */
        footer {
            background: #1f2937;
            padding: 40px 24px;
            text-align: center;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-links {
            display: flex;
            gap: 32px;
            justify-content: center;
            margin-bottom: 24px;
            flex-wrap: wrap;
        }
        
        .footer-link {
            color: #9ca3af;
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
        }
        
        .footer-link:hover {
            color: #dc2626;
        }
        
        .footer-text {
            color: #6b7280;
            font-size: 14px;
        }
        
        /* Modals */
        .password-modal,
        .add-restaurant-modal,
        .edit-restaurant-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            align-items: center;
            justify-content: center;
        }
        
        .password-modal.active,
        .add-restaurant-modal.active,
        .edit-restaurant-modal.active {
            display: flex;
        }
        
        .password-box {
            background: #2a2a2a;
            padding: 32px;
            border-radius: 12px;
            width: 90%;
            max-width: 400px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
        }
        
        .password-box h3 {
            margin-bottom: 20px;
            color: #ff6b6b;
            font-size: 20px;
        }
        
        .password-box input {
            width: 100%;
            padding: 12px;
            background: #1a1a1a;
            border: 1px solid #444;
            border-radius: 6px;
            color: #e0e0e0;
            font-size: 14px;
            margin-bottom: 16px;
        }
        
        .password-box button {
            width: 100%;
            padding: 12px;
            background: #ff6b6b;
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 14px;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .password-box button:hover {
            background: #ff5252;
        }
        
        .password-error {
            color: #ff4444;
            font-size: 13px;
            margin-bottom: 12px;
            display: none;
        }
        
        .add-restaurant-form,
        .edit-restaurant-form {
            background: #2a2a2a;
            padding: 32px;
            border-radius: 12px;
            width: 90%;
            max-width: 500px;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
        }
        
        .add-restaurant-form h3,
        .edit-restaurant-form h3 {
            margin-bottom: 24px;
            color: #ff6b6b;
            font-size: 24px;
        }
        
        .form-row {
            margin-bottom: 20px;
        }
        
        .form-row label {
            display: block;
            margin-bottom: 8px;
            color: #e0e0e0;
            font-size: 14px;
            font-weight: 500;
        }
        
        .form-row input,
        .form-row textarea {
            width: 100%;
            padding: 12px;
            background: #1a1a1a;
            border: 1px solid #444;
            border-radius: 6px;
            color: #e0e0e0;
            font-size: 14px;
        }
        
        .form-row input:focus,
        .form-row textarea:focus {
            outline: none;
            border-color: #ff6b6b;
            background: #222;
        }
        
        .form-buttons {
            display: flex;
            gap: 12px;
            margin-top: 24px;
        }
        
        .form-buttons button {
            flex: 1;
            padding: 12px;
            border: none;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-primary {
            background: #ff6b6b;
            color: white;
        }
        
        .btn-primary:hover {
            background: #ff5252;
        }
        
        .btn-secondary {
            background: #444;
            color: #e0e0e0;
        }
        
        .btn-secondary:hover {
            background: #555;
        }
        
        .btn-danger {
            background: #ff4444;
            color: white;
            padding: 12px;
            border: none;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 12px;
        }
        
        .btn-danger:hover {
            background: #ff3333;
        }
        
        .location-helper {
            font-size: 12px;
            color: #999;
            margin-top: 4px;
        }
        
        .delete-section {
            margin-top: 32px;
            padding-top: 24px;
            border-top: 1px solid #444;
        }
        
        .delete-warning {
            color: #ff8800;
            font-size: 13px;
            margin-bottom: 12px;
            text-align: center;
        }
        
        .soy-assessment-section {
            margin-top: 24px;
            margin-bottom: 24px;
        }
        
        .soy-assessment-section h4 {
            color: #e0e0e0;
            font-size: 16px;
            margin-bottom: 16px;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .mobile-menu-toggle {
                display: block;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .sidebar {
                position: fixed;
                left: 0;
                top: 0;
                height: 100%;
                z-index: 999;
                transform: translateX(-100%);
            }
            
            .sidebar.active {
                transform: translateX(0);
            }
            
            .mobile-toggle {
                display: flex;
                align-items: center;
                justify-content: center;
            }
            
            .tracker-container {
                height: calc(100vh - 60px);
            }
        }
        
        .leaflet-popup-content-wrapper {
            border-radius: 8px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.15);
            padding: 0;
        }
        
        .leaflet-popup-content {
            margin: 8px 10px;
        }
        
        .hidden {
            display: none !important;
        }
        
        .overall-score {
            text-align: center;
            padding: 8px;
            background: #fff;
            border-radius: 6px;
            margin-top: 6px;
        }
        
        .score-label {
            font-size: 11px;
            color: #666;
            margin-bottom: 2px;
        }
        
        .score-value {
            font-size: 16px;
            font-weight: 700;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        .mobile-nav {
            display: none;
            position: fixed;
            top: 60px;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            padding: 24px;
            flex-direction: column;
            gap: 16px;
            border-bottom: 1px solid #e5e7eb;
            z-index: 999;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        
        .mobile-nav.active {
            display: flex;
        }
        
        .mobile-nav .nav-link {
            padding: 12px 0;
            border-bottom: 1px solid #e5e7eb;
            color: #4b5563;
            font-weight: 500;
        }
        
        .mobile-nav .nav-cta {
            text-align: center;
            margin-top: 8px;
        }
        /* Contact Section */
.contact-section {
    padding: 80px 24px;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
    color: #dc2626;
    letter-spacing: 1px;
}

.contact-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 40px;
    font-size: 16px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid #e5e7eb;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-group label {
    display: block;
    margin-bottom: 8px;
    color: #374151;
    font-weight: 600;
    font-size: 14px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
    color: #374151;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
    gap: 12px;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #dc2626;
}

.form-checkbox label {
    color: #6b7280;
    font-size: 14px;
    cursor: pointer;
    line-height: 1.5;
}

.form-submit-btn {
    width: 100%;
    padding: 14px 24px;
    background: #dc2626;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.2);
}

.form-submit-btn:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 24px;
    }
}


/*const updatedPopupStyles = ` */

/* Horizontal popup layout */
.popup-content-horizontal {
    width: 350px;
    max-width: 90vw;
    padding: 12px 0; /* Add top/bottom padding to match left/right */
}

.popup-title {
    margin: 0 0 5px 0;
    font-size: 18px;
    line-height: 1.2;
    width: 100%; /* Full width title */
}

.popup-title a {
    color: #333;
    text-decoration: none;
}

.popup-title a:hover {
    color: #dc2626;
    text-decoration: underline;
}

.popup-address {
    margin: 0 0 12px 0;
    color: #666;
    font-size: 13px;
    line-height: 1.3;
    width: 100%; /* Full width address */
}

.popup-main-content {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
}

.popup-left-column {
    flex: 0 0 140px;
    min-width: 140px;
}

.popup-right-column {
    flex: 1;
    min-width: 0;
}

.restaurant-image-horizontal {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    background: #f0f0f0;
}

.image-placeholder-horizontal {
    width: 140px;
    height: 140px;
    background: #f0f0f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 11px;
    text-align: center;
    padding: 10px;
}

.assessment-info-compact {
    background: #f5f5f5;
    padding: 8px;
    border-radius: 6px;
}

.info-row-compact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    font-size: 12px;
}

.info-row-compact:not(:last-child) {
    border-bottom: 1px solid #e0e0e0;
}

.info-label {
    font-weight: 500;
    color: #555;
    font-size: 12px;
}

/* Full width notes section */
.notes-section-full {
    width: 100%;
    margin-bottom: 12px;
}

.notes-text {
    color: #555;
    font-size: 12px;
    line-height: 1.5;
    margin-top: 5px;
}

/* Full width and centered overall assessment */
.overall-score-full {
    width: 100%;
    text-align: center;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    margin: 0 auto;
}

.overall-score-full .score-label {
    font-size: 11px;
    color: #666;
    margin-bottom: 4px;
}

.overall-score-full .score-value {
    font-size: 16px;
    font-weight: 700;
}

/* Info value styling */
.info-value {
    font-weight: 600;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 4px;
}

.info-value.soy-yes {
    background: #fee2e2;
    color: #dc2626;
}

.info-value.soy-no {
    background: #dcfce7;
    color: #16a34a;
}

.info-value.soy-maybe {
    background: #fef3c7;
    color: #d97706;
}

.info-value.soy-unknown {
    background: #f3f4f6;
    color: #6b7280;
}

/* Leaflet popup customizations */
.leaflet-popup-content-wrapper {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    padding: 0;
}

.leaflet-popup-content {
    margin: 12px; /* Equal padding all around */
    width: auto !important;
}

/* Close button with solid white background */
.leaflet-popup-close-button {
    top: 8px;
    right: 8px;
    width: 26px;
    height: 26px;
    font-size: 18px;
    line-height: 26px;
    color: #333;
    background: white !important; /* Solid white background */
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leaflet-popup-close-button:hover {
    background: #f5f5f5 !important;
    color: #000;
}

/* Mobile responsiveness */
@media (max-width: 480px) {
    .popup-content-horizontal {
        width: 280px;
    }
    
    .popup-main-content {
        gap: 10px;
    }
    
    .popup-left-column {
        flex: 0 0 100px;
        min-width: 100px;
    }
    
    .restaurant-image-horizontal,
    .image-placeholder-horizontal {
        width: 100px;
        height: 100px;
    }
    
    .popup-title {
        font-size: 16px;
    }
    
    .popup-address {
        font-size: 12px;
    }
    
    .info-row-compact {
        font-size: 11px;
    }
    
    .notes-text {
        font-size: 11px;
    }
    
    .overall-score-full .score-value {
        font-size: 14px;
    }
}

/* Ensure popup stays within viewport */
.leaflet-popup {
    margin-bottom: 20px;
}