.copyright-hero {
    background: linear-gradient(135deg, #0F2BC9 0%, #667eea 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.copyright-hero h1 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 700;
}

.copyright-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    color: #fff;
}

.copyright-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

.last-updated {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #667eea;
}

/* Summary Card */
.summary-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.summary-item h4 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.summary-item.allowed {
    border-left: 4px solid #28a745;
    padding-left: 20px;
}

.summary-item.prohibited {
    border-left: 4px solid #dc3545;
    padding-left: 20px;
}

.summary-item.allowed h4 {
    color: #28a745;
}

.summary-item.prohibited h4 {
    color: #dc3545;
}

.summary-item ul {
    list-style: none;
    padding: 0;
}

.summary-item li {
    padding: 5px 0;
    position: relative;
    padding-left: 25px;
    font-size: 1rem;
}

.summary-item.allowed li:before {
    content: "✓";
    color: #28a745;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.summary-item.prohibited li:before {
    content: "✗";
    color: #dc3545;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Copyright Notice */
.copyright-notice {
    margin-bottom: 40px;
}

.notice-box {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 25px;
    margin-top: 15px;
}

.notice-box p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.notice-box p:last-child {
    margin-bottom: 0;
}

/* Protected Section */
.protected-section {
    margin-bottom: 40px;
}

.protected-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.protected-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    text-align: center;
    transition: transform 0.2s ease;
}

.protected-item:hover {
    transform: translateY(-5px);
}

.protected-item i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 15px;
}

.protected-item h4 {
    margin-bottom: 10px;
    color: #2d3748;
    font-size: 1.3rem;
}

.protected-item p {
    color: #718096;
    line-height: 1.6;
    font-size: 1rem;
}

/* Lists */
.allowed-list,
.prohibited-list {
    list-style: none;
    padding: 0;
}

.allowed-list li,
.prohibited-list li {
    padding: 10px 0;
    padding-left: 35px;
    position: relative;
    font-size: 1rem;
    border-bottom: 1px solid #f1f3f4;
}

.allowed-list li:last-child,
.prohibited-list li:last-child {
    border-bottom: none;
}

.allowed-list li i {
    color: #28a745;
    position: absolute;
    left: 0;
    top: 12px;
}

.prohibited-list li i {
    color: #dc3545;
    position: absolute;
    left: 0;
    top: 12px;
}

/* Tool Categories */
.tool-category {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #667eea;
}

.tool-category h4 {
    margin-bottom: 10px;
    color: #2d3748;
    font-size: 1.3rem;
}

.tool-category p {
    font-size: 1rem;
}

