.body{
    height: 100%;
    width: 75%;
    position: relative;
    left: 24%;
    top: 85px;
  
}

 /* ========================================
        CSS STYLES FOR DMCA POLICY CONTENT
        ========================================
        */
        
        /* --- Base Styling --- */
        #dmca-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 40px 20px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
        }

        #dmca-content h1 {
            font-size: 2.2rem;
            color: #d9534f; /* Red color often used for legal notices */
            margin-bottom: 5px;
            text-align: center;
            margin-bottom: 40px;
        }

        #dmca-content .policy-intro {
            text-align: center;
            font-size: 1.1em;
            color: #555;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 1px solid #ddd;
        }

        /* --- Section Headings --- */
        #dmca-content h2 {
            font-size: 1.2rem;
            color: #333;
            margin-top: 35px;
            margin-bottom: 15px;
            padding-bottom: 5px;
            border-bottom: 2px solid #0056b3; /* Primary Blue accent */
        }
        
        #dmca-content h3 {
            font-size: 1.2em;
            color: #0056b3;
            margin-top: 25px;
            margin-bottom: 10px;
        }

        /* --- Lists and Steps --- */
        #dmca-content p, 
        #dmca-content ul, 
        #dmca-content ol {
            margin-bottom: 15px;
            font-size: 1em;
        }

        #dmca-content ol {
            list-style: decimal;
            padding-left: 30px;
        }
        
        #dmca-content li {
            margin-bottom: 10px;
        }
        
        #dmca-content strong {
            color: #333;
        }

        /* --- Designated Agent Contact Block --- */
        .agent-contact {
            padding: 25px;
            margin: 30px 0;
            border-radius: 8px;
            background-color: #f8f8f8;
            border: 1px solid #eee;
        }
        
        .agent-contact p {
            line-height: 1.5;
        }

        /* --- Important Legal Warning --- */
        .legal-warning {
            padding: 15px;
            border: 1px solid #d9534f;
            background-color: #f2dede;
            color: #a94442;
            border-radius: 4px;
            margin-top: 20px;
        }
        

@media (max-width: 900px) {

    .body{
    height: 100%;
    width: 90%;
    position: relative;
    left: 5%;
    top: 55px;

    }
    #dmca-content {
                padding: 20px 10px;
            }
            #dmca-content h1 {
                font-size: 2rem;
            }
            #dmca-content ol {
                padding-left: 20px;
            }
}

@media (min-width: 766px) and (max-width: 1024px) {
    .body{
    height: 100%;
    width: 90%;
    position: relative;
    left: 5%;
    top: 55px;
  
}
#dmca-content {
                padding: 20px 10px;
            }
            #dmca-content h1 {
                font-size: 1.8em;
            }
            #dmca-content ol {
                padding-left: 20px;
            }
}