    @media print {
        .no-print {
            display: none !important;
        }

        .agb-container {
            border: none !important;
            box-shadow: none !important;
            padding: 0 !important;
            height: auto !important;
            overflow: visible !important;
        }

        nav, footer, .action-buttons {
            display: none !important;
        }
    }

    /* AGB Container */
    .agb-page {
        background: #f8f9fa;
        padding: 3rem 5%;
        min-height: 100vh;
    }

    .agb-header {
        text-align: center;
        margin-bottom: 3rem;
        padding: 3rem 2rem;
        background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
        border-radius: 20px;
        position: relative;
        overflow: hidden;
    }

    .agb-header::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 70%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        animation: rotate 20s linear infinite;
    }

    @keyframes rotate {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    .agb-header-content {
        position: relative;
        z-index: 1;
    }

    .agb-header h1 {
        font-size: 2.5rem;
        font-weight: 800;
        color: #1a1a1a;
        margin-bottom: 0.5rem;
    }

    .agb-header p {
        font-size: 1.1rem;
        color: #2d2d2d;
    }

    .agb-header .last-updated {
        font-size: 0.9rem;
        color: #555;
        margin-top: 1rem;
        font-weight: 600;
    }

    /* Content Container */
    .agb-container {
        max-width: 900px;
        margin: 0 auto;
        background: white;
        border: 2px solid #fef3c7;
        border-radius: 20px;
        padding: 3rem;
        box-shadow: 0 4px 20px rgba(251, 191, 36, 0.1);
    }

    .agb-scroll {
        max-height: 70vh;
        overflow-y: auto;
        padding-right: 1rem;
    }

    /* Custom Scrollbar */
    .agb-scroll::-webkit-scrollbar {
        width: 8px;
    }

    .agb-scroll::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .agb-scroll::-webkit-scrollbar-thumb {
        background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
        border-radius: 10px;
    }

    .agb-scroll::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    }

    /* Typography */
    .agb-content h5 {
        font-size: 1.4rem;
        font-weight: 700;
        color: #1a1a1a;
        margin-top: 2.5rem;
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
        border-bottom: 3px solid #fbbf24;
        position: relative;
    }

    .agb-content h5::before {
        content: '§';
        position: absolute;
        left: -2rem;
        color: #fbbf24;
        font-size: 1.8rem;
        font-weight: 800;
    }

    .agb-content h5:first-child {
        margin-top: 0;
    }

    .agb-content p {
        font-size: 1rem;
        line-height: 1.8;
        color: #555;
        margin-bottom: 1rem;
        text-align: justify;
    }

    .agb-content p strong {
        color: #1a1a1a;
        font-weight: 600;
    }

    /* Company Info Box */
    .company-info {
        background: linear-gradient(to bottom, #fffbeb 0%, #ffffff 100%);
        border: 2px solid #fef3c7;
        border-radius: 12px;
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .company-info p {
        margin-bottom: 0.3rem;
        font-weight: 600;
        color: #1a1a1a;
    }

    /* Action Buttons */
    .action-buttons {
        max-width: 900px;
        margin: 2rem auto;
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 0 0rem;
    }

    .btn-custom {
        padding: 1rem 2rem;
        border-radius: 50px;
        font-weight: 700;
        font-size: 1rem;
        border: none;
        cursor: pointer;
        transition: all 0.3s;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        text-decoration: none;
    }

    .btn-print {
        background: white;
        border: 2px solid #e5e7eb;
        color: #1a1a1a;
    }

    .btn-print:hover {
        border-color: #fbbf24;
        background: #fffbeb;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(251, 191, 36, 0.2);
    }

    .btn-download {
        background: white;
        border: 2px solid #e5e7eb;
        color: #1a1a1a;
    }

    .btn-download:hover {
        border-color: #fbbf24;
        background: #fffbeb;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(251, 191, 36, 0.2);
    }

    .btn-accept {
        background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
        color: #1a1a1a;
        flex: 1;
        justify-content: center;
    }

    .btn-accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
    }

    .btn-accept:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

    /* Acceptance Checkbox */
    .acceptance-box {
        max-width: 900px;
        margin: 2rem auto;
        background: linear-gradient(to bottom, #fffbeb 0%, #ffffff 100%);
        border: 2px solid #fef3c7;
        border-radius: 12px;
        padding: 1.5rem;
    }

    .acceptance-checkbox {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .acceptance-checkbox input[type="checkbox"] {
        width: 24px;
        height: 24px;
        cursor: pointer;
        accent-color: #fbbf24;
    }

    .acceptance-checkbox label {
        font-size: 1rem;
        color: #1a1a1a;
        cursor: pointer;
        font-weight: 600;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .agb-header h1 {
            font-size: 1.8rem;
        }

        .agb-container {
            padding: 2rem 1.5rem;
        }

        .agb-content h5 {
            font-size: 1.2rem;
        }

        .agb-content h5::before {
            display: none;
        }

        .action-buttons {
            flex-direction: column;
        }

        .btn-custom {
            width: 100%;
            justify-content: center;
        }
    }