.container {
            max-width: 900px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .header {
            background: #ffffff;
            border: 2px solid #e2e8f0;
            border-radius: 20px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            text-align: center;
        }
        
        .header h1 {
            color: #d22325;
            font-size: 2.5em;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .header .domain {
            font-size: 1.2em;
            color: #718096;
            font-weight: 500;
        }
        
        .content {
            background: #ffffff;
            border: 2px solid #e2e8f0;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        }
        
        .last-updated {
            background: #d22325;
            color: white;
            padding: 15px 25px;
            border-radius: 50px;
            display: inline-block;
            margin-bottom: 30px;
            font-weight: 600;
            box-shadow: 0 10px 20px rgba(210, 35, 37, 0.3);
        }
        
        .section {
            margin-bottom: 35px;
            padding-bottom: 25px;
            border-bottom: 2px solid #e2e8f0;
        }
        
        .section:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .section h2 {
            color: #2d3748;
            font-size: 1.5em;
            margin-bottom: 15px;
            font-weight: 600;
            position: relative;
            padding-left: 20px;
        }
        
        .section h2:before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 20px;
            background: #d22325;
            border-radius: 2px;
        }
        
        .section h3 {
            color: #4a5568;
            font-size: 1.2em;
            margin: 20px 0 10px 0;
            font-weight: 600;
        }
        
        .section p {
            margin-bottom: 15px;
            text-align: justify;
            color: #4a5568;
        }
        
        .section ul {
            margin: 15px 0;
            padding-left: 30px;
        }
        
        .section li {
            margin-bottom: 8px;
            color: #4a5568;
        }
        
        .highlight {
            background: rgba(210, 35, 37, 0.05);
            padding: 20px;
            border-radius: 15px;
            border-left: 4px solid #d22325;
            margin: 20px 0;
        }
        
        .contact-info {
            background: #d22325;
            color: white;
            padding: 25px;
            border-radius: 15px;
            margin-top: 30px;
        }
        
        .contact-info h3 {
            color: white;
            margin-bottom: 15px;
        }
        
        .contact-info p {
            color: rgba(255, 255, 255, 0.9);
        }
        
        .contact-info a {
            color: #ffd700;
            text-decoration: none;
            font-weight: 600;
        }
        
        .contact-info a:hover {
            text-decoration: underline;
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 15px;
            }
            
            .header, .content {
                padding: 20px;
            }
            
            .header h1 {
                font-size: 2em;
            }
        }