  body {
            margin: 0;
            background: #f1f1f1;
            font-family: "Manrope", Arial, sans-serif;
            line-height: 1.6;
            color: #333;
        }
        
     .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 30px 20px;
            background: white;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }
        
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px solid #ff8000;
        }
        
        .logo {
            height: 50px;
        }
        
        .back-link {
            color: #ff8000;
            text-decoration: none;
            font-weight: bold;
        }
        
        .back-link:hover {
            text-decoration: underline;
        }

          h1 {
            color: #000;
            font-size: 28px;
            margin: 0 0 25px 0;
            padding-bottom: 10px;
            border-bottom: 2px solid #ff8000;
        }
        
        h2 {
            color: #000;
            font-size: 22px;
            margin: 35px 0 15px 0;
            padding-left: 10px;
            border-left: 3px solid #ff8000;
        }
        
        p {
            margin-bottom: 15px;
            text-align: justify;
        }
        
        ul {
            margin: 15px 0;
            padding-left: 20px;
        }
        
        li {
            margin-bottom: 8px;
        }
        
        a {
            color: #ff8000;
            text-decoration: none;
        }
        
        a:hover {
            text-decoration: underline;
        }
        
        .highlight {
            color: #ff8000;
            font-weight: bold;
        }

          .section-break {
            height: 1px;
            background: #eee;
            margin: 25px 0;
        }
        
        .footer {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #ddd;
            text-align: center;
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 20px 15px;
            }
            
            .header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            h1 {
                font-size: 24px;
            }
            
            h2 {
                font-size: 20px;
            }
        }