
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #e63946; /* Red background matching the image */
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
            color: white;
        }
        
        .notice-container {
            max-width: 800px;
            width: 100%;
            text-align: center;
            padding: 40px 20px;
            background-color: rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }
        
        .notice-label {
            font-size: 1.8rem;
            font-weight: bold;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }
        
        .notice-title {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 30px;
            line-height: 1.2;
        }
        
        .notice-message {
            font-size: 1.2rem;
            line-height: 1.6;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .button-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
        }
        
        .tblood-button {
            background-color: #ffd60a; /* Yellow button */
            color: #000000; /* Black text */
            border: none;
            padding: 15px 40px;
            font-size: 1.5rem;
            font-weight: bold;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            text-decoration: none;
            display: inline-block;
        }
        
        .tblood-button:hover {
            background-color: #ffc300;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
        }
        
        .tblood-button:active {
            transform: translateY(0);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }
        
        /* Footer styles */
        .footer {
            margin-top: 40px;
            width: 100%;
            max-width: 800px;
            text-align: center;
        }
        
        .social-icons {
            margin-bottom: 20px;
        }
        
        .social-icon {
            display: inline-block;
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            margin: 0 10px;
            color: white;
            font-size: 18px;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .social-icon:hover {
            background-color: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
        }
        
        .legal-links {
            font-size: 0.9rem;
        }
        
        .legal-links a {
            color: white;
            text-decoration: none;
            margin: 0 10px;
            transition: all 0.3s ease;
        }
        
        .legal-links a:hover {
            text-decoration: underline;
        }
        
        @media (max-width: 768px) {
            .notice-title {
                font-size: 2rem;
            }
            
            .notice-label {
                font-size: 1.5rem;
            }
            
            .notice-message {
                font-size: 1.1rem;
            }
            
            .tblood-button {
                font-size: 1.3rem;
                padding: 12px 30px;
            }
        }
        
        @media (max-width: 480px) {
            .notice-title {
                font-size: 1.8rem;
            }
            
            .notice-label {
                font-size: 1.3rem;
            }
            
            .notice-message {
                font-size: 1rem;
            }
            
            .tblood-button {
                font-size: 1.2rem;
                padding: 10px 25px;
            }
            
            .social-icon {
                width: 35px;
                height: 35px;
                line-height: 35px;
                font-size: 16px;
                margin: 0 5px;
            }
            
            .legal-links {
                font-size: 0.8rem;
            }
            
            .legal-links a {
                display: block;
                margin: 5px 0;
            }
        }
