

.memorly-logo-small {
    width: 100px;
    height: 40px;
    background-image: url('../pix/logo.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    margin-right: 10px;
}


   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #f5d020 0%, #8ed1a5 50%, #4facfe 100%);
            min-height: 100vh;
        }

        .header {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(10px);
        }

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

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: #333;
            font-size: 1.5rem;
            font-weight: bold;
        }

      

        .back-link {
            background: linear-gradient(135deg, #4facfe 0%, #00a8ff 100%);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 500;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .back-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(79, 172, 254, 0.4);
        }

        .container {
            max-width: 800px;
            margin: 2rem auto;
            padding: 3rem;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
        }

        h1 {
            color: #2c3e50;
            margin-bottom: 1.5rem;
            font-size: 2.5rem;
            background: linear-gradient(135deg, #4facfe 0%, #00a8ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        h2 {
            color: #2c3e50;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            font-size: 1.8rem;
            position: relative;
            padding-left: 15px;
        }

        h2:before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 5px;
            height: 25px;
            background: linear-gradient(135deg, #4facfe 0%, #00a8ff 100%);
            border-radius: 3px;
        }

        h3 {
            color: #34495e;
            margin-top: 1.5rem;
            margin-bottom: 0.75rem;
            font-size: 1.3rem;
            font-weight: 600;
        }

        p, li {
            color: #555;
            margin-bottom: 1rem;
            line-height: 1.8;
        }

        ol, ul {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }

        ol[type="a"], ol[type="A"] {
            list-style-type: lower-alpha;
        }

        li {
            margin-bottom: 0.5rem;
        }

        strong {
            color: #2c3e50;
            font-weight: 600;
        }

        .intro-text {
            font-size: 1.1rem;
            color: #444;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: #f8f9fa;
            border-radius: 10px;
            border-left: 4px solid #4facfe;
        }

        .section-highlight {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 1rem 0;
        }

        .prohibited-content {
            background: #fff5f5;
            border-left: 4px solid #ff6b6b;
            padding: 1rem 1.5rem;
            border-radius: 10px;
            margin: 1rem 0;
        }

        .prohibited-content h3 {
            color: #c92a2a;
        }

        .contact-section {
            background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
            padding: 2rem;
            border-radius: 15px;
            margin-top: 2rem;
        }

        .contact-section a {
            color: #4facfe;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .contact-section a:hover {
            color: #00a8ff;
            text-decoration: underline;
        }

        .roman-numeral {
            color: #006d00;
            font-weight: bold;
        }

        .last-updated {
            font-size: 0.9rem;
            color: #555;
            text-align: left;
            margin-top: 1rem;
            margin-bottom: 1rem;
        }

        @media (max-width: 768px) {
            .container {
                margin: 1rem;
                padding: 2rem;
            }

            h1 {
                font-size: 2rem;
            }

            h2 {
                font-size: 1.5rem;
            }

            .header-content {
                padding: 1rem;
            }

            .logo {
                font-size: 1.2rem;
            }

            .back-link {
                padding: 0.5rem 1rem;
                font-size: 0.9rem;
            }
        }