/* Enforcement Section */
.enforcement-section {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dmca-info,
.report-infringement {
    margin-bottom: 30px;
}

.report-infringement ul {
    padding-left: 20px;
}

.report-infringement li {
    margin-bottom: 8px;
    line-height: 1.5;
    font-size: 1rem;
}

/* Fair Use & International */
.fair-use,
.international-protection,
.updates-section,
.contact-section {
    margin-bottom: 40px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
}

.fair-use h2,
.international-protection h2,
.updates-section h2,
.contact-section h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.contact-methods {
    margin-top: 15px;
}

.contact-methods p {
    margin-bottom: 10px;
    font-size: 1rem;
}

.contact-methods i {
    color: #667eea;
    margin-right: 10px;
}

/* ===== COMPREHENSIVE MEDIA QUERIES ===== */

/* 991px - Tablets Landscape */
@media (max-width: 991px) {
    .copyright-hero h1 {
        font-size: 2.4rem;
    }

    .copyright-hero p {
        font-size: 1.1rem;
    }

    .copyright-content {
        padding: 50px 20px;
    }

    .summary-card {
        padding: 25px;
    }

    .summary-item h4 {
        font-size: 1.2rem;
    }

    .protected-item h4 {
        font-size: 1.2rem;
    }

    .tool-category h4 {
        font-size: 1.2rem;
    }

    .fair-use h2,
    .international-protection h2,
    .updates-section h2,
    .contact-section h2 {
        font-size: 1.6rem;
    }

    .copyright-content {
        max-width: 900px;
    }
}

/* 768px - Tablets Portrait */
@media (max-width: 768px) {
    .copyright-hero {
        padding: 70px 0 50px;
    }

    .copyright-hero h1 {
        font-size: 2.1rem;
    }

    .copyright-hero p {
        font-size: 1.05rem;
    }

    .copyright-content {
        padding: 40px 15px;
    }

    .summary-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .protected-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .summary-card {
        padding: 20px;
        margin-bottom: 30px;
    }

    .protected-item {
        padding: 20px;
    }

    .protected-item i {
        font-size: 2.2rem;
    }

    .enforcement-section,
    .fair-use,
    .international-protection,
    .updates-section,
    .contact-section {
        padding: 20px;
        margin: 30px 0;
    }

    .notice-box {
        padding: 20px;
    }

    .notice-box p {
        font-size: 1rem;
    }

    .copyright-content {
        max-width: 700px;
    }
}

/* 617px - Large Phones */
@media (max-width: 617px) {
    .copyright-hero {
        padding: 60px 0 40px;
    }

    .copyright-hero h1 {
        font-size: 1.9rem;
    }

    .copyright-hero p {
        font-size: 1rem;
    }

    .copyright-content {
        padding: 35px 12px;
    }

    .last-updated {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .summary-card {
        padding: 18px;
        margin-bottom: 25px;
    }

    .summary-item h4 {
        font-size: 1.15rem;
    }

    .summary-item li {
        font-size: 0.95rem;
        padding-left: 22px;
    }

    .protected-item {
        padding: 18px 15px;
    }

    .protected-item h4 {
        font-size: 1.15rem;
    }

    .protected-item p {
        font-size: 0.95rem;
    }

    .protected-item i {
        font-size: 2rem;
    }

    .allowed-list li,
    .prohibited-list li {
        font-size: 0.95rem;
        padding-left: 30px;
    }

    .tool-category {
        padding: 18px;
    }

    .tool-category h4 {
        font-size: 1.15rem;
    }

    .tool-category p {
        font-size: 0.95rem;
    }

    .fair-use h2,
    .international-protection h2,
    .updates-section h2,
    .contact-section h2 {
        font-size: 1.4rem;
    }

    .contact-methods p {
        font-size: 0.95rem;
    }

    .copyright-content {
        max-width: 550px;
    }
}

/* 450px - Medium Phones */
@media (max-width: 450px) {
    .copyright-hero {
        padding: 50px 0 35px;
    }

    .copyright-hero h1 {
        font-size: 1.7rem;
    }

    .copyright-hero p {
        font-size: 0.95rem;
    }

    .copyright-content {
        padding: 30px 10px;
    }

    .last-updated {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .summary-card {
        padding: 15px;
        margin-bottom: 20px;
    }

    .summary-item h4 {
        font-size: 1.1rem;
    }

    .summary-item li {
        font-size: 0.9rem;
        padding-left: 20px;
    }

    .summary-grid {
        gap: 20px;
    }

    .protected-grid {
        gap: 15px;
    }

    .protected-item {
        padding: 15px 12px;
    }

    .protected-item h4 {
        font-size: 1.1rem;
    }

    .protected-item p {
        font-size: 0.9rem;
    }

    .protected-item i {
        font-size: 1.8rem;
    }

    .allowed-list li,
    .prohibited-list li {
        font-size: 0.9rem;
        padding-left: 28px;
    }

    .tool-category {
        padding: 15px;
    }

    .tool-category h4 {
        font-size: 1.1rem;
    }

    .tool-category p {
        font-size: 0.9rem;
    }

    .enforcement-section,
    .fair-use,
    .international-protection,
    .updates-section,
    .contact-section {
        padding: 18px 15px;
        margin: 25px 0;
    }

    .fair-use h2,
    .international-protection h2,
    .updates-section h2,
    .contact-section h2 {
        font-size: 1.3rem;
    }

    .notice-box {
        padding: 18px;
    }

    .notice-box p {
        font-size: 0.95rem;
    }

    .copyright-content {
        max-width: 400px;
    }
}

/* 365px - Small Phones */
@media (max-width: 365px) {
    .copyright-hero {
        padding: 40px 0 30px;
    }

    .copyright-hero h1 {
        font-size: 1.5rem;
    }

    .copyright-hero p {
        font-size: 0.9rem;
    }

    .copyright-content {
        padding: 25px 8px;
    }

    .last-updated {
        padding: 8px 10px;
        font-size: 0.85rem;
    }

    .summary-card {
        padding: 12px;
        margin-bottom: 15px;
    }

    .summary-item h4 {
        font-size: 1rem;
    }

    .summary-item li {
        font-size: 0.85rem;
        padding-left: 18px;
    }

    .protected-item {
        padding: 12px 10px;
    }

    .protected-item h4 {
        font-size: 1rem;
    }

    .protected-item p {
        font-size: 0.85rem;
    }

    .protected-item i {
        font-size: 1.6rem;
    }

    .allowed-list li,
    .prohibited-list li {
        font-size: 0.85rem;
        padding-left: 25px;
    }

    .tool-category {
        padding: 12px;
    }

    .tool-category h4 {
        font-size: 1rem;
    }

    .tool-category p {
        font-size: 0.85rem;
    }

    .enforcement-section,
    .fair-use,
    .international-protection,
    .updates-section,
    .contact-section {
        padding: 15px 12px;
        margin: 20px 0;
    }

    .fair-use h2,
    .international-protection h2,
    .updates-section h2,
    .contact-section h2 {
        font-size: 1.2rem;
    }

    .contact-methods p {
        font-size: 0.85rem;
    }

    .notice-box {
        padding: 15px;
    }

    .notice-box p {
        font-size: 0.9rem;
    }

    .copyright-content {
        max-width: 320px;
    }
